Add e2e boilerplate
This commit is contained in:
parent
42b58e957c
commit
16c5800545
9 changed files with 397 additions and 4 deletions
14
hack/e2e-internal/e2e-down.sh
Executable file
14
hack/e2e-internal/e2e-down.sh
Executable file
|
|
@ -0,0 +1,14 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
[[ $DEBUG ]] && set -x
|
||||
|
||||
set -eof pipefail
|
||||
|
||||
# include env
|
||||
. hack/e2e-internal/e2e-env.sh
|
||||
|
||||
echo "Destroying running docker containers..."
|
||||
# do not failt if the container is not running
|
||||
docker rm -f kubelet || true
|
||||
docker rm -f apiserver || true
|
||||
docker rm -f etcd || true
|
||||
Loading…
Add table
Add a link
Reference in a new issue