forked from github/multus-cni
11 lines
213 B
Bash
11 lines
213 B
Bash
![]() |
#!/bin/sh
|
||
|
set -o errexit
|
||
|
|
||
|
export PATH=${PATH}:./bin
|
||
|
|
||
|
kubectl create -f simple-pod.yml
|
||
|
kubectl wait --for=condition=ready -l app=simple --timeout=300s pod
|
||
|
|
||
|
echo "cleanup resources"
|
||
|
kubectl delete -f simple-pod.yml
|