docs icon indicating copy to clipboard operation
docs copied to clipboard

Deploying Prometheus Operator and Grafana on LKE (Linode Kubernetes Engine)

Open Rajakavitha1 opened this issue 1 year ago • 0 comments

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>

Rajakavitha1 avatar Mar 27 '23 01:03 Rajakavitha1