mirror of
https://github.com/fluxcd/flagger.git
synced 2026-02-23 14:24:09 +00:00
14 lines
295 B
Bash
Executable File
14 lines
295 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -o errexit
|
|
|
|
REPO_ROOT=$(git rev-parse --show-toplevel)
|
|
DIR="$(cd "$(dirname "$0")" && pwd)"
|
|
|
|
"$DIR"/install.sh
|
|
|
|
"$REPO_ROOT"/test/workloads/init.sh
|
|
kubectl label namespace test kuma.io/sidecar-injection=enabled
|
|
kubectl delete -n test ds podinfo-ds
|
|
"$DIR"/test-canary.sh
|