ci: [CI/CD] Update yaml file `./production/helm/loki/values.yaml` (+1 other) (#12868)

Signed-off-by: Michel Hollands <michel.hollands@gmail.com>
Co-authored-by: Vladyslav Diachenko <82767850+vlad-diachenko@users.noreply.github.com>
Co-authored-by: Michel Hollands <42814411+MichelHollands@users.noreply.github.com>
Co-authored-by: Michel Hollands <michel.hollands@gmail.com>
pull/12873/head helm-loki-6.5.0
Grot (@grafanabot) 1 year ago committed by GitHub
parent 57f78b574a
commit 2855c5a4c0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      docs/sources/setup/install/helm/reference.md
  2. 5
      production/helm/loki/CHANGELOG.md
  3. 2
      production/helm/loki/Chart.yaml
  4. 2
      production/helm/loki/README.md
  5. 11
      production/helm/loki/values.yaml

@ -2630,7 +2630,7 @@ null
"tolerations": []
},
"useExternalLicense": false,
"version": "v3.0.0"
"version": "v3.0.1"
}
</pre>
</td>

@ -13,6 +13,11 @@ Entries should include a reference to the pull request that introduced the chang
[//]: # (<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.)
## 6.5.0
- [CHANGE] Changed version of Grafana Enterprise Logs to v3.0.1
## 6.4.2
- [BUGFIX] Fixed helm helper functions to include missing `loki.hpa.apiVersion` #12716

@ -3,7 +3,7 @@ name: loki
description: Helm chart for Grafana Loki in simple, scalable mode
type: application
appVersion: 3.0.0
version: 6.4.2
version: 6.5.0
home: https://grafana.github.io/helm-charts
sources:
- https://github.com/grafana/loki

@ -1,6 +1,6 @@
# loki
![Version: 6.4.2](https://img.shields.io/badge/Version-6.4.2-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)
![Version: 6.5.0](https://img.shields.io/badge/Version-6.5.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)
Helm chart for Grafana Loki in simple, scalable mode

@ -118,7 +118,6 @@ loki:
# If empty, no configmap or secret will be created.
# The value will be passed through tpl.
generatedConfigObjectName: '{{ include "loki.name" . }}'
# -- Config file contents for Loki
# @default -- See values.yaml
config: |
@ -450,7 +449,7 @@ enterprise:
# Enable enterprise features, license must be provided
enabled: false
# Default verion of GEL to deploy
version: v3.0.0
version: v3.0.1
# -- Optional name of the GEL cluster, otherwise will use .Release.Name
# The cluster name must match what is in your GEL license
cluster_name: null
@ -845,8 +844,6 @@ adminApi:
tolerations: []
# -- Grace period to allow the admin-api to shutdown before it is killed
terminationGracePeriodSeconds: 60
######################################################################################################################
#
# Gateway and Ingress
@ -1015,12 +1012,8 @@ gateway:
# @default -- Either `loki.tenants` or `gateway.basicAuth.username` and `gateway.basicAuth.password`.
htpasswd: >-
{{ if .Values.loki.tenants }}
{{- range $t := .Values.loki.tenants }}
{{ htpasswd (required "All tenants must have a 'name' set" $t.name) (required "All tenants must have a 'password' set" $t.password) }}
{{- end }}
{{ else }} {{ htpasswd (required "'gateway.basicAuth.username' is required" .Values.gateway.basicAuth.username) (required "'gateway.basicAuth.password' is required" .Values.gateway.basicAuth.password) }} {{ end }}
# -- Existing basic auth secret to use. Must contain '.htpasswd'
@ -1186,7 +1179,6 @@ migrate:
# -- If migrating from a distributed service, provide the distributed deployment's
# memberlist service DNS so the new deployment can join its ring.
memberlistService: ""
######################################################################################################################
#
# Single Binary Deployment
@ -3117,7 +3109,6 @@ extraObjects: []
# {{ .name }}: {{ b64enc .password | quote }}
# {{- end }}
sidecar:
image:
# -- The Docker registry and image for the k8s sidecar

Loading…
Cancel
Save