diff --git a/production/helm/loki/CHANGELOG.md b/production/helm/loki/CHANGELOG.md index 29c2da475df1f..3b6164876919a 100644 --- a/production/helm/loki/CHANGELOG.md +++ b/production/helm/loki/CHANGELOG.md @@ -21,6 +21,10 @@ Entries should include a reference to the pull request that introduced the chang - [BUGFIX] Don't fail for missing bucket name, if minio is enabled. [#19745](https://github.com/grafana/loki/pull/19745) - [BUGFIX] Add startupProbe to read pod [#19708](https://github.com/grafana/loki/pull/19708) +## 6.46.1 + +- [BUGFIX] Make the loki-sc-rules sidecar container compatible with the most recent versions of k8s-sidecar. [#20164](https://github.com/grafana/loki/pull/20164) + ## 6.46.0 - [CHANGE] `nameOverride` now passed through Helm template function. [#19590](https://github.com/grafana/loki/pull/19590) diff --git a/production/helm/loki/Chart.yaml b/production/helm/loki/Chart.yaml index b94472b867d69..611f621e88c96 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 and Grafana Enterprise Logs supporting monolithic, simple scalable, and microservices modes. type: application appVersion: 3.5.7 -version: 6.46.0 +version: 6.46.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 8ddd5b054da11..b433aa3b93453 100644 --- a/production/helm/loki/README.md +++ b/production/helm/loki/README.md @@ -1,6 +1,6 @@ # loki -![Version: 6.46.0](https://img.shields.io/badge/Version-6.46.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 3.5.7](https://img.shields.io/badge/AppVersion-3.5.7-informational?style=flat-square) +![Version: 6.46.1](https://img.shields.io/badge/Version-6.46.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 3.5.7](https://img.shields.io/badge/AppVersion-3.5.7-informational?style=flat-square) Helm chart for Grafana Loki and Grafana Enterprise Logs supporting monolithic, simple scalable, and microservices modes. diff --git a/production/helm/loki/templates/backend/statefulset-backend.yaml b/production/helm/loki/templates/backend/statefulset-backend.yaml index 3f5978ab95056..d80d0172e0d16 100644 --- a/production/helm/loki/templates/backend/statefulset-backend.yaml +++ b/production/helm/loki/templates/backend/statefulset-backend.yaml @@ -216,6 +216,8 @@ spec: {{- toYaml .Values.sidecar.securityContext | nindent 12 }} {{- end }} volumeMounts: + - name: tmp + mountPath: /tmp - name: sc-rules-volume mountPath: {{ .Values.sidecar.rules.folder | quote }} {{- end}} diff --git a/production/helm/loki/templates/ruler/statefulset-ruler.yaml b/production/helm/loki/templates/ruler/statefulset-ruler.yaml index 932150e347777..44e074f679ff2 100644 --- a/production/helm/loki/templates/ruler/statefulset-ruler.yaml +++ b/production/helm/loki/templates/ruler/statefulset-ruler.yaml @@ -190,6 +190,8 @@ spec: {{- toYaml .Values.sidecar.securityContext | nindent 12 }} {{- end }} volumeMounts: + - name: tmp + mountPath: /tmp - name: sc-rules-volume mountPath: {{ .Values.sidecar.rules.folder | quote }} {{- end}} diff --git a/production/helm/loki/templates/single-binary/statefulset.yaml b/production/helm/loki/templates/single-binary/statefulset.yaml index e1652e24b9ecb..4dde685e274b0 100644 --- a/production/helm/loki/templates/single-binary/statefulset.yaml +++ b/production/helm/loki/templates/single-binary/statefulset.yaml @@ -226,6 +226,8 @@ spec: {{- toYaml .Values.sidecar.securityContext | nindent 12 }} {{- end }} volumeMounts: + - name: tmp + mountPath: /tmp - name: sc-rules-volume mountPath: {{ .Values.sidecar.rules.folder | quote }} {{- end}}