mirror of
https://github.com/k8snetworkplumbingwg/multus-cni.git
synced 2025-08-20 09:13:44 +00:00
11 lines
225 B
Bash
Executable File
11 lines
225 B
Bash
Executable File
#!/bin/sh
|
|
set -o errexit
|
|
|
|
export PATH=${PATH}:./bin
|
|
|
|
kubectl create -f yamls/simple-pod.yml
|
|
kubectl wait --for=condition=ready -l app=simple --timeout=300s pod
|
|
|
|
echo "cleanup resources"
|
|
kubectl delete -f yamls/simple-pod.yml
|