mirror of
https://github.com/fluxcd/flagger.git
synced 2026-04-15 06:57:34 +00:00
Skipper Ingress Controller support is added with https://github.com/weaveworks/flagger/pull/670. This commit add the documentation and links to mention Skipper is now an available option. Currently only Canary deployments are supported.
19 lines
681 B
Bash
Executable File
19 lines
681 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# This script is intended for local workstation development convenience.
|
|
# It will run the e2e tests for Skipper and leave a working setup to play with
|
|
|
|
REPO_ROOT=$(git rev-parse --show-toplevel)
|
|
cd $REPO_ROOT
|
|
|
|
make test
|
|
make build
|
|
docker tag weaveworks/flagger:latest test/flagger:latest
|
|
make loadtester-build
|
|
(kind get clusters && kubectl delete ns/test --force) || kind create cluster --wait 5m --image kindest/node:v1.16.9
|
|
./test/e2e-skipper.sh
|
|
# port forward prometheus UI to localhost:9090
|
|
kubectl port-forward $(kubectl get pods -l=app=flagger-prometheus -o name -n flagger-system | head -n 1) 9090:9090 -n flagger-system &
|
|
|
|
./test/e2e-skipper-tests.sh
|