Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 89 for tokenreview (0.2 sec)

  1. staging/src/k8s.io/api/authentication/v1/types.go

    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    // +k8s:prerelease-lifecycle-gen:introduced=1.6
    
    // TokenReview attempts to authenticate a token to a known user.
    // Note: TokenReview requests may be cached by the webhook token authenticator
    // plugin in the kube-apiserver.
    type TokenReview struct {
    	metav1.TypeMeta `json:",inline"`
    	// Standard object's metadata.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 10K bytes
    - Viewed (0)
  2. pkg/registry/authentication/rest/storage_authentication.go

    	storage := map[string]rest.Storage{}
    
    	// tokenreviews
    	if resource := "tokenreviews"; apiResourceConfigSource.ResourceEnabled(authenticationv1.SchemeGroupVersion.WithResource(resource)) {
    		tokenReviewStorage := tokenreview.NewREST(p.Authenticator, p.APIAudiences)
    		storage[resource] = tokenReviewStorage
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 02 12:50:40 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/webhook/webhook_v1_test.go

    			return
    		}
    
    		var review authenticationv1.TokenReview
    		bodyData, _ := ioutil.ReadAll(r.Body)
    		if err := json.Unmarshal(bodyData, &review); err != nil {
    			http.Error(w, fmt.Sprintf("failed to decode body: %v", err), http.StatusBadRequest)
    			return
    		}
    		// ensure we received the serialized tokenreview as expected
    		if review.APIVersion != "authentication.k8s.io/v1" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 18 00:47:42 UTC 2022
    - 19.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/webhook/webhook_v1beta1_test.go

    			return
    		}
    
    		var review authenticationv1beta1.TokenReview
    		bodyData, _ := ioutil.ReadAll(r.Body)
    		if err := json.Unmarshal(bodyData, &review); err != nil {
    			http.Error(w, fmt.Sprintf("failed to decode body: %v", err), http.StatusBadRequest)
    			return
    		}
    		// ensure we received the serialized tokenreview as expected
    		if review.APIVersion != "authentication.k8s.io/v1beta1" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 18 00:47:42 UTC 2022
    - 19.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/authentication/v1beta1/generated.pb.go

    func (m *TokenReview) Reset()      { *m = TokenReview{} }
    func (*TokenReview) ProtoMessage() {}
    func (*TokenReview) Descriptor() ([]byte, []int) {
    	return fileDescriptor_fdc2de40fd7f3b21, []int{3}
    }
    func (m *TokenReview) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    func (m *TokenReview) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    	b = b[:cap(b)]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 47.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/authentication/v1/zz_generated.prerelease-lifecycle.go

    // It is controlled by "k8s:prerelease-lifecycle-gen:introduced" tags in types.go.
    func (in *TokenReview) APILifecycleIntroduced() (major, minor int) {
    	return 1, 6
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/options/authentication_test.go

    				return opts
    			}(),
    			expectError:         false, // client building is valid, skipped cluster lookup
    			expectAuthenticator: true,
    			expectTokenErrors:   true, // client fails making tokenreview calls
    		},
    		{
    			name: "valid client, tolerate failed cluster info lookup",
    			options: func() *DelegatingAuthenticationOptions {
    				opts := NewDelegatingAuthenticationOptions()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 23 15:01:56 UTC 2019
    - 6.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/authentication/v1/generated.pb.go

    var xxx_messageInfo_TokenRequestStatus proto.InternalMessageInfo
    
    func (m *TokenReview) Reset()      { *m = TokenReview{} }
    func (*TokenReview) ProtoMessage() {}
    func (*TokenReview) Descriptor() ([]byte, []int) {
    	return fileDescriptor_d1237cbf54dccd53, []int{7}
    }
    func (m *TokenReview) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    func (m *TokenReview) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    	b = b[:cap(b)]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 72K bytes
    - Viewed (0)
  9. pkg/apis/authentication/register.go

    	// AddToScheme applies all the stored functions to the scheme.
    	AddToScheme = SchemeBuilder.AddToScheme
    )
    
    func addKnownTypes(scheme *runtime.Scheme) error {
    	scheme.AddKnownTypes(SchemeGroupVersion,
    		&TokenReview{},
    		&TokenRequest{},
    		&SelfSubjectReview{},
    	)
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 14 16:00:26 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/authentication/v1beta1/register.go

    )
    
    // Adds the list of known types to the given scheme.
    func addKnownTypes(scheme *runtime.Scheme) error {
    	scheme.AddKnownTypes(SchemeGroupVersion,
    		&SelfSubjectReview{},
    		&TokenReview{},
    	)
    	metav1.AddToGroupVersion(scheme, SchemeGroupVersion)
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 23:42:33 UTC 2023
    - 1.7K bytes
    - Viewed (0)
Back to top