Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 61 for serviceAccount (0.22 sec)

  1. pkg/istio-agent/agent.go

    	"istio.io/istio/pkg/security"
    	"istio.io/istio/pkg/wasm"
    	"istio.io/istio/security/pkg/nodeagent/cache"
    )
    
    const (
    	// Location of K8S CA root.
    	k8sCAPath = "./var/run/secrets/kubernetes.io/serviceaccount/ca.crt"
    	// Location of K8s CA root mounted by istio. This is to avoid issues when service account automount is disabled.
    	k8sCAIstioMountedPath = "./var/run/secrets/istio/kubernetes/ca.crt"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/kube/conversion_test.go

    }
    
    func TestServiceConversion(t *testing.T) {
    	serviceName := "service1"
    	namespace := "default"
    	saA := "serviceaccountA"
    	saB := "serviceaccountB"
    	saC := "spiffe://accounts.google.com/serviceaccountC@cloudservices.gserviceaccount.com"
    	saD := "spiffe://accounts.google.com/serviceaccountD@developer.gserviceaccount.com"
    
    	ip := "10.0.0.1"
    
    	tnow := time.Now()
    	localSvc := corev1.Service{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/storage/v1/types.go

    	// will pass the tokens in VolumeContext in the CSI NodePublishVolume calls.
    	// The CSI driver should parse and validate the following VolumeContext:
    	// "csi.storage.k8s.io/serviceAccount.tokens": {
    	//   "<audience>": {
    	//     "token": <token>,
    	//     "expirationTimestamp": <expiration timestamp in RFC3339>,
    	//   },
    	//   ...
    	// }
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 32K bytes
    - Viewed (0)
  4. 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)
  5. cmd/admin-handlers-idp-ldap.go

    	}
    	if listType == "" || listType == "svcacc-only" {
    		serviceAccounts, err = globalIAMSys.ListServiceAccounts(ctx, targetAccount)
    		if err != nil {
    			writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, err), r.URL)
    			return
    		}
    	}
    
    	var serviceAccountList []madmin.ServiceAccountInfo
    	var stsKeyList []madmin.ServiceAccountInfo
    
    	for _, svc := range serviceAccounts {
    		expiryTime := svc.Expiration
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 03 19:58:48 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  6. OWNERS_ALIASES

        - deads2k
        - liggitt
        - tallclair
      sig-auth-policy-reviewers:
        - deads2k
        - liggitt
        - tallclair
        - krmayankk
      sig-auth-serviceaccounts-approvers:
        - deads2k
        - enj
        - liggitt
        - mikedanese
      sig-auth-serviceaccounts-reviewers:
        - deads2k
        - enj
        - liggitt
        - mikedanese
      # SIG Release
      release-engineering-approvers:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 23:08:03 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/cluster_builder.go

    		policy:         trafficPolicy,
    		port:           port,
    		clusterMode:    clusterMode,
    		direction:      model.TrafficDirectionOutbound,
    	}
    
    	if clusterMode == DefaultClusterMode {
    		opts.serviceAccounts = serviceAccounts
    		opts.istioMtlsSni = model.BuildDNSSrvSubsetKey(model.TrafficDirectionOutbound, "", service.Hostname, port.Port)
    		opts.meshExternal = service.MeshExternal
    		opts.serviceRegistry = service.Attributes.ServiceRegistry
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  8. pkg/controlplane/apiserver/options/options_test.go

    			},
    			BootstrapToken: &kubeoptions.BootstrapTokenAuthenticationOptions{},
    			OIDC:           s.Authentication.OIDC,
    			RequestHeader:  &apiserveroptions.RequestHeaderAuthenticationOptions{},
    			ServiceAccounts: &kubeoptions.ServiceAccountAuthenticationOptions{
    				Lookup:           true,
    				ExtendExpiration: true,
    			},
    			TokenFile:            &kubeoptions.TokenFileAuthenticationOptions{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  9. cmd/kube-apiserver/app/options/options_test.go

    				},
    				BootstrapToken: &kubeoptions.BootstrapTokenAuthenticationOptions{},
    				OIDC:           s.Authentication.OIDC,
    				RequestHeader:  &apiserveroptions.RequestHeaderAuthenticationOptions{},
    				ServiceAccounts: &kubeoptions.ServiceAccountAuthenticationOptions{
    					Lookup:           true,
    					ExtendExpiration: true,
    				},
    				TokenFile:            &kubeoptions.TokenFileAuthenticationOptions{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/aggregate/controller_test.go

    	discovery1 := memory.NewServiceDiscovery(mock.HelloService)
    
    	discovery2 := memory.NewServiceDiscovery(mock.MakeService(mock.ServiceArgs{
    		Hostname:        mock.HelloService.Hostname,
    		Address:         "10.1.2.0",
    		ServiceAccounts: []string{},
    		ClusterID:       "cluster-2",
    	}), mock.WorldService)
    
    	registry1 := serviceregistry.Simple{
    		ProviderID:          provider.Kubernetes,
    		ClusterID:           "cluster-1",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 06:28:11 UTC 2024
    - 14.5K bytes
    - Viewed (0)
Back to top