istio.io/istio@v0.0.0-20240520182934-d79c90f27776/manifests/charts/istio-control/istio-discovery/templates/serviceaccount.yaml (about) 1 apiVersion: v1 2 kind: ServiceAccount 3 {{- if .Values.global.imagePullSecrets }} 4 imagePullSecrets: 5 {{- range .Values.global.imagePullSecrets }} 6 - name: {{ . }} 7 {{- end }} 8 {{- end }} 9 metadata: 10 name: istiod{{- if not (eq .Values.revision "") }}-{{ .Values.revision }}{{- end }} 11 namespace: {{ .Values.global.istioNamespace }} 12 labels: 13 app: istiod 14 release: {{ .Release.Name }} 15 {{- if .Values.pilot.serviceAccountAnnotations -}} 16 annotations: 17 {{- toYaml .Values.pilot.serviceAccountAnnotations | indent 4 }} 18 {{- end }} 19 ---