mirror of
https://github.com/bitnami/charts.git
synced 2026-03-14 06:47:28 +08:00
* Adds support to add annotations to Service Accounts * [bitnami/thanos] Update components versions Signed-off-by: Bitnami Containers <containers@bitnami.com> Co-authored-by: Ilya Nemakov <ilya.nemakov@nordigy.ry> Co-authored-by: Bitnami Containers <containers@bitnami.com>
12 lines
439 B
YAML
12 lines
439 B
YAML
{{- if .Values.querier.enabled -}}
|
|
apiVersion: v1
|
|
kind: ServiceAccount
|
|
metadata:
|
|
name: {{ include "thanos.fullname" . }}-querier
|
|
labels: {{- include "thanos.labels" . | nindent 4 }}
|
|
app.kubernetes.io/component: querier
|
|
{{- if .Values.querier.serviceAccount.annotations }}
|
|
annotations:
|
|
{{ include "thanos.tplValue" ( dict "value" .Values.querier.serviceAccount.annotations "context" $) | nindent 4 }}
|
|
{{- end }}
|
|
{{- end }} |