zkt26/z2/stop-app.sh
Bohdan Kapliuk 2718263509 message
2026-04-08 12:36:10 +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 stopped."