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
497 B

#!/bin/bash
if [ "$1" = "i" ]
then
kubectl apply -f ./preparaCitas/citas-namespace.yaml
kubectl apply -f ./preparaCitas/pv-local-mysql.yaml
kubectl apply -f ./preparaCitas/pv-local-citas.yaml
helm install wpcitas wpcitas/
elif [ "$1" = "u" ]
then
helm uninstall wpcitas
kubectl delete -f ./preparaCitas/citas-namespace.yaml
kubectl delete -f ./preparaCitas/pv-local-mysql.yaml
kubectl delete -f ./preparaCitas/pv-local-citas.yaml
else
echo "Falta comando: i=instalar, u=desinstalar"
fi