Skip to content

Commit 688482c

Browse files
fix(helm): Update yaml file ./production/helm/loki/values.yaml (+1 other) (grafana#13426)
Co-authored-by: Trevor Whitney <[email protected]>
1 parent 3f3d297 commit 688482c

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-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.0
17+
18+
- [CHANGE] Changed version of Grafana Enterprise Logs to 3.1.0
19+
1620
## 6.6.6
1721

1822
- [BUGFIX] Fix HPA ingester typo

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.0.0
6-
version: 6.6.6
6+
version: 6.7.0
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.6.6](https://img.shields.io/badge/Version-6.6.6-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)
3+
![Version: 6.7.0](https://img.shields.io/badge/Version-6.7.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)
44

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

production/helm/loki/values.yaml

+3-1
Original file line numberDiff line numberDiff line change
@@ -450,7 +450,7 @@ enterprise:
450450
# Enable enterprise features, license must be provided
451451
enabled: false
452452
# Default verion of GEL to deploy
453-
version: 3.0.1
453+
version: 3.1.0
454454
# -- Optional name of the GEL cluster, otherwise will use .Release.Name
455455
# The cluster name must match what is in your GEL license
456456
cluster_name: null
@@ -1011,8 +1011,10 @@ gateway:
10111011
# @default -- Either `loki.tenants` or `gateway.basicAuth.username` and `gateway.basicAuth.password`.
10121012
htpasswd: >-
10131013
{{ if .Values.loki.tenants }}
1014+
10141015
{{- range $t := .Values.loki.tenants }}
10151016
{{ htpasswd (required "All tenants must have a 'name' set" $t.name) (required "All tenants must have a 'password' set" $t.password) }}
1017+
10161018
{{- end }}
10171019
{{ else }} {{ htpasswd (required "'gateway.basicAuth.username' is required" .Values.gateway.basicAuth.username) (required "'gateway.basicAuth.password' is required" .Values.gateway.basicAuth.password) }} {{ end }}
10181020
# -- Existing basic auth secret to use. Must contain '.htpasswd'

0 commit comments

Comments
 (0)