Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 178 for service_account (0.21 sec)

  1. 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)
  2. operator/cmd/mesh/manifest-generate_test.go

    			diffSelect: "Deployment:*:istiod, Service:*:istiod,MutatingWebhookConfiguration:*:istio-sidecar-injector,ServiceAccount:*:istio-reader-service-account",
    			fileSelect: []string{
    				"templates/deployment.yaml", "templates/mutatingwebhook.yaml",
    				"templates/service.yaml", "templates/reader-serviceaccount.yaml",
    			},
    		},
    		// TODO https://github.com/istio/istio/issues/22347 this is broken for overriding things to default value
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  3. cni/test/install_cni.go

    		cp(wd+cniConfSubDir+f, tempCNIConfDir+"/"+destFilenm, t)
    	}
    	for _, f := range ls(wd+k8sSvcAcctSubDir, t) {
    		t.Logf("Copying %v into temp k8s serviceaccount dir %v", f, tempK8sSvcAcctDir)
    		cp(wd+k8sSvcAcctSubDir+f, tempK8sSvcAcctDir+"/"+f, t)
    	}
    	t.Logf("Finished pre-populating working dirs")
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  4. security/pkg/nodeagent/cache/secretcache.go

    	logPrefix := cacheLogPrefix(resourceName)
    
    	csrHostName := &spiffe.Identity{
    		TrustDomain:    sc.configOptions.TrustDomain,
    		Namespace:      sc.configOptions.WorkloadNamespace,
    		ServiceAccount: sc.configOptions.ServiceAccount,
    	}
    
    	cacheLog.Debugf("constructed host name for CSR: %s", csrHostName.String())
    	options := pkiutil.CertOptions{
    		Host:       csrHostName.String(),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 04 08:29:46 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  5. cni/pkg/nodeagent/ztunnelserver.go

    	namespace := pod.ObjectMeta.Namespace
    	name := pod.ObjectMeta.Name
    	svcAccount := pod.Spec.ServiceAccountName
    	return &zdsapi.WorkloadInfo{
    		Namespace:      namespace,
    		Name:           name,
    		ServiceAccount: svcAccount,
    	}
    }
    
    func (z *ztunnelServer) PodAdded(ctx context.Context, pod *v1.Pod, netns Netns) error {
    	latestConn := z.conns.LatestConn()
    	if latestConn == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 22:07:03 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  6. pilot/pkg/xds/sds.go

    	isAuthorized := func() bool {
    		if authzResult != nil {
    			return *authzResult
    		}
    		res := false
    		if err := secrets.Authorize(proxy.VerifiedIdentity.ServiceAccount, proxy.VerifiedIdentity.Namespace); err == nil {
    			res = true
    		} else {
    			authzError = err
    		}
    		authzResult = &res
    		return res
    	}
    
    	// There are 4 cases of secret reference
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 23:04:36 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  7. 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)
  8. staging/src/k8s.io/api/testdata/HEAD/apps.v1.ReplicaSet.yaml

            windowsOptions:
              gmsaCredentialSpec: gmsaCredentialSpecValue
              gmsaCredentialSpecName: gmsaCredentialSpecNameValue
              hostProcess: true
              runAsUserName: runAsUserNameValue
          serviceAccount: serviceAccountValue
          serviceAccountName: serviceAccountNameValue
          setHostnameAsFQDN: true
          shareProcessNamespace: true
          subdomain: subdomainValue
          terminationGracePeriodSeconds: 4
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/HEAD/apps.v1.DaemonSet.yaml

            windowsOptions:
              gmsaCredentialSpec: gmsaCredentialSpecValue
              gmsaCredentialSpecName: gmsaCredentialSpecNameValue
              hostProcess: true
              runAsUserName: runAsUserNameValue
          serviceAccount: serviceAccountValue
          serviceAccountName: serviceAccountNameValue
          setHostnameAsFQDN: true
          shareProcessNamespace: true
          subdomain: subdomainValue
          terminationGracePeriodSeconds: 4
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/v1.30.0/apps.v1beta2.DaemonSet.yaml

            windowsOptions:
              gmsaCredentialSpec: gmsaCredentialSpecValue
              gmsaCredentialSpecName: gmsaCredentialSpecNameValue
              hostProcess: true
              runAsUserName: runAsUserNameValue
          serviceAccount: serviceAccountValue
          serviceAccountName: serviceAccountNameValue
          setHostnameAsFQDN: true
          shareProcessNamespace: true
          subdomain: subdomainValue
          terminationGracePeriodSeconds: 4
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 35K bytes
    - Viewed (0)
Back to top