mirror of
https://github.com/bitnami/charts.git
synced 2026-03-14 06:47:28 +08:00
* [bitnami/discourse] Chart standardization Signed-off-by: juan131 <juanariza@vmware.com> * Update deps Signed-off-by: juan131 <juanariza@vmware.com> * Fix NOTES Signed-off-by: juan131 <juanariza@vmware.com> * [bitnami/discourse] Update components versions Signed-off-by: Bitnami Containers <containers@bitnami.com> Co-authored-by: Bitnami Containers <containers@bitnami.com>
22 lines
899 B
YAML
22 lines
899 B
YAML
{{- if .Values.serviceAccount.create -}}
|
|
apiVersion: v1
|
|
kind: ServiceAccount
|
|
metadata:
|
|
name: {{ include "discourse.serviceAccountName" . }}
|
|
namespace: {{ .Release.Namespace }}
|
|
labels: {{- include "common.labels.standard" . | nindent 4 }}
|
|
{{- if .Values.commonLabels }}
|
|
{{- include "common.tplvalues.render" ( dict "value" .Values.commonLabels "context" $ ) | nindent 4 }}
|
|
{{- end }}
|
|
{{- if or .Values.serviceAccount.annotations .Values.commonAnnotations }}
|
|
annotations:
|
|
{{- if .Values.serviceAccount.annotations }}
|
|
{{- toYaml .Values.serviceAccount.annotations | nindent 4 }}
|
|
{{- end }}
|
|
{{- if .Values.commonAnnotations }}
|
|
{{- include "common.tplvalues.render" (dict "value" .Values.commonAnnotations "context" $) | nindent 4 }}
|
|
{{- end }}
|
|
{{- end }}
|
|
automountServiceAccountToken: {{ .Values.serviceAccount.automountServiceAccountToken }}
|
|
{{- end -}}
|