Skip to content

Commit 8434b2f

Browse files
authored
fix(helm): fix imagePullSecrets for statefulset-results-cache (grafana#13051)
1 parent 5f5fd4e commit 8434b2f

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
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.7.2
17+
18+
- [BUGFIX] Fix imagePullSecrets for statefulset-results-cache
19+
1620
## 6.7.1
1721

1822
- [CHANGE] Changed version of Loki to 3.1.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 and Grafana Enterprise Logs supporting both simple, scalable and distributed modes.
44
type: application
55
appVersion: 3.1.0
6-
version: 6.7.1
6+
version: 6.7.2
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.7.1](https://img.shields.io/badge/Version-6.7.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 3.1.0](https://img.shields.io/badge/AppVersion-3.1.0-informational?style=flat-square)
3+
![Version: 6.7.2](https://img.shields.io/badge/Version-6.7.2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 3.1.0](https://img.shields.io/badge/AppVersion-3.1.0-informational?style=flat-square)
44

55
Helm chart for Grafana Loki and Grafana Enterprise Logs supporting both simple, scalable and distributed modes.
66

production/helm/loki/templates/memcached/_memcached-statefulset.tpl

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ spec:
7272
terminationGracePeriodSeconds: {{ .terminationGracePeriodSeconds }}
7373
{{- if $.ctx.Values.imagePullSecrets }}
7474
imagePullSecrets:
75-
{{- range $.ctx.Values.image.pullSecrets }}
75+
{{- range $.ctx.Values.imagePullSecrets }}
7676
- name: {{ . }}
7777
{{- end }}
7878
{{- end }}

0 commit comments

Comments
 (0)