K8s-training: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
Tag: Undo |
||
Line 1: | Line 1: | ||
<syntaxhighlight lang="bash"> | |||
#==TRAINING K8S/HELM== | |||
#URL https://appName.domainCluster | #URL https://appName.domainCluster | ||
Line 8: | Line 10: | ||
export nameSpace=infra-$USER | export nameSpace=infra-$USER | ||
mkdir -p ~/old | mkdir -p ~/old | ||
export | export localPassword=${appName} | ||
hostName=${appName}.${domainCluster} | hostName=${appName}.${domainCluster} | ||
helm repo add bitnami https://charts.bitnami.com/bitnami | helm repo add bitnami https://charts.bitnami.com/bitnami | ||
echo "== | echo "== GITOPS ==" | ||
clear | clear | ||
helm template ${appName} bitnami/mediawiki | helm template ${appName} bitnami/mediawiki | ||
--namespace ${nameSpace} --create-namespace \ | --namespace ${nameSpace} --create-namespace \ | ||
--set ingress.enabled=true,ingress.hostname=${hostName} \ | --set ingress.enabled=true,ingress.hostname=${hostName} \ | ||
--set mediawikiHost=${hostName},mediawikiPassword=${ | --set mediawikiHost=${hostName},mediawikiPassword=${localPassword} \ | ||
--set mariadb.auth.rootPassword=${ | --set mariadb.auth.rootPassword=${localPassword},mariadb.auth.password=${localPassword} |tee ~/old/infra-$USER-${appName} | ||
echo "== DEPLOY ==" | echo "== DEPLOY ==" | ||
Line 31: | Line 33: | ||
echo "== DELETE REMAINING DB ==" | echo "== DELETE REMAINING DB ==" | ||
kubectl delete pvc/data-infra-$USER-mariadb-0 -n infra-$USER | kubectl delete pvc/data-infra-$USER-mariadb-0 -n infra-$USER | ||
</syntaxhighlight> |
Revision as of 12:28, 15 February 2023
#==TRAINING K8S/HELM==
#URL https://appName.domainCluster
echo "== YOURS VARS =="
export appName=wiki
export domainCluster=c2.mi.infocepo.com
echo "== INIT ENV =="
export nameSpace=infra-$USER
mkdir -p ~/old
export localPassword=${appName}
hostName=${appName}.${domainCluster}
helm repo add bitnami https://charts.bitnami.com/bitnami
echo "== GITOPS =="
clear
helm template ${appName} bitnami/mediawiki
--namespace ${nameSpace} --create-namespace \
--set ingress.enabled=true,ingress.hostname=${hostName} \
--set mediawikiHost=${hostName},mediawikiPassword=${localPassword} \
--set mariadb.auth.rootPassword=${localPassword},mariadb.auth.password=${localPassword} |tee ~/old/infra-$USER-${appName}
echo "== DEPLOY =="
kubectl apply -f ~/old/infra-$USER-${appName}
echo "== YOURS URL =="
echo https://${hostName}
echo "== DELETE =="
kubectl delete -f ~/old/infra-$USER-${appName}
echo "== DELETE REMAINING DB =="
kubectl delete pvc/data-infra-$USER-mariadb-0 -n infra-$USER