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.
 
 
 
 
 
 

14 lines
461 B

#!/bin/bash
if [ "$1" = "i" ]
then
kubectl apply -f ./preparaNextCloud/nc-namespace.yaml
kubectl apply -f ./preparaNextCloud/pv-local-mysql.yaml
kubectl apply -f ./preparaNextCloud/pv-local-nextcloud.yaml
helm install nextcloud nextcloud-chart/
else
helm uninstall nextcloud
kubectl delete -f ./preparaNextCloud/nc-namespace.yaml
kubectl delete -f ./preparaNextCloud/pv-local-mysql.yaml
kubectl delete -f ./preparaNextCloud/pv-local-nextcloud.yaml
fi