UNCLASSIFIED - NO CUI

Skip to content
Snippets Groups Projects
Commit b2e532fc authored by Ryan Garcia's avatar Ryan Garcia :dizzy:
Browse files

Merge branch 'update-loki-tag-5.8.9-bb.0' into 'master'

loki update to 5.8.9-bb.0

Closes big-bang/product/packages/loki#43

See merge request !2907
parents 8007da72 3eb9b085
No related branches found
No related tags found
1 merge request!2907loki update to 5.8.9-bb.0
Pipeline #1946668 failed
......@@ -671,11 +671,11 @@ loki:
git:
repo: https://repo1.dso.mil/big-bang/product/packages/loki.git
path: "./chart"
tag: "5.5.0-bb.4"
tag: "5.8.9-bb.0"
helmRepo:
repoName: "registry1"
chartName: "loki"
tag: "5.5.0-bb.4"
tag: "5.8.9-bb.0"
# -- Flux reconciliation overrides specifically for the Loki Package
flux: {}
......
......@@ -79,6 +79,40 @@ loki:
replicas: 2
```
You can also optionally use HPA with Loki for each component. There are additional options for the target memory and scaling behavior that you can reference in the [package chart values](https://repo1.dso.mil/big-bang/product/packages/loki/-/blob/main/chart/values.yaml).
```yaml
loki:
values:
write:
autoscaling:
enabled: true
# -- Minimum autoscaling replicas for the write.
minReplicas: 1
# -- Maximum autoscaling replicas for the write.
maxReplicas: 3
# -- Target CPU utilization percentage for the write.
targetCPUUtilizationPercentage: 80
read:
autoscaling:
enabled: true
# -- Minimum autoscaling replicas for the write.
minReplicas: 1
# -- Maximum autoscaling replicas for the write.
maxReplicas: 3
# -- Target CPU utilization percentage for the write.
targetCPUUtilizationPercentage: 80
backend:
autoscaling:
enabled: true
# -- Minimum autoscaling replicas for the write.
minReplicas: 1
# -- Maximum autoscaling replicas for the write.
maxReplicas: 3
# -- Target CPU utilization percentage for the write.
targetCPUUtilizationPercentage: 80
```
### UI
Loki has no UI packaged with it. Grafana is the frontend to view logs which are ingested by Loki.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment