Xueshan Feng 3386cd735d Use kind: ReplicationController to manage pods.
Added start.sh and destroy.sh.
2016-04-08 10:47:43 -07:00

9 lines
125 B
Bash
Executable File

#!/bin/bash
#
# Assuming you have a kubernetes cluser and kubectl installed
#
for i in *.yml
do
kubectl delete -f $i
done