Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 52 for tokenreview (0.16 sec)

  1. 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)
  2. staging/src/k8s.io/api/authentication/v1/register.go

    	AddToScheme        = localSchemeBuilder.AddToScheme
    )
    
    // Adds the list of known types to the given scheme.
    func addKnownTypes(scheme *runtime.Scheme) error {
    	scheme.AddKnownTypes(SchemeGroupVersion,
    		&TokenReview{},
    		&TokenRequest{},
    		&SelfSubjectReview{},
    	)
    	metav1.AddToGroupVersion(scheme, SchemeGroupVersion)
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 02 12:50:40 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  3. 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)
  4. staging/src/k8s.io/apimachinery/pkg/api/meta/testrestmapper/test_restmapper.go

    	{Group: "admissionregistration.k8s.io", Kind: "ValidatingWebhookConfiguration"}: true,
    	{Group: "admissionregistration.k8s.io", Kind: "MutatingWebhookConfiguration"}:   true,
    
    	{Group: "authentication.k8s.io", Kind: "TokenReview"}: true,
    
    	{Group: "authorization.k8s.io", Kind: "SubjectAccessReview"}:     true,
    	{Group: "authorization.k8s.io", Kind: "SelfSubjectAccessReview"}: true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 06 09:07:02 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  5. manifests/charts/istio-control/istio-discovery/templates/reader-clusterrole.yaml

        resources: ["serviceimports"]
        verbs: ["get", "list", "watch"]
      - apiGroups: ["apps"]
        resources: ["replicasets"]
        verbs: ["get", "list", "watch"]
      - apiGroups: ["authentication.k8s.io"]
        resources: ["tokenreviews"]
        verbs: ["create"]
      - apiGroups: ["authorization.k8s.io"]
        resources: ["subjectaccessreviews"]
        verbs: ["create"]
    {{- if .Values.global.externalIstiod }}
      - apiGroups: [""]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. manifests/charts/istiod-remote/templates/reader-clusterrole.yaml

        resources: ["serviceimports"]
        verbs: ["get", "list", "watch"]
      - apiGroups: ["apps"]
        resources: ["replicasets"]
        verbs: ["get", "list", "watch"]
      - apiGroups: ["authentication.k8s.io"]
        resources: ["tokenreviews"]
        verbs: ["create"]
      - apiGroups: ["authorization.k8s.io"]
        resources: ["subjectaccessreviews"]
        verbs: ["create"]
    {{- if .Values.global.externalIstiod }}
      - apiGroups: [""]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  7. pkg/quota/v1/install/registry.go

    	{Group: "", Resource: "bindings"}:                                       {},
    	{Group: "", Resource: "componentstatuses"}:                              {},
    	{Group: authentication.GroupName, Resource: "tokenreviews"}:             {},
    	{Group: authentication.GroupName, Resource: "selfsubjectreviews"}:       {},
    	{Group: authorization.GroupName, Resource: "subjectaccessreviews"}:      {},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 14 16:00:26 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  8. cluster/addons/cloud-controller-manager/cloud-node-controller-role.yaml

      verbs:
      - patch
      - update
    - apiGroups:
      - ""
      resources:
      - secrets
      verbs:
      - create
      - delete
      - get
      - update
    - apiGroups:
      - "authentication.k8s.io"
      resources:
      - tokenreviews
      verbs:
      - create
    - apiGroups:
      - "*"
      resources:
      - "*"
      verbs:
      - list
      - watch
    - apiGroups:
      - ""
      resources:
      - serviceaccounts/token
      verbs:
      - create
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 08 14:40:04 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  9. pkg/kubeapiserver/admission/exclusion/resources.go

    var excluded = []schema.GroupResource{
    	// BEGIN interception of these non-persisted resources may break the cluster
    	{Group: "authentication.k8s.io", Resource: "selfsubjectreviews"},
    	{Group: "authentication.k8s.io", Resource: "tokenreviews"},
    	{Group: "authorization.k8s.io", Resource: "localsubjectaccessreviews"},
    	{Group: "authorization.k8s.io", Resource: "selfsubjectaccessreviews"},
    	{Group: "authorization.k8s.io", Resource: "selfsubjectrulesreviews"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 23:31:18 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  10. pkg/controlplane/storageversionhashdata/data.go

    // version hash.
    var NoStorageVersionHash = sets.NewString(
    	"v1/bindings",
    	"v1/componentstatuses",
    	"authentication.k8s.io/v1/selfsubjectreviews",
    	"authentication.k8s.io/v1/tokenreviews",
    	"authorization.k8s.io/v1/localsubjectaccessreviews",
    	"authorization.k8s.io/v1/selfsubjectaccessreviews",
    	"authorization.k8s.io/v1/selfsubjectrulesreviews",
    	"authorization.k8s.io/v1/subjectaccessreviews",
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 20:14:51 UTC 2024
    - 4.9K bytes
    - Viewed (0)
Back to top