12 lines
233 B
Bash
Executable File
12 lines
233 B
Bash
Executable File
#!/bin/bash
|
|
|
|
kubectl delete -f service.yaml
|
|
kubectl delete -f deployment.yaml
|
|
|
|
kubectl delete -f statefulset.yaml
|
|
kubectl delete -f persistentvolume.yaml
|
|
|
|
kubectl delete -f namespace.yaml
|
|
|
|
echo "Application removed from Kubernetes!"
|