Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for tokenreview (0.18 sec)

  1. api/openapi-spec/v3/apis__authentication.k8s.io__v1_openapi.json

    identifiers chosen by the authenticator that are compatible with both the TokenReview and token. An identifier is any identifier in the intersection of the TokenReviewSpec audiences and the token's audiences. A client of the TokenReview API that sets the spec.audiences field should validate that a compatible audience identifier is returned in the status.audiences field to ensure that the TokenReview server is audience aware. If a TokenReview returns an empty status.audience field where status.authenticated...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:25 UTC 2023
    - 41.5K 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. samples/security/spire/spire-quickstart.yaml

    kind: ClusterRole
    apiVersion: rbac.authorization.k8s.io/v1
    metadata:
      name: spire-server-cluster-role
    rules:
      # allow TokenReview requests (to verify service account tokens for PSAT
      # attestation)
    - apiGroups: ["authentication.k8s.io"]
      resources: ["tokenreviews"]
      verbs: ["get", "create"]
    - apiGroups: [""]
      resources: ["nodes"]
      verbs: ["get"]
    
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 12 16:12:42 UTC 2023
    - 32.2K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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