diff --git a/production/helm/loki/CHANGELOG.md b/production/helm/loki/CHANGELOG.md index 0cec99115d97c..5804902c01fe9 100644 --- a/production/helm/loki/CHANGELOG.md +++ b/production/helm/loki/CHANGELOG.md @@ -13,6 +13,8 @@ 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] make loki.storage.bucketNames are optional, if builtin minio is enabled. +- [ENHANCEMENT] add missing revisionHistoryLimit to `admin-api`, `enterprise-gateway`, and `loki-canary`. [#18638](https://github.com/grafana/loki/pull/18638) - [FEATURE] Expose all storage configuration properties [#18509](https://github.com/grafana/loki/pull/18509) - [CHANGE] Add `tpl()` support for `pattern_ingester`, `ingester_client` and `compactor_grpc_client` components. [#16759](https://github.com/grafana/loki/pull/16759) - [CHANGE] Common Config : Use grpc for contacting the compactor in distributed deployment, rather than http. The compactor_grpc_address parameter replaces the compactor_address in the default commonConfig section of values.yaml. If the compactor_address parameter is set, the compactor_grpc_address must be set to an empty string. Careful, the loki.compactorAddress helper now returns the address of the compactor in grpc format rather than http. [#17454](https://github.com/grafana/loki/pull/17454) diff --git a/production/helm/loki/templates/admin-api/deployment-admin-api.yaml b/production/helm/loki/templates/admin-api/deployment-admin-api.yaml index cb712540ff76e..da9afc52234a8 100644 --- a/production/helm/loki/templates/admin-api/deployment-admin-api.yaml +++ b/production/helm/loki/templates/admin-api/deployment-admin-api.yaml @@ -20,6 +20,7 @@ spec: {{- include "enterprise-logs.adminApiSelectorLabels" . | nindent 6 }} strategy: {{- toYaml .Values.adminApi.strategy | nindent 4 }} + revisionHistoryLimit: {{ .Values.loki.revisionHistoryLimit }} template: metadata: labels: diff --git a/production/helm/loki/templates/gateway/deployment-gateway-enterprise.yaml b/production/helm/loki/templates/gateway/deployment-gateway-enterprise.yaml index 6e9bb15dd09d3..5d9ce40c8453b 100644 --- a/production/helm/loki/templates/gateway/deployment-gateway-enterprise.yaml +++ b/production/helm/loki/templates/gateway/deployment-gateway-enterprise.yaml @@ -21,6 +21,7 @@ spec: {{- include "loki.gatewaySelectorLabels" . | nindent 6 }} strategy: {{- toYaml .Values.enterpriseGateway.strategy | nindent 4 }} + revisionHistoryLimit: {{ .Values.loki.revisionHistoryLimit }} template: metadata: labels: diff --git a/production/helm/loki/templates/loki-canary/daemonset.yaml b/production/helm/loki/templates/loki-canary/daemonset.yaml index b38d339f943b0..53ffd71e378cb 100644 --- a/production/helm/loki/templates/loki-canary/daemonset.yaml +++ b/production/helm/loki/templates/loki-canary/daemonset.yaml @@ -19,6 +19,7 @@ spec: type: RollingUpdate rollingUpdate: maxUnavailable: 1 + revisionHistoryLimit: {{ $.Values.loki.revisionHistoryLimit }} {{- else }} {{- with .updateStrategy }} updateStrategy: