istio.io/istio@v0.0.0-20240520182934-d79c90f27776/manifests/charts/istio-operator/templates/service_account.yaml (about)

     1  apiVersion: v1
     2  kind: ServiceAccount
     3  metadata:
     4    namespace: {{.Release.Namespace}}
     5    name: istio-operator{{- if not (eq .Values.revision "") }}-{{ .Values.revision }}{{- end }}
     6  {{- if .Values.imagePullSecrets }}
     7  imagePullSecrets:
     8  {{- range .Values.imagePullSecrets }}
     9  - name: {{ . }}
    10  {{- end }}
    11  {{- end }}
    12  ---