diff --git a/production/helm/README.md b/production/helm/README.md index 4dafe9cdcc6a..b35a174b4875 100644 --- a/production/helm/README.md +++ b/production/helm/README.md @@ -67,7 +67,11 @@ $ helm upgrade --install fluent-bit loki/fluent-bit \ To install Grafana on your cluster with helm, use the following command: ```bash -$ helm install stable/grafana -n loki-grafana +# with Helm 2 +$ helm install stable/grafana -n loki-grafana --namespace + +# with Helm 3 +$ helm install loki-grafana stable/grafana -n ``` > The chart loki-stack contains a pre-configured Grafana, simply use `--set grafana.enabled=true` @@ -75,7 +79,7 @@ $ helm install stable/grafana -n loki-grafana To get the admin password for the Grafana pod, run the following command: ```bash -$ kubectl get secret --namespace loki-grafana -o jsonpath="{.data.admin-password}" | base64 --decode ; echo +$ kubectl get secret --namespace loki-grafana -o jsonpath="{.data.admin-password}" | base64 --decode ; echo ``` To access the Grafana UI, run the following command: