5 lines
233 B
Bash
5 lines
233 B
Bash
#!/bin/bash
|
|
|
|
kubectl delete deployment backend frontend -n todo-app --ignore-not-found=true
|
|
kubectl delete service backend frontend -n todo-app --ignore-not-found=true
|
|
kubectl delete statefulset db -n todo-app --ignore-not-found=true |