Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for tokenreview (0.23 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. 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)
  3. 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)
  4. 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)
  5. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/policy.go

    func NodeRules() []rbacv1.PolicyRule {
    	nodePolicyRules := []rbacv1.PolicyRule{
    		// Needed to check API access.  These creates are non-mutating
    		rbacv1helpers.NewRule("create").Groups(authenticationGroup).Resources("tokenreviews").RuleOrDie(),
    		rbacv1helpers.NewRule("create").Groups(authorizationGroup).Resources("subjectaccessreviews", "localsubjectaccessreviews").RuleOrDie(),
    
    		// Needed to build serviceLister, to populate env vars for services
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 19:25:10 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  6. samples/addons/kiali.yaml

      resources:
      - projects
      verbs:
      - get
    - apiGroups: ["route.openshift.io"]
      resources:
      - routes
      verbs:
      - get
    - apiGroups: ["authentication.k8s.io"]
      resources:
      - tokenreviews
      verbs:
      - create
    - apiGroups: ["oauth.openshift.io"]
      resources:
      - oauthclients
      resourceNames:
      - kiali-istio-system
      verbs:
      - get
    ...
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  7. pkg/kubelet/apis/config/types.go

    	ClientCAFile string
    }
    
    // KubeletWebhookAuthentication contains settings related to webhook authentication
    type KubeletWebhookAuthentication struct {
    	// enabled allows bearer token authentication backed by the tokenreviews.authentication.k8s.io API
    	Enabled bool
    	// cacheTTL enables caching of authentication results
    	CacheTTL metav1.Duration
    }
    
    // KubeletAnonymousAuthentication enables anonymous requests to the kubelet server.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 35.1K bytes
    - Viewed (0)
Back to top