zkt25/z2/stop-app.sh
Andrii Pervashov aa03f35ae0 z2 upload
2025-04-10 08:22:24 +02:00

16 lines
305 B
Bash

#!/bin/bash
set -e
echo "Stopping the Kubernetes..."
kubectl delete -f deployment.yaml --ignore-not-found=true
kubectl delete -f service.yaml --ignore-not-found=true
kubectl delete -f statefulset.yaml --ignore-not-found=true
kubectl delete -f namespace.yaml --ignore-not-found=true
echo "Deleted!"