Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 329 for serviceAccount (0.21 sec)

  1. samples/security/spire/spire-quickstart.yaml

      # Unix Domain Socket is typically open to all (i.e. 0777).
      fsGroupPolicy: None
    
      # Declare support for ephemeral volumes only.
      volumeLifecycleModes:
        - Ephemeral
    
    ---
    apiVersion: v1
    kind: ServiceAccount
    metadata:
      name: spire-server
      namespace: spire
    
    ---
    # ConfigMap for spire-agent bootstrapping.
    apiVersion: v1
    kind: ConfigMap
    metadata:
      name: spire-bundle
      namespace: spire
    
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 12 16:12:42 UTC 2023
    - 32.2K bytes
    - Viewed (0)
  2. pkg/apis/flowcontrol/types.go

    	Kind SubjectKind
    	// `user` matches based on username.
    	// +optional
    	User *UserSubject
    	// `group` matches based on user group name.
    	// +optional
    	Group *GroupSubject
    	// `serviceAccount` matches ServiceAccounts.
    	// +optional
    	ServiceAccount *ServiceAccountSubject
    }
    
    // SubjectKind is the kind of subject.
    type SubjectKind string
    
    // Supported subject's kinds.
    const (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 24.3K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/flowcontrol/v1beta3/generated.proto

      // +optional
      optional UserSubject user = 2;
    
      // `group` matches based on user group name.
      // +optional
      optional GroupSubject group = 3;
    
      // `serviceAccount` matches ServiceAccounts.
      // +optional
      optional ServiceAccountSubject serviceAccount = 4;
    }
    
    // UserSubject holds detailed information for user-kind subject.
    message UserSubject {
      // `name` is the username that matches, or "*" to match all usernames.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/flowcontrol/v1/types.go

    	// `group` matches based on user group name.
    	// +optional
    	Group *GroupSubject `json:"group,omitempty" protobuf:"bytes,3,opt,name=group"`
    	// `serviceAccount` matches ServiceAccounts.
    	// +optional
    	ServiceAccount *ServiceAccountSubject `json:"serviceAccount,omitempty" protobuf:"bytes,4,opt,name=serviceAccount"`
    }
    
    // SubjectKind is the kind of subject.
    type SubjectKind string
    
    // Supported subject's kinds.
    const (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/flowcontrol/v1beta3/types.go

    	// `group` matches based on user group name.
    	// +optional
    	Group *GroupSubject `json:"group,omitempty" protobuf:"bytes,3,opt,name=group"`
    	// `serviceAccount` matches ServiceAccounts.
    	// +optional
    	ServiceAccount *ServiceAccountSubject `json:"serviceAccount,omitempty" protobuf:"bytes,4,opt,name=serviceAccount"`
    }
    
    // SubjectKind is the kind of subject.
    type SubjectKind string
    
    // Supported subject's kinds.
    const (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 31.9K bytes
    - Viewed (0)
  6. istioctl/pkg/multicluster/remote_secret_test.go

    		},
    	}
    )
    
    const (
    	testNamespace          = "istio-system-test"
    	testServiceAccountName = "test-service-account"
    )
    
    func makeServiceAccount(secrets ...string) *v1.ServiceAccount {
    	sa := &v1.ServiceAccount{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      testServiceAccountName,
    			Namespace: testNamespace,
    		},
    	}
    
    	for _, secret := range secrets {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 20.6K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/flowcontrol/v1beta1/generated.proto

      // +optional
      optional UserSubject user = 2;
    
      // `group` matches based on user group name.
      // +optional
      optional GroupSubject group = 3;
    
      // `serviceAccount` matches ServiceAccounts.
      // +optional
      optional ServiceAccountSubject serviceAccount = 4;
    }
    
    // UserSubject holds detailed information for user-kind subject.
    message UserSubject {
      // `name` is the username that matches, or "*" to match all usernames.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  8. helm/minio/templates/post-job.yaml

                items:
                  - key: {{ .Values.tls.publicCrt }}
                    path: CAs/public.crt
            {{- end }}
          {{- if .Values.serviceAccount.create }}
          serviceAccountName: {{ .Values.serviceAccount.name }}
          {{- end }}
          {{- if .Values.policies }}
          initContainers:
            - name: minio-make-policy
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Jul 08 19:18:31 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  9. helm/minio/templates/statefulset.yaml

            fsGroupChangePolicy: {{ .Values.securityContext.fsGroupChangePolicy }}
            {{- end }}
          {{- end }}
          {{- if .Values.serviceAccount.create }}
          serviceAccountName: {{ .Values.serviceAccount.name }}
          {{- end }}
          containers:
            - name: {{ .Chart.Name }}
              image: {{ .Values.image.repository }}:{{ .Values.image.tag }}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 26 07:50:24 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/flowcontrol/v1alpha1/generated.proto

      // +optional
      optional UserSubject user = 2;
    
      // `group` matches based on user group name.
      // +optional
      optional GroupSubject group = 3;
    
      // `serviceAccount` matches ServiceAccounts.
      // +optional
      optional ServiceAccountSubject serviceAccount = 4;
    }
    
    // UserSubject holds detailed information for user-kind subject.
    message UserSubject {
      // `name` is the username that matches, or "*" to match all usernames.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.4K bytes
    - Viewed (0)
Back to top