Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 507 for ServiceAccountName (0.29 sec)

  1. tests/integration/security/egress_sidecar_tls_origination_test.go

    				t.NewSubTest(tc.name).Run(func(t framework.TestContext) {
    					if tc.authorizeSidecar {
    						serviceAccount := tc.from.Config().ServiceAccountName()
    						serviceAccountName := serviceAccount[strings.LastIndex(serviceAccount, "/")+1:]
    						authorizeSidecar(t, tc.from.Config().Namespace, serviceAccountName)
    					}
    					newTLSSidecarDestinationRule(t, apps.External.All, "MUTUAL", tc.drSelector, tc.credentialToUse,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/testdata/deployment/waypoint-no-network-label.yaml

            - <nil>
            - --log_output_level
            - <nil>
            env:
            - name: ISTIO_META_SERVICE_ACCOUNT
              valueFrom:
                fieldRef:
                  fieldPath: spec.serviceAccountName
            - name: ISTIO_META_NODE_NAME
              valueFrom:
                fieldRef:
                  fieldPath: spec.nodeName
            - name: PILOT_CERT_PROVIDER
              value: <no value>
            - name: CA_ADDR
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 22:41:03 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/gateway/testdata/deployment/waypoint.yaml

            - <nil>
            - --log_output_level
            - <nil>
            env:
            - name: ISTIO_META_SERVICE_ACCOUNT
              valueFrom:
                fieldRef:
                  fieldPath: spec.serviceAccountName
            - name: ISTIO_META_NODE_NAME
              valueFrom:
                fieldRef:
                  fieldPath: spec.nodeName
            - name: PILOT_CERT_PROVIDER
              value: <no value>
            - name: CA_ADDR
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 22:41:03 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  4. security/pkg/server/ca/node_auth.go

    		if len(pod.Spec.NodeName) == 0 {
    			return nil
    		}
    		if len(pod.Spec.ServiceAccountName) == 0 {
    			return nil
    		}
    		return []SaNode{{
    			ServiceAccount: types.NamespacedName{
    				Namespace: pod.Namespace,
    				Name:      pod.Spec.ServiceAccountName,
    			},
    			Node: pod.Spec.NodeName,
    		}}
    	})
    	return &ClusterNodeAuthorizer{
    		pods:                pods,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 6.4K 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 }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 09 22:35:06 UTC 2021
    - 357 bytes
    - Viewed (0)
  6. manifests/charts/gateway/templates/deployment.yaml

            {{- end }}
            {{- end }}
        spec:
          {{- with .Values.imagePullSecrets }}
          imagePullSecrets:
            {{- toYaml . | nindent 8 }}
          {{- end }}
          serviceAccountName: {{ include "gateway.serviceAccountName" . }}
          securityContext:
          {{- if .Values.securityContext }}
            {{- toYaml .Values.securityContext | nindent 8 }}
          {{- else }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 22:42:29 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  7. samples/security/spire/clusterspiffeid.yaml

    apiVersion: spire.spiffe.io/v1alpha1
    kind: ClusterSPIFFEID
    metadata:
      name: example
    spec:
      spiffeIDTemplate: "spiffe://{{ .TrustDomain }}/ns/{{ .PodMeta.Namespace }}/sa/{{ .PodSpec.ServiceAccountName }}"
      podSelector:
        matchLabels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 24 22:08:56 UTC 2023
    - 285 bytes
    - Viewed (0)
  8. plugin/pkg/admission/imagepolicy/admission_test.go

    			wantAllowed: false,
    			wantErr:     true,
    			subresource: "",
    			operation:   admission.Create,
    		},
    		{
    			test: "One good container, one bad",
    			pod: &api.Pod{
    				Spec: api.PodSpec{
    					ServiceAccountName: "default",
    					SecurityContext:    &api.PodSecurityContext{},
    					Containers: []api.Container{
    						{
    							Image:           "bad",
    							SecurityContext: &api.SecurityContext{},
    						},
    						{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 02 06:05:06 UTC 2023
    - 32.9K bytes
    - Viewed (0)
  9. operator/cmd/mesh/testdata/manifest-generate/output/install_package_path.golden.yaml

                  apiVersion: v1
                  fieldPath: metadata.namespace
            - name: SERVICE_ACCOUNT
              valueFrom:
                fieldRef:
                  apiVersion: v1
                  fieldPath: spec.serviceAccountName
            - name: KUBECONFIG
              value: /var/run/secrets/remote/config
            - name: PILOT_TRACE_SAMPLING
              value: "1"
            - name: PILOT_ENABLE_ANALYSIS
              value: "false"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 22:07:45 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  10. staging/src/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 deprecated alias for ServiceAccountName.
      // Deprecated: Use serviceAccountName instead.
      // +k8s:conversion-gen=false
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 7.7K bytes
    - Viewed (0)
Back to top