istio.io/istio@v0.0.0-20240520182934-d79c90f27776/manifests/charts/istiod-remote/templates/serviceaccount.yaml (about)

     1  {{- if .Values.global.configCluster }}
     2  apiVersion: v1
     3  kind: ServiceAccount
     4    {{- if .Values.global.imagePullSecrets }}
     5  imagePullSecrets:
     6    {{- range .Values.global.imagePullSecrets }}
     7    - name: {{ . }}
     8    {{- end }}
     9    {{- end }}
    10  metadata:
    11    name: istiod{{- if not (eq .Values.revision "") }}-{{ .Values.revision }}{{- end }}
    12    namespace: {{ .Values.global.istioNamespace }}
    13    labels:
    14      app: istiod
    15      release: {{ .Release.Name }}
    16    {{- if .Values.pilot.serviceAccountAnnotations -}}
    17    annotations:
    18  {{- toYaml .Values.pilot.serviceAccountAnnotations | indent 4 }}
    19    {{- end }}
    20  ---
    21  {{- end }}