From 67206ee2e245c1d5cefba258077d0c15c7022f31 Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Fri, 24 Nov 2023 10:32:01 -0300 Subject: [PATCH] Update run.sh --- run.sh | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/run.sh b/run.sh index 22d5e23..84c176f 100755 --- a/run.sh +++ b/run.sh @@ -11,8 +11,9 @@ enable_ssl= api_replicas= fluentd=false seed_db=false +uninstall=false -while getopts "idfhp:s:r:" arg; do +while getopts "idufhp:s:r:" arg; do case $arg in i) interactive=true ;; p) postgres_version=${OPTARG} ;; @@ -20,6 +21,7 @@ while getopts "idfhp:s:r:" arg; do r) api_replicas=${OPTARG} ;; f) fluentd=true ;; d) seed_db=true ;; + u) uninstall=true ;; *) usage ;; esac done @@ -82,6 +84,11 @@ $START_MINIKUBE && minikube addons enable ingress helm dependency list helm | grep -q "missing" && helm dependency build helm +if [ "$uninstall" == true ]; then + helm uninstall exam -n exam + exit 0 +fi + VALUES=("-f" "helm/values.yaml") if [ "$fluentd" == true ] || [ "$fluentd" == "y" ] || [ "$fluentd" == "Y" ]; then