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

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