10 lines
201 B
Bash
10 lines
201 B
Bash
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
echo "Removing Notes App..."
|
|
|
|
kubectl delete namespace notes-app --ignore-not-found
|
|
kubectl delete pv postgres-pv --ignore-not-found
|
|
|
|
echo "All Kubernetes objects removed."
|