Skip to content

Commit bddd44f

Browse files
hendrikkiedrowskiJSticklerMichelHollands
authored
fix: Ingester zoneAwareReplication (grafana#12659)
Signed-off-by: Michel Hollands <[email protected]> Co-authored-by: J Stickler <[email protected]> Co-authored-by: Michel Hollands <[email protected]> Co-authored-by: Michel Hollands <[email protected]>
1 parent b32efa5 commit bddd44f

File tree

5 files changed

+10
-6
lines changed

5 files changed

+10
-6
lines changed

production/helm/loki/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ Entries should include a reference to the pull request that introduced the chang
1313

1414
[//]: # (<AUTOMATED_UPDATES_LOCATOR> : do not remove this line. This locator is used by the CI pipeline to automatically create a changelog entry for each new Loki release. Add other chart versions and respective changelog entries bellow this line.)
1515

16+
## 6.3.1
17+
18+
- [BUGFIX] Fixed Typo in Ingester templates for zoneAwareReplication
19+
1620
## 6.3.0
1721

1822
- [CHANGE] Changed version of Grafana Enterprise Logs to v3.0.0

production/helm/loki/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: loki
33
description: Helm chart for Grafana Loki in simple, scalable mode
44
type: application
55
appVersion: 3.0.0
6-
version: 6.3.0
6+
version: 6.3.1
77
home: https://grafana.github.io/helm-charts
88
sources:
99
- https://github.com/grafana/loki

production/helm/loki/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# loki
22

3-
![Version: 6.3.0](https://img.shields.io/badge/Version-6.3.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 3.0.0](https://img.shields.io/badge/AppVersion-3.0.0-informational?style=flat-square)
3+
![Version: 6.3.1](https://img.shields.io/badge/Version-6.3.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 3.0.0](https://img.shields.io/badge/AppVersion-3.0.0-informational?style=flat-square)
44

55
Helm chart for Grafana Loki in simple, scalable mode
66

production/helm/loki/templates/ingester/statefulset-ingester-zone-b.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -168,10 +168,10 @@ spec:
168168
values:
169169
- ingester-zone-b
170170
topologyKey: kubernetes.io/hostname
171-
{{- with .Values.ingester.zoneAwareReplication.zoneA.extraAffinity }}
171+
{{- with .Values.ingester.zoneAwareReplication.zoneB.extraAffinity }}
172172
{{- toYaml . | nindent 8 }}
173173
{{- end }}
174-
{{- with .Values.ingester.zoneAwareReplication.zoneA.nodeSelector }}
174+
{{- with .Values.ingester.zoneAwareReplication.zoneB.nodeSelector }}
175175
nodeSelector:
176176
{{- toYaml . | nindent 8 }}
177177
{{- end }}

production/helm/loki/templates/ingester/statefulset-ingester-zone-c.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -168,10 +168,10 @@ spec:
168168
values:
169169
- ingester-zone-c
170170
topologyKey: kubernetes.io/hostname
171-
{{- with .Values.ingester.zoneAwareReplication.zoneA.extraAffinity }}
171+
{{- with .Values.ingester.zoneAwareReplication.zoneC.extraAffinity }}
172172
{{- toYaml . | nindent 8 }}
173173
{{- end }}
174-
{{- with .Values.ingester.zoneAwareReplication.zoneA.nodeSelector }}
174+
{{- with .Values.ingester.zoneAwareReplication.zoneC.nodeSelector }}
175175
nodeSelector:
176176
{{- toYaml . | nindent 8 }}
177177
{{- end }}

0 commit comments

Comments
 (0)