istio.io/istio@v0.0.0-20240520182934-d79c90f27776/manifests/charts/istio-cni/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: {{ template "name" . }}
    11    namespace: {{ .Release.Namespace }}
    12    labels:
    13      app: {{ template "name" . }}
    14      release: {{ .Release.Name }}
    15      istio.io/rev: {{ .Values.revision | default "default" }}
    16      install.operator.istio.io/owning-resource: {{ .Values.ownerName | default "unknown" }}
    17      operator.istio.io/component: "Cni"