UNCLASSIFIED - NO CUI

Skip to content
Snippets Groups Projects
Commit 92fd9c37 authored by Andrew Shoell's avatar Andrew Shoell
Browse files

Merge branch '116-review-deployment-modes-for-loki' into 'master'

Loki "distributed" mode

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

See merge request !4498
parents 93b8a0f7 670acacf
No related branches found
No related tags found
1 merge request!4498Loki "distributed" mode
Pipeline #3365537 passed
......@@ -406,5 +406,11 @@ PLATFORM ONE THANOS WARNING:
values:
prometheus:
prometheusSpec:
replicas: 3
{{- end }}
{{- if (eq .Values.loki.strategy "distributed") }}
PLATFORM ONE LOKI WARNING:
BigBang does not support the Loki Distributed deployment mode. For production deployments,
please set your strategy to "scalable" or "monolithic"
{{- end }}
\ No newline at end of file
......@@ -113,4 +113,9 @@ minio:
{{- end }}
{{- end }}
# Allows users to deploy distributed mode but calls out that we do not support it
{{- if (eq .Values.loki.strategy "distributed") }}
deploymentMode: Distributed
{{- end -}}
{{- end -}}
\ No newline at end of file
......@@ -536,7 +536,8 @@
"type": "string",
"enum": [
"monolith",
"scalable"
"scalable",
"distributed"
]
},
"objectStorage": {
......
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