mirror of
https://github.com/k8snetworkplumbingwg/multus-cni.git
synced 2026-07-11 00:40:53 +00:00
11 lines
221 B
Bash
Executable File
11 lines
221 B
Bash
Executable File
#!/bin/sh
|
|
set -o errexit
|
|
|
|
export PATH=${PATH}:./bin
|
|
|
|
kubectl create -f yamls/many-pods.yml
|
|
kubectl wait --for=condition=ready -l app=many --timeout=300s pod
|
|
|
|
echo "cleanup resources"
|
|
kubectl delete -f yamls/many-pods.yml
|