Files
flagger/test/e2e-kubernetes-cleanup.sh
T
stefanprodan 5cd78bfd40 e2e: Consolidate Kubernetes e2e tests
- 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
2020-03-09 10:10:37 +02:00

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