Skip to content

Commit

Permalink
Merge pull request #538 from czunker/bug/fix_automountServiceAccountT…
Browse files Browse the repository at this point in the history
…oken

[loki-distributed] Fix automountServiceAccountToken
  • Loading branch information
unguiculus committed Oct 12, 2021
2 parents ad033c2 + 1baf2d4 commit 7b3d96d
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 3 deletions.
2 changes: 1 addition & 1 deletion charts/loki-distributed/Chart.yaml
Expand Up @@ -3,7 +3,7 @@ name: loki-distributed
description: Helm chart for Grafana Loki in microservices mode
type: application
appVersion: 2.3.0
version: 0.38.0
version: 0.38.1
home: https://grafana.github.io/helm-charts
sources:
- https://github.com/grafana/loki
Expand Down
2 changes: 1 addition & 1 deletion charts/loki-distributed/README.md
@@ -1,6 +1,6 @@
# loki-distributed

![Version: 0.38.0](https://img.shields.io/badge/Version-0.38.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2.3.0](https://img.shields.io/badge/AppVersion-2.3.0-informational?style=flat-square)
![Version: 0.38.1](https://img.shields.io/badge/Version-0.38.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2.3.0](https://img.shields.io/badge/AppVersion-2.3.0-informational?style=flat-square)

Helm chart for Grafana Loki in microservices mode

Expand Down
9 changes: 9 additions & 0 deletions charts/loki-distributed/ci/ingress-values.yaml
@@ -0,0 +1,9 @@
gateway:
ingress:
enabled: true
annotations: {}
hosts:
- host: gateway.loki.example.com
paths:
- path: /
pathType: Prefix
3 changes: 2 additions & 1 deletion charts/loki-distributed/templates/serviceaccount.yaml
Expand Up @@ -9,9 +9,10 @@ metadata:
annotations:
{{- toYaml . | nindent 4 }}
{{- end }}
{{- with .Values.serviceAccount.imagePullSecrets }}
automountServiceAccountToken: {{ .Values.serviceAccount.automountServiceAccountToken }}
{{- with .Values.serviceAccount.imagePullSecrets }}
imagePullSecrets:
{{- toYaml . | nindent 2 }}
{{- end }}
{{- end }}

0 comments on commit 7b3d96d

Please sign in to comment.