Last active
March 3, 2020 15:23
-
-
Save just1689/082d207af940924c4d0acd0dabdd99a4 to your computer and use it in GitHub Desktop.
loki
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Install the repo | |
helm repo add loki https://grafana.github.io/loki/charts | |
helm repo update | |
# Install Loki | |
helm install loki/loki-stack -n loki-stack --set fluent-bit.enabled=true,promtail.enabled=true,loki.persistence.enabled=true,loki.persistence.size=1Gi --namespace=loki-stack --generate-name | |
# Install the repo | |
helm repo add stable https://kubernetes-charts.storage.googleapis.com | |
helm repo update | |
# Install Grafana | |
helm install stable/grafana -n loki-grafana --set persistence.enabled=true,persistence.type=pvc,persistence.size=1Gi --namespace=loki-stack --generate-name |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment