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.
 
 
 
 
 
 

12 lines
264 B

#!/bin/bash
if [ "$1" = "i" ]
then
helm install wordpress ./wordpress-chart --namespace=wordpress --create-namespace
elif [ "$1" = "u" ]
then
helm uninstall wordpress
kubectl delete namespace wordpress
else
echo "Falta comando: i=instalar, u=desinstalar"
fi