Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 97 for serviceAccountName (0.38 sec)

  1. manifests/charts/gateway/templates/role.yaml

    kind: RoleBinding
    metadata:
      name: {{ include "gateway.serviceAccountName" . }}
      namespace: {{ .Release.Namespace }}
      labels:
        {{- include "gateway.labels" . | nindent 4}}
      annotations:
        {{- .Values.annotations | toYaml | nindent 4 }}
    roleRef:
      apiGroup: rbac.authorization.k8s.io
      kind: Role
      name: {{ include "gateway.serviceAccountName" . }}
    subjects:
    - kind: ServiceAccount
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Feb 21 16:58:32 GMT 2023
    - 963 bytes
    - Viewed (0)
  2. istioctl/pkg/multicluster/remote_secret.go

    	case SecretTypeRemote:
    		secretName = remoteSecretNameFromClusterName(opt.ClusterName)
    		if opt.ServiceAccountName == "" {
    			opt.ServiceAccountName = constants.DefaultServiceAccountName
    		}
    	case SecretTypeConfig:
    		secretName = configSecretName
    		if opt.ServiceAccountName == "" {
    			opt.ServiceAccountName = constants.DefaultConfigServiceAccountName
    		}
    	default:
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Oct 11 01:43:17 GMT 2023
    - 24K bytes
    - Viewed (0)
  3. manifests/charts/istio-control/istio-discovery/files/waypoint.yaml

                "istio.io/gateway-name" .Name
                "gateway.istio.io/managed" "istio.io-mesh-controller"
              ) | nindent 8}}
        spec:
          terminationGracePeriodSeconds: 2
          serviceAccountName: {{.ServiceAccount | quote}}
          containers:
          - name: istio-proxy
            ports:
            - containerPort: 15021
              name: status-port
              protocol: TCP
            - containerPort: 15090
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Tue Feb 27 16:55:16 GMT 2024
    - 10.1K bytes
    - Viewed (0)
  4. manifests/charts/gateway/templates/deployment.yaml

            {{- include "gateway.podLabels" . | nindent 8 }}
        spec:
          {{- with .Values.imagePullSecrets }}
          imagePullSecrets:
            {{- toYaml . | nindent 8 }}
          {{- end }}
          serviceAccountName: {{ include "gateway.serviceAccountName" . }}
          securityContext:
          {{- if .Values.securityContext }}
            {{- toYaml .Values.securityContext | nindent 8 }}
          {{- else }}
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Apr 18 18:16:49 GMT 2024
    - 3.5K bytes
    - Viewed (0)
  5. manifests/charts/gateway/templates/serviceaccount.yaml

    {{- if .Values.serviceAccount.create }}
    apiVersion: v1
    kind: ServiceAccount
    metadata:
      name: {{ include "gateway.serviceAccountName" . }}
      namespace: {{ .Release.Namespace }}
      labels:
        {{- include "gateway.labels" . | nindent 4 }}
      {{- with .Values.serviceAccount.annotations }}
      annotations:
        {{- toYaml . | nindent 4 }}
      {{- end }}
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Sep 09 22:35:06 GMT 2021
    - 357 bytes
    - Viewed (0)
  6. manifests/charts/ztunnel/templates/daemonset.yaml

            sidecar.istio.io/inject: "false"
    {{ with .Values.podAnnotations -}}{{ toYaml . | indent 8 }}{{ end }}
        spec:
          nodeSelector:
            kubernetes.io/os: linux
          serviceAccountName: ztunnel
          tolerations:
            - effect: NoSchedule
              operator: Exists
            - key: CriticalAddonsOnly
              operator: Exists
            - effect: NoExecute
              operator: Exists
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Fri Jan 26 20:34:28 GMT 2024
    - 5K bytes
    - Viewed (0)
  7. istioctl/pkg/multicluster/remote_secret_test.go

    				return &fakeOutputWriter{injectError: c.outputWriterError}
    			}
    			if c.secType != SecretTypeConfig {
    				c.secType = SecretTypeRemote
    			}
    			opts := RemoteSecretOptions{
    				ServiceAccountName: testServiceAccountName,
    				AuthType:           RemoteSecretAuthTypeBearerToken,
    				// ClusterName: testCluster,
    				KubeOptions: KubeOptions{
    					Namespace: testNamespace,
    				},
    				Type:       c.secType,
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Oct 31 14:48:28 GMT 2023
    - 20.6K bytes
    - Viewed (0)
  8. manifests/charts/istio-control/istio-discovery/files/gateway-injection-template.yaml

      - name: istio-certs
        secret:
          optional: true
          {{ if eq .Spec.ServiceAccountName "" }}
          secretName: istio.default
          {{ else -}}
          secretName: {{  printf "istio.%s" .Spec.ServiceAccountName }}
          {{  end -}}
      {{- end }}
      {{- if .Values.global.imagePullSecrets }}
      imagePullSecrets:
        {{- range .Values.global.imagePullSecrets }}
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Tue Feb 27 16:55:16 GMT 2024
    - 8.6K bytes
    - Viewed (0)
  9. manifests/charts/istio-control/istio-discovery/files/grpc-agent.yaml

      - name: istio-certs
        secret:
          optional: true
          {{ if eq .Spec.ServiceAccountName "" }}
          secretName: istio.default
          {{ else -}}
          secretName: {{  printf "istio.%s" .Spec.ServiceAccountName }}
          {{  end -}}
      {{- end }}
        {{- if isset .ObjectMeta.Annotations `sidecar.istio.io/userVolume` }}
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Tue Feb 27 16:55:16 GMT 2024
    - 12.1K bytes
    - Viewed (0)
  10. common-protos/k8s.io/apimachinery/pkg/apis/testapigroup/v1/generated.proto

      map<string, string> nodeSelector = 7;
    
      // ServiceAccountName is the name of the ServiceAccount to use to run this carp.
      // More info: https://kubernetes.io/docs/concepts/security/service-accounts/
      // +optional
      optional string serviceAccountName = 8;
    
      // DeprecatedServiceAccount is a depreciated alias for ServiceAccountName.
      // Deprecated: Use serviceAccountName instead.
      // +k8s:conversion-gen=false
      // +optional
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 7.7K bytes
    - Viewed (0)
Back to top