mirror of
https://github.com/fluxcd/flagger.git
synced 2026-02-24 06:44:24 +00:00
Prevents the canary from getting triggered, when a canary deploy is updated to match the primary deploy after an analysis fails. Signed-off-by: Sanskar Jaiswal <sanskar.jaiswal@weave.works>
14 lines
256 B
Bash
Executable File
14 lines
256 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
|
|
"$DIR"/test-canary.sh
|
|
"$REPO_ROOT"/test/workloads/init.sh
|
|
"$DIR"/test-lifecycle.sh
|