You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

17 lines
525 B

#!/bin/bash
if [ "$1" = "i" ]
then
kubectl apply -f ./preparaMiweb/pv-local-miweb.yaml
#kubectl apply -f ./preparaMiweb/pv-local-miweb-certbot.yaml
#kubectl apply -f ./preparaMiweb/pv-local-miweb-conf.yaml
helm install miweb miweb-chart/
elif [ "$1" = "u" ]
then
helm uninstall miweb
kubectl delete -f ./preparaMiweb/pv-local-miweb.yaml
#kubectl delete -f ./preparaMiweb/pv-local-miweb-certbot.yaml
#kubectl delete -f ./preparaMiweb/pv-local-miweb-conf.yaml
else
echo "Falta comando: i=instalar, u=desinstalar"
fi