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.
 
 
 
 
 
 

16 lines
264 B

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