diff --git a/production/helm/loki/CHANGELOG.md b/production/helm/loki/CHANGELOG.md index 31e9c10f9ca45..718a8891eb597 100644 --- a/production/helm/loki/CHANGELOG.md +++ b/production/helm/loki/CHANGELOG.md @@ -13,11 +13,12 @@ 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.) +- [BUGFIX] Fix role/PSP mapping + ## 4.8.0 - [CHANGE] Changed version of Grafana Enterprise Logs to v1.6.2 - ## 4.7 - [CHANGE] **BREAKING** Rename `gel-license.jwt` property of secret `gel-secrets` to `license.jwt` on enterprise-logs chart. diff --git a/production/helm/loki/templates/role.yaml b/production/helm/loki/templates/role.yaml index 768dd39b56b3b..621b4bee79bf3 100644 --- a/production/helm/loki/templates/role.yaml +++ b/production/helm/loki/templates/role.yaml @@ -15,7 +15,7 @@ rules: verbs: - use resourceNames: - - {{ include "loki.fullname" . }} + - {{ include "loki.name" . }} {{- end }} {{- if .Values.rbac.sccEnabled }} rules: @@ -26,6 +26,6 @@ rules: verbs: - use resourceNames: - - {{ include "loki.fullname" . }} + - {{ include "loki.name" . }} {{- end }} {{- end }}