
Kubernetes no longer uses 'kubecfg', but rather 'kubectl'. Therefore, the way that pods and services are being created needs to be changed. In order to create a pod, the parameter 'kind' needs to be set to 'pod' in the yaml file and the api version specified. The stop script now reads from k8s/{pod,service,replication}/ in order to stop all the started pods, services, and replication controllers. Change-Id: Ibd39fa402e9df883df83272c3aefbb69009dfbd2
22 lines
557 B
Bash
Executable File
22 lines
557 B
Bash
Executable File
#!/bin/sh
|
|
|
|
cd $(git rev-parse --show-toplevel)
|
|
|
|
# Delete the replication is not cleaning up its pods
|
|
# These pods need to be deleted according to their UUID
|
|
uuids=$(kubectl get pods -o json | jq '.[][].id' 2>/dev/null | grep -o -E '"[a-fA-F|0-9|\-]*' | cut -c 2- | grep '\-')
|
|
|
|
for uuid in $uuids; do
|
|
if [ $uuid ]; then
|
|
kubectl delete pod $uuid
|
|
fi
|
|
done
|
|
|
|
pods=$(kubectl get pods -o json| jq '.[][].id' 2>/dev/null)
|
|
# Removes quotes from jquery
|
|
pods=${pods//\"/}
|
|
|
|
for pod in $pods; do
|
|
kubectl delete -f "k8s/pod/${pod}-pod.yaml" 2>/dev/null
|
|
done
|