docs
docs copied to clipboard
Deploying Prometheus Operator and Grafana on LKE (Linode Kubernetes Engine)
Based on comment sin DisQus:
the commands does not work...
<code>
$ helm repo add stable https://charts.helm.sh/stable
$ helm install ke-monitor <b>stable/kube-prometheus-stack</b> -f ~/lke-monitor/values.yaml --namespace monitoring --set grafana.adminPassword=$GRAFANA_ADMINPASSWORD --set prometheusOperator.createCustomResource=false --repo https://prometheus-community.github.io/helm-charts
<b>Error: chart "stable/kube-prometheus-stack" not found in https://prometheus-community.github.io/helm-charts repository</b></code>
instead use:
<code>helm repo add prometheus-community https://prometheus-community.github.io/helm-charts
helm repo update
helm install lke-monitor <b>prometheus-community/kube-prometheus-stack</b> -f ~/lke-monitor/values.yml --namespace monitoring --set grafana.adminPassword=$GRAFANA_ADMINPASSWORD --set prometheusOperator.createCustomResource=false</code>