Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 424 for serviceAccounts (0.6 sec)

  1. pilot/pkg/networking/grpcgen/cds.go

    		// TODO support this
    	case networking.ClientTLSSettings_MUTUAL:
    		// TODO support this
    	case networking.ClientTLSSettings_ISTIO_MUTUAL:
    		tlsCtx := buildUpstreamTLSContext(b.push.ServiceAccounts(b.hostname, b.svc.Attributes.Namespace))
    		c.TransportSocket = &core.TransportSocket{
    			Name:       transportSocketName,
    			ConfigType: &core.TransportSocket_TypedConfig{TypedConfig: protoconv.MessageToAny(tlsCtx)},
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. pilot/pkg/xds/cds_test.go

    	}{
    		{
    			name:    "Kubernetes service and EDS ServiceEntry",
    			objs:    []runtime.Object{service, pod, endpoint},
    			configs: []config.Config{dr, seEDS},
    			// The ServiceEntry rule will "win" the pushContext.ServiceAccounts.
    			// However, the Service will be processed first into a cluster. Since its not external, we do not add the SANs automatically
    			sans: nil,
    		},
    		{
    			name:    "Kubernetes service and NONE ServiceEntry",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 02:06:39 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  3. pkg/config/schema/gvr/resources.gen.go

    	Service                        = schema.GroupVersionResource{Group: "", Version: "v1", Resource: "services"}
    	ServiceAccount                 = schema.GroupVersionResource{Group: "", Version: "v1", Resource: "serviceaccounts"}
    	ServiceEntry                   = schema.GroupVersionResource{Group: "networking.istio.io", Version: "v1alpha3", Resource: "serviceentries"}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 17:37:32 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  4. pkg/config/schema/metadata.yaml

        builtin: true
        specless: true
        proto: "k8s.io.api.core.v1.ConfigMap"
        protoPackage: "k8s.io/api/core/v1"
    
      - kind: "ServiceAccount"
        plural: "serviceaccounts"
        version: "v1"
        builtin: true
        specless: true
        proto: "k8s.io.api.core.v1.ServiceAccount"
        protoPackage: "k8s.io/api/core/v1"
    
      - kind: "CertificateSigningRequest"
        plural: "certificatesigningrequests"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 17:37:32 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  5. 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)
  6. pkg/test/framework/components/namespace/kube.go

    	if s.Image.PullSecret != "" {
    		if err := c.ApplyYAMLFiles(n.name, s.Image.PullSecret); err != nil {
    			return err
    		}
    		err := retry.UntilSuccess(func() error {
    			_, err := c.Kube().CoreV1().ServiceAccounts(n.name).Patch(context.TODO(),
    				"default",
    				types.JSONPatchType,
    				[]byte(`[{"op": "add", "path": "/imagePullSecrets", "value": [{"name": "test-gcr-secret"}]}]`),
    				metav1.PatchOptions{})
    			return err
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 9K bytes
    - Viewed (0)
  7. pkg/serviceaccount/jwt_test.go

    }
    
    func generateECDSAToken(t *testing.T, iss string, serviceAccount *v1.ServiceAccount, ecdsaSecret *v1.Secret) string {
    	t.Helper()
    
    	ecdsaGenerator, err := serviceaccount.JWTTokenGenerator(iss, getPrivateKey(ecdsaPrivateKey))
    	if err != nil {
    		t.Fatalf("error making generator: %v", err)
    	}
    	ecdsaToken, err := ecdsaGenerator.GenerateToken(serviceaccount.LegacyClaims(*serviceAccount, *ecdsaSecret))
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 27 22:16:08 UTC 2024
    - 17K bytes
    - Viewed (0)
  8. 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)
  9. manifests/charts/gateways/istio-ingress/values.yaml

        # Default behavior: latest images will be Always else IfNotPresent.
        imagePullPolicy: ""
    
        # ImagePullSecrets for all ServiceAccount, list of secrets in the same namespace
        # to use for pulling any images in pods that reference this ServiceAccount.
        # For components that don't use ServiceAccounts (i.e. grafana, servicegraph, tracing)
        # ImagePullSecrets will be added to the corresponding Deployment(StatefulSet) objects.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 13K bytes
    - Viewed (0)
  10. cmd/admin-handlers-users.go

    				return
    			}
    		case allSvcAcctsFile:
    			serviceAccounts := make(map[string]UserIdentity)
    			err := globalIAMSys.store.loadUsers(ctx, svcUser, serviceAccounts)
    			if err != nil {
    				writeErrorResponse(ctx, w, exportError(ctx, err, iamFile, ""), r.URL)
    				return
    			}
    			svcAccts := make(map[string]madmin.SRSvcAccCreate)
    			for user, acc := range serviceAccounts {
    				if user == siteReplicatorSvcAcc {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 17:19:04 UTC 2024
    - 78.6K bytes
    - Viewed (0)
Back to top