mirror of
https://github.com/fluxcd/flagger.git
synced 2026-04-15 06:57:34 +00:00
- run both Deployment and DaemonSet tests on the same Kubernetes Kind cluster - add cleanup script that deletes the test namespace before running the DaemonSet tests - set Kubernetes version to 1.17.2
7 lines
136 B
Bash
Executable File
7 lines
136 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -o errexit
|
|
|
|
echo '>>> Delete test namespace'
|
|
kubectl delete namespace test --ignore-not-found=true --wait=true
|