-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix: ensure there's a builld note for ingress Signed-off-by: Kevin Carter <[email protected]> * feat: add loki docs Signed-off-by: Kevin Carter <[email protected]> --------- Signed-off-by: Kevin Carter <[email protected]>
- Loading branch information
Showing
5 changed files
with
54 additions
and
28 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
# Setting up Loki | ||
|
||
## Add the grafana helm repo | ||
|
||
``` shell | ||
helm repo add grafana https://grafana.github.io/helm-charts | ||
helm repo update | ||
``` | ||
|
||
### Install the helm chart | ||
|
||
You will need to make changes depending on how you want to configure loki. Example files are included in this directory choose one relevant to your deploy | ||
|
||
``` shell | ||
helm upgrade --install \ | ||
--values my-loki-helm-overrides.yaml \ | ||
loki grafana/loki \ | ||
--create-namespace \ | ||
--namespace grafana | ||
``` | ||
|
||
!!! example | ||
|
||
If you plan on using **Swift** as a backend for log storage see the `loki-helm-swift-overrides-example.yaml` file in the `helm-configs/loki` directory. | ||
|
||
``` yaml | ||
--8<-- "helm-configs/loki/loki-helm-swift-overrides-example.yaml" | ||
``` | ||
|
||
!!! example | ||
|
||
If you plan on using **S3** as a backend for log storage see the `loki-helm-s3-overrides-example.yaml` file in the `helm-configs/loki` directory. | ||
|
||
``` yaml | ||
--8<-- "helm-configs/loki/loki-helm-s3-overrides-example.yaml" | ||
``` | ||
|
||
!!! example | ||
|
||
If you plan on using **Minio** as a backend for log storage see the `loki-helm-s3-overrides-example.yaml` file in the `helm-configs/loki` directory. | ||
|
||
``` yaml | ||
--8<-- "helm-configs/loki/loki-helm-minio-overrides-example.yaml" | ||
``` |
This file was deleted.
Oops, something went wrong.
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
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