diff --git a/production/helm/loki/CHANGELOG.md b/production/helm/loki/CHANGELOG.md index dcb47ecce8c3..f8e2f1392e7f 100644 --- a/production/helm/loki/CHANGELOG.md +++ b/production/helm/loki/CHANGELOG.md @@ -13,6 +13,10 @@ Entries should include a reference to the pull request that introduced the chang [//]: # ( : 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.) +## 6.3.1 + +- [BUGFIX] Fixed Typo in Ingester templates for zoneAwareReplication + ## 6.3.0 - [CHANGE] Changed version of Grafana Enterprise Logs to v3.0.0 diff --git a/production/helm/loki/Chart.yaml b/production/helm/loki/Chart.yaml index 94da51a31778..a83dbc6865bc 100644 --- a/production/helm/loki/Chart.yaml +++ b/production/helm/loki/Chart.yaml @@ -3,7 +3,7 @@ name: loki description: Helm chart for Grafana Loki in simple, scalable mode type: application appVersion: 3.0.0 -version: 6.3.0 +version: 6.3.1 home: https://grafana.github.io/helm-charts sources: - https://github.com/grafana/loki diff --git a/production/helm/loki/README.md b/production/helm/loki/README.md index 0a51d7d71cc8..61b7403c7d5a 100644 --- a/production/helm/loki/README.md +++ b/production/helm/loki/README.md @@ -1,6 +1,6 @@ # loki -![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) +![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) Helm chart for Grafana Loki in simple, scalable mode diff --git a/production/helm/loki/templates/ingester/statefulset-ingester-zone-b.yaml b/production/helm/loki/templates/ingester/statefulset-ingester-zone-b.yaml index a0c7b85f8a14..3af81ae6477e 100644 --- a/production/helm/loki/templates/ingester/statefulset-ingester-zone-b.yaml +++ b/production/helm/loki/templates/ingester/statefulset-ingester-zone-b.yaml @@ -168,10 +168,10 @@ spec: values: - ingester-zone-b topologyKey: kubernetes.io/hostname - {{- with .Values.ingester.zoneAwareReplication.zoneA.extraAffinity }} + {{- with .Values.ingester.zoneAwareReplication.zoneB.extraAffinity }} {{- toYaml . | nindent 8 }} {{- end }} - {{- with .Values.ingester.zoneAwareReplication.zoneA.nodeSelector }} + {{- with .Values.ingester.zoneAwareReplication.zoneB.nodeSelector }} nodeSelector: {{- toYaml . | nindent 8 }} {{- end }} diff --git a/production/helm/loki/templates/ingester/statefulset-ingester-zone-c.yaml b/production/helm/loki/templates/ingester/statefulset-ingester-zone-c.yaml index cc65f49b244c..30393fa4d2ca 100644 --- a/production/helm/loki/templates/ingester/statefulset-ingester-zone-c.yaml +++ b/production/helm/loki/templates/ingester/statefulset-ingester-zone-c.yaml @@ -168,10 +168,10 @@ spec: values: - ingester-zone-c topologyKey: kubernetes.io/hostname - {{- with .Values.ingester.zoneAwareReplication.zoneA.extraAffinity }} + {{- with .Values.ingester.zoneAwareReplication.zoneC.extraAffinity }} {{- toYaml . | nindent 8 }} {{- end }} - {{- with .Values.ingester.zoneAwareReplication.zoneA.nodeSelector }} + {{- with .Values.ingester.zoneAwareReplication.zoneC.nodeSelector }} nodeSelector: {{- toYaml . | nindent 8 }} {{- end }}