mirror of
https://github.com/YuzuZensai/netbird-kubernetes-operator.git
synced 2026-09-13 10:49:15 +00:00
14 lines
434 B
YAML
14 lines
434 B
YAML
{{- if .Values.operator.serviceAccount.create -}}
|
|||
|
|
apiVersion: v1
|
||
|
|
kind: ServiceAccount
|
||
|
|
metadata:
|
||
|
|
name: {{ include "netbird-operator.serviceAccountName" . }}
|
||
|
|
labels:
|
||
|
|
{{- include "netbird-operator.labels" . | nindent 4 }}
|
||
|
|
{{- with .Values.operator.serviceAccount.annotations }}
|
||
|
|
annotations:
|
||
|
|
{{- toYaml . | nindent 4 }}
|
||
|
|
{{- end }}
|
||
|
|
automountServiceAccountToken: {{ .Values.operator.serviceAccount.automount }}
|
||
|
|
{{- end }}
|