Skip to content

Commit

Permalink
Docs: update Loki Helm Chart document to support Helm 3 (#2038)
Browse files Browse the repository at this point in the history
* update Loki Helm Chart document to support Helm 3

* update Loki Helm Chart document to support Helm 2 & 3
  • Loading branch information
oke-py authored May 8, 2020
1 parent 83873d1 commit 918ba41
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions production/helm/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,15 +67,19 @@ $ 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 <YOUR-NAMESPACE>

# with Helm 3
$ helm install loki-grafana stable/grafana -n <YOUR-NAMESPACE>
```

> The chart loki-stack contains a pre-configured Grafana, simply use `--set grafana.enabled=true`
To get the admin password for the Grafana pod, run the following command:

```bash
$ kubectl get secret --namespace <YOUR-NAMESPACE> loki-grafana -o jsonpath="{.data.admin-password}" | base64 --decode ; echo
$ kubectl get secret --namespace <YOUR-NAMESPACE> loki-grafana -o jsonpath="{.data.admin-password}" | base64 --decode ; echo
```

To access the Grafana UI, run the following command:
Expand Down

0 comments on commit 918ba41

Please sign in to comment.