13 lines
329 B
Markdown
13 lines
329 B
Markdown
#clonen git-repo met helm chart
|
|
git clone https://git.zabbix.com/scm/zt/kubernetes-helm.git
|
|
|
|
#values extraheren
|
|
microk8s helm show values kubernetes-helm/ > values.yaml
|
|
|
|
#values aanpassen naar wensen
|
|
|
|
|
|
#installeren in cluster
|
|
microk8s kubectl create ns monitoring
|
|
helm install zabbix kubernetes-helm -f values.yaml -n monitoring
|