Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 36 for tokenreview (0.24 sec)

  1. common-protos/k8s.io/api/authentication/v1/generated.proto

      optional k8s.io.apimachinery.pkg.apis.meta.v1.Time expirationTimestamp = 2;
    }
    
    // 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.
    message TokenReview {
      // Standard object's metadata.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. security/pkg/server/ca/authenticate/kubeauth/kube_jwt.go

    	"k8s.io/client-go/kubernetes"
    
    	"istio.io/istio/pkg/cluster"
    	"istio.io/istio/pkg/config/mesh"
    	"istio.io/istio/pkg/security"
    	"istio.io/istio/pkg/spiffe"
    	"istio.io/istio/security/pkg/k8s/tokenreview"
    )
    
    const (
    	KubeJWTAuthenticatorType = "KubeJWTAuthenticator"
    
    	clusterIDMeta = "clusterid"
    )
    
    type RemoteKubeClientGetter func(clusterID cluster.ID) kubernetes.Interface
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 5K bytes
    - Viewed (0)
  7. api/discovery/aggregated_v2beta1.json

                  ]
                },
                {
                  "resource": "tokenreviews",
                  "responseKind": {
                    "group": "",
                    "kind": "TokenReview",
                    "version": ""
                  },
                  "scope": "Cluster",
                  "singularResource": "tokenreview",
                  "verbs": [
                    "create"
                  ]
                }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  8. api/discovery/aggregated_v2.json

                  ]
                },
                {
                  "resource": "tokenreviews",
                  "responseKind": {
                    "group": "",
                    "kind": "TokenReview",
                    "version": ""
                  },
                  "scope": "Cluster",
                  "singularResource": "tokenreview",
                  "verbs": [
                    "create"
                  ]
                }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 12 17:29:14 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  9. pkg/kubeapiserver/options/authentication.go

    		fs.StringVar(&o.WebHook.Version, "authentication-token-webhook-version", o.WebHook.Version, ""+
    			"The API version of the authentication.k8s.io TokenReview to send to and expect from the webhook.")
    
    		fs.DurationVar(&o.WebHook.CacheTTL, "authentication-token-webhook-cache-ttl", o.WebHook.CacheTTL,
    			"The duration to cache responses from the webhook token authenticator.")
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 22:40:22 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  10. cmd/kubelet/app/options/options.go

    		"of system:anonymous, and a group name of system:unauthenticated.")
    	fs.BoolVar(&c.Authentication.Webhook.Enabled, "authentication-token-webhook", c.Authentication.Webhook.Enabled, ""+
    		"Use the TokenReview API to determine authentication for bearer tokens.")
    	fs.DurationVar(&c.Authentication.Webhook.CacheTTL.Duration, "authentication-token-webhook-cache-ttl", c.Authentication.Webhook.CacheTTL.Duration, ""+
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:05 UTC 2024
    - 41.6K bytes
    - Viewed (0)
Back to top