Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 779 for serviceAccounts (0.2 sec)

  1. api/discovery/api__v1.json

            "list",
            "patch",
            "update",
            "watch"
          ]
        },
        {
          "kind": "ServiceAccount",
          "name": "serviceaccounts",
          "namespaced": true,
          "shortNames": [
            "sa"
          ],
          "singularName": "serviceaccount",
          "storageVersionHash": "pbx9ZvyFpBE=",
          "verbs": [
            "create",
            "delete",
            "deletecollection",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 15 18:18:19 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/serviceentry/conversion.go

    		Addresses: svc.GetAddresses(proxy),
    
    		// This is based on alpha.istio.io/canonical-serviceaccounts and
    		//  alpha.istio.io/kubernetes-serviceaccounts.
    		SubjectAltNames: svc.ServiceAccounts,
    	}
    
    	if len(svc.Attributes.LabelSelectors) > 0 {
    		se.WorkloadSelector = &networking.WorkloadSelector{Labels: svc.Attributes.LabelSelectors}
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  3. pkg/controlplane/apiserver/config.go

    	for _, f := range opts.Authentication.ServiceAccounts.KeyFiles {
    		keys, err := keyutil.PublicKeysFromFile(f)
    		if err != nil {
    			return nil, nil, fmt.Errorf("failed to parse key file %q: %w", f, err)
    		}
    		pubKeys = append(pubKeys, keys...)
    	}
    	config.ServiceAccountIssuerURL = opts.Authentication.ServiceAccounts.Issuers[0]
    	config.ServiceAccountJWKSURI = opts.Authentication.ServiceAccounts.JWKSURI
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  4. pkg/controlplane/apiserver/options/validation.go

    )
    
    func validateTokenRequest(options *Options) []error {
    	var errs []error
    
    	enableAttempted := options.ServiceAccountSigningKeyFile != "" ||
    		(len(options.Authentication.ServiceAccounts.Issuers) != 0 && options.Authentication.ServiceAccounts.Issuers[0] != "") ||
    		len(options.Authentication.APIAudiences) != 0
    
    	enableSucceeded := options.ServiceAccountIssuer != nil
    
    	if !enableAttempted {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 12:46:24 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  5. pilot/pkg/model/service.go

    					Port:     port.Port,
    					Protocol: port.Protocol,
    				}
    			} else {
    				out.Ports[i] = nil
    			}
    		}
    	}
    
    	if s.ServiceAccounts != nil {
    		out.ServiceAccounts = make([]string, len(s.ServiceAccounts))
    		copy(out.ServiceAccounts, s.ServiceAccounts)
    	}
    	out.ClusterVIPs = *s.ClusterVIPs.DeepCopy()
    	return &out
    }
    
    // Equals compares two service objects.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  6. pkg/registry/core/serviceaccount/storage/storage.go

    		NewListFunc:               func() runtime.Object { return &api.ServiceAccountList{} },
    		DefaultQualifiedResource:  api.Resource("serviceaccounts"),
    		SingularQualifiedResource: api.Resource("serviceaccount"),
    
    		CreateStrategy:      serviceaccount.Strategy,
    		UpdateStrategy:      serviceaccount.Strategy,
    		DeleteStrategy:      serviceaccount.Strategy,
    		ReturnDeletedObject: true,
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 21:15:10 UTC 2023
    - 3K bytes
    - Viewed (0)
  7. pilot/pkg/model/endpointshards_test.go

    				{Address: "10.172.0.2", ServiceAccount: "sa-vm1"},
    			},
    			expect: false,
    		},
    		{
    			name:     "deleted one endpoint with unique sa",
    			shardKey: c1Key,
    			endpoints: []*IstioEndpoint{
    				{Address: "10.172.0.1", ServiceAccount: "sa1"},
    			},
    			expect: true,
    		},
    		{
    			name:     "deleted one endpoint with duplicate sa",
    			shardKey: c1Key,
    			endpoints: []*IstioEndpoint{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 15:48:05 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  8. operator/cmd/mesh/testdata/operator/output/operator-dump.json

                    "pods",
                    "pods/proxy",
                    "pods/portforward",
                    "persistentvolumeclaims",
                    "secrets",
                    "services",
                    "serviceaccounts",
                    "resourcequotas"
                ],
                "verbs": [
                    "*"
                ]
            }
        ]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 10 01:35:08 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  9. plugin/pkg/admission/serviceaccount/admission.go

    	return false
    }
    
    // getServiceAccount returns the ServiceAccount for the given namespace and name if it exists
    func (s *Plugin) getServiceAccount(namespace string, name string) (*corev1.ServiceAccount, error) {
    	serviceAccount, err := s.serviceAccountLister.ServiceAccounts(namespace).Get(name)
    	if err == nil {
    		return serviceAccount, nil
    	}
    	if !errors.IsNotFound(err) {
    		return nil, err
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 12 17:49:30 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  10. manifests/charts/istio-operator/templates/clusterrole.yaml

      - ""
      resources:
      - configmaps
      - endpoints
      - events
      - namespaces
      - pods
      - pods/proxy
      - pods/portforward
      - persistentvolumeclaims
      - secrets
      - services
      - serviceaccounts
      - resourcequotas
      verbs:
      - '*'
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 1.9K bytes
    - Viewed (0)
Back to top