Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 722 for serviceAccounts (0.38 sec)

  1. pkg/controlplane/apiserver/options/options.go

    			if completed.Authentication.ServiceAccounts.MaxExpiration < lowBound ||
    				completed.Authentication.ServiceAccounts.MaxExpiration > upBound {
    				return CompletedOptions{}, fmt.Errorf("the service-account-max-token-expiration must be between 1 hour and 2^32 seconds")
    			}
    			if completed.Authentication.ServiceAccounts.ExtendExpiration {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 12:19:56 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  2. pkg/kubeapiserver/options/authentication.go

    	}
    
    	ret.APIAudiences = o.APIAudiences
    	if o.ServiceAccounts != nil {
    		if len(o.ServiceAccounts.Issuers) != 0 && len(o.APIAudiences) == 0 {
    			ret.APIAudiences = authenticator.Audiences(o.ServiceAccounts.Issuers)
    		}
    		ret.ServiceAccountKeyFiles = o.ServiceAccounts.KeyFiles
    		ret.ServiceAccountIssuers = o.ServiceAccounts.Issuers
    		ret.ServiceAccountLookup = o.ServiceAccounts.Lookup
    	}
    
    	if o.TokenFile != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 22:40:22 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  3. pkg/controller/serviceaccount/serviceaccounts_controller_test.go

    	}{
    		"new active namespace missing serviceaccounts": {
    			ExistingServiceAccounts:      []*v1.ServiceAccount{},
    			AddedNamespace:               activeNS,
    			ExpectCreatedServiceAccounts: sets.NewString(defaultName, managedName).List(),
    		},
    		"new active namespace missing serviceaccount": {
    			ExistingServiceAccounts:      []*v1.ServiceAccount{managedServiceAccount},
    			AddedNamespace:               activeNS,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 03 00:46:06 UTC 2021
    - 7.6K bytes
    - Viewed (0)
  4. pkg/controller/serviceaccount/OWNERS

    # See the OWNERS docs at https://go.k8s.io/owners
    
    approvers:
      - sig-auth-serviceaccounts-approvers
    reviewers:
      - sig-auth-serviceaccounts-reviewers
    labels:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 10 02:31:26 UTC 2021
    - 172 bytes
    - Viewed (0)
  5. pkg/controller/serviceaccount/tokens_controller_test.go

    		ExpectedActions []core.Action
    	}{
    		"new serviceaccount with no secrets": {
    			ClientObjects: []runtime.Object{serviceAccount(emptySecretReferences())},
    
    			AddedServiceAccount: serviceAccount(emptySecretReferences()),
    			ExpectedActions:     []core.Action{},
    		},
    		"new serviceaccount with missing secrets": {
    			ClientObjects: []runtime.Object{serviceAccount(missingSecretReferences())},
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 14 00:05:53 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  6. pkg/controller/serviceaccount/serviceaccounts_controller.go

    type ServiceAccountsControllerOptions struct {
    	// ServiceAccounts is the list of service accounts to ensure exist in every namespace
    	ServiceAccounts []v1.ServiceAccount
    
    	// ServiceAccountResync is the interval between full resyncs of ServiceAccounts.
    	// If non-zero, all service accounts will be re-listed this often.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/kube/controller/ambient/waypoints.go

    	// waypoint. Must be one of "all", "service", "workload".
    	TrafficType string
    
    	// ServiceAccounts from instances of the waypoint.
    	// This only handles Pods. If we wish to support non-pod waypoints, we'll
    	// want to index ServiceEntry/WorkloadEntry or possibly allow specifying
    	// the ServiceAccounts directly on a Gateway resource.
    	ServiceAccounts []string
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:28 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  8. pilot/pkg/model/endpointshards.go

    	oldServiceAccount := shards.ServiceAccounts
    	serviceAccounts := sets.String{}
    	for _, epShards := range shards.Shards {
    		for _, ep := range epShards {
    			if ep.ServiceAccount != "" {
    				serviceAccounts.Insert(ep.ServiceAccount)
    			}
    		}
    	}
    
    	if !oldServiceAccount.Equals(serviceAccounts) {
    		shards.ServiceAccounts = serviceAccounts
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  9. plugin/pkg/admission/serviceaccount/OWNERS

    # See the OWNERS docs at https://go.k8s.io/owners
    
    approvers:
      - sig-auth-serviceaccounts-approvers
    reviewers:
      - sig-auth-serviceaccounts-reviewers
    labels:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 10 02:31:26 UTC 2021
    - 172 bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/mock/discovery_mock.go

    		Address:         "10.1.0.0",
    		ServiceAccounts: []string{},
    		ClusterID:       "cluster-1",
    	})
    
    	// ReplicatedFooServiceName is a service replicated in all clusters.
    	ReplicatedFooServiceName = host.Name("foo.default.svc.cluster.local")
    	ReplicatedFooServiceV1   = MakeService(ServiceArgs{
    		Hostname: ReplicatedFooServiceName,
    		Address:  "10.3.0.0",
    		ServiceAccounts: []string{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 23 02:37:56 UTC 2022
    - 2.7K bytes
    - Viewed (0)
Back to top