Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 411 for audiences (0.14 sec)

  1. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1alpha1/zz_generated.deepcopy.go

    func (in *Issuer) DeepCopyInto(out *Issuer) {
    	*out = *in
    	if in.DiscoveryURL != nil {
    		in, out := &in.DiscoveryURL, &out.DiscoveryURL
    		*out = new(string)
    		**out = **in
    	}
    	if in.Audiences != nil {
    		in, out := &in.Audiences, &out.Audiences
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Issuer.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 00:57:24 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  2. pkg/controlplane/apiserver/options/validation.go

    	}
    
    	if enableAttempted && !enableSucceeded {
    		errs = append(errs, errors.New("--service-account-signing-key-file, --service-account-issuer, and --api-audiences should be specified together"))
    	}
    
    	return errs
    }
    
    func validateAPIPriorityAndFairness(options *Options) []error {
    	if options.Features.EnablePriorityAndFairness {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 12:46:24 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  3. security/pkg/server/ca/authenticate/kubeauth/kube_jwt_test.go

    				ctx = metadata.NewIncomingContext(ctx, tc.metadata)
    			}
    
    			tokenReview := &k8sauth.TokenReview{
    				Spec: k8sauth.TokenReviewSpec{
    					Token: tc.token,
    				},
    			}
    
    			tokenReview.Status.Audiences = []string{}
    			if tc.token != invlidToken {
    				tokenReview.Status.Authenticated = true
    			}
    			tokenReview.Status.User = k8sauth.UserInfo{
    				Username: "system:serviceaccount:default:example-pod-sa",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  4. pkg/test/framework/components/istio/ca.go

    		}
    		// Otherwise, its expired, load a new one
    	}
    	rt, err := c.CoreV1().ServiceAccounts(ns).CreateToken(context.Background(), sa,
    		&authenticationv1.TokenRequest{
    			Spec: authenticationv1.TokenRequestSpec{
    				Audiences:         []string{aud},
    				ExpirationSeconds: &saTokenExpiration,
    			},
    		}, metav1.CreateOptions{})
    	if err != nil {
    		return "", err
    	}
    	exp := rt.Status.ExpirationTimestamp.Time
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 16:59:05 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1beta1/zz_generated.conversion.go

    	out.URL = in.URL
    	if err := v1.Convert_Pointer_string_To_string(&in.DiscoveryURL, &out.DiscoveryURL, s); err != nil {
    		return err
    	}
    	out.CertificateAuthority = in.CertificateAuthority
    	out.Audiences = *(*[]string)(unsafe.Pointer(&in.Audiences))
    	out.AudienceMatchPolicy = apiserver.AudienceMatchPolicyType(in.AudienceMatchPolicy)
    	return nil
    }
    
    // Convert_v1beta1_Issuer_To_apiserver_Issuer is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 17:10:34 UTC 2024
    - 45.4K bytes
    - Viewed (0)
  6. pkg/registry/core/rest/storage_core_generic.go

    	EventTTL       time.Duration
    
    	ServiceAccountIssuer        serviceaccount.TokenGenerator
    	ServiceAccountMaxExpiration time.Duration
    	ExtendExpiration            bool
    
    	APIAudiences authenticator.Audiences
    
    	LoopbackClientConfig *restclient.Config
    	Informers            informers.SharedInformerFactory
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 21:15:10 UTC 2023
    - 6K bytes
    - Viewed (0)
  7. internal/config/identity/openid/jwt.go

    	// REQUIRED. Audience(s) that this ID Token is intended for.
    	// It MUST contain the OAuth 2.0 client_id of the Relying Party
    	// as an audience value. It MAY also contain identifiers for
    	// other audiences. In the general case, the aud value is an
    	// array of case sensitive strings. In the common special case
    	// when there is one audience, the aud value MAY be a single
    	// case sensitive
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 18:10:41 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1alpha1/zz_generated.conversion.go

    	out.URL = in.URL
    	if err := v1.Convert_Pointer_string_To_string(&in.DiscoveryURL, &out.DiscoveryURL, s); err != nil {
    		return err
    	}
    	out.CertificateAuthority = in.CertificateAuthority
    	out.Audiences = *(*[]string)(unsafe.Pointer(&in.Audiences))
    	out.AudienceMatchPolicy = apiserver.AudienceMatchPolicyType(in.AudienceMatchPolicy)
    	return nil
    }
    
    // Convert_v1alpha1_Issuer_To_apiserver_Issuer is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 00:57:24 UTC 2024
    - 50K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/apis/apiserver/zz_generated.deepcopy.go

    }
    
    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *Issuer) DeepCopyInto(out *Issuer) {
    	*out = *in
    	if in.Audiences != nil {
    		in, out := &in.Audiences, &out.Audiences
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Issuer.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 18 20:54:24 UTC 2023
    - 21.6K bytes
    - Viewed (0)
  10. pkg/config/security/security_test.go

    		},
    		{
    			key:    "source.principal",
    			values: []string{"value"},
    		},
    		{
    			key:    "request.auth.principal",
    			values: []string{"value"},
    		},
    		{
    			key:    "request.auth.audiences",
    			values: []string{"value"},
    		},
    		{
    			key:    "request.auth.presenter",
    			values: []string{"value"},
    		},
    		{
    			key:    "request.auth.claims[id]",
    			values: []string{"123"},
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 20 01:58:53 UTC 2024
    - 8.3K bytes
    - Viewed (0)
Back to top