zkt25/z2/remove-app.sh
2025-04-09 10:56:01 +02:00

15 lines
448 B
Bash

#!/bin/bash
echo "Deleting Services for MySQL, backend, and frontend"
kubectl delete -f service.yaml -n battleship-app
echo "Deleting StatefulSet for MySQL"
kubectl delete -f statefulset.yaml -n battleship-app
echo "Deleting Deployments for backend and frontend"
kubectl delete -f deployment.yaml -n battleship-app
echo "Deleting namespace battleship-app"
kubectl delete -f namespace.yaml
echo "Application completely removed from Kubernetes."