oc-k8s/uninstall.sh

8 lines
165 B
Bash
Raw Normal View History

2024-11-28 11:09:51 +01:00
#!/bin/bash
2025-03-27 13:04:29 +01:00
RELEASE_NAME=${1:-dev}
RELEASE_NAMESPACE=${1:-dev}
2024-11-28 11:09:51 +01:00
helm uninstall ${RELEASE_NAME} -n ${RELEASE_NAMESPACE}
2025-03-31 09:43:43 +02:00
export KUBECONFIG=$(realpath ~/.kube/config)