zkt26/z2/remove-app.sh
Bohdan Kapliuk a40f28696a kapliuk2
2026-04-22 16:09:21 +03:00

10 lines
258 B
Bash

#!/bin/bash
set -e
kubectl delete -f service.yaml --ignore-not-found
kubectl delete -f deployment.yaml --ignore-not-found
kubectl delete -f statefulset.yaml --ignore-not-found
kubectl delete -f namespace.yaml --ignore-not-found
echo "Application removed."