Files
netbird-kubernetes-operator/helm/netbird-operator-config/templates/serviceaccount.yaml
T

14 lines
421 B
YAML
Raw Normal View History

2025-11-25 20:36:17 +02:00
{{- if and .Values.kubernetesAPI.enabled .Values.serviceAccount.create -}}
apiVersion: v1
kind: ServiceAccount
metadata:
name: {{ include "netbird-operator-config.serviceAccountName" . }}
labels:
{{- include "netbird-operator-config.labels" . | nindent 4 }}
{{- with .Values.serviceAccount.annotations }}
annotations:
{{- toYaml . | nindent 4 }}
{{- end }}
automountServiceAccountToken: true
{{- end }}