Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 69 of 69 for selfsubjectreview (0.39 sec)

  1. CHANGELOG/CHANGELOG-1.30.md

    - ValidatingAdmissionPolicy now exclude TokenReview, SelfSubjectReview, LocalSubjectAccessReview, and SubjectAccessReview from all versions of authentication.k8s.io and authorization.k8s.io group. ([#123543](https://github.com/kubernetes/kubernetes/pull/123543), [@jiahuif](https://github.com/jiahuif))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  2. 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"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 23:31:18 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  3. pkg/controlplane/storageversionhashdata/data.go

    )
    
    // NoStorageVersionHash lists resources that legitimately with empty storage
    // 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",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 20:14:51 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.28.md

      or the `KUBE-MARK-MASQ` chain (which is now only created by kube-proxy). ([#119374](https://github.com/kubernetes/kubernetes/pull/119374), [@danwinship](https://github.com/danwinship))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.27.md

    - Promoted `CronJobTimeZone` feature to GA ([#115904](https://github.com/kubernetes/kubernetes/pull/115904), [@soltysh](https://github.com/soltysh))
    - Promoted `SelfSubjectReview` to Beta ([#116274](https://github.com/kubernetes/kubernetes/pull/116274), [@nabokihms](https://github.com/nabokihms)) [SIG API Machinery, Auth, CLI and Testing]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  6. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/testdata/cluster-roles.yaml

        - authorization.k8s.io
        resources:
        - selfsubjectaccessreviews
        - selfsubjectrulesreviews
        verbs:
        - create
      - apiGroups:
        - authentication.k8s.io
        resources:
        - selfsubjectreviews
        verbs:
        - create
    - apiVersion: rbac.authorization.k8s.io/v1
      kind: ClusterRole
      metadata:
        annotations:
          rbac.authorization.kubernetes.io/autoupdate: "true"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 08:11:08 UTC 2023
    - 24.1K bytes
    - Viewed (0)
  7. pkg/generated/openapi/zz_generated.openapi.go

    		"k8s.io/api/authentication/v1alpha1.SelfSubjectReview":                                                  schema_k8sio_api_authentication_v1alpha1_SelfSubjectReview(ref),
    		"k8s.io/api/authentication/v1alpha1.SelfSubjectReviewStatus":                                            schema_k8sio_api_authentication_v1alpha1_SelfSubjectReviewStatus(ref),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  8. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/policy.go

    		rbacv1helpers.NewRule("create").Groups(authorizationGroup).Resources("selfsubjectaccessreviews", "selfsubjectrulesreviews").RuleOrDie(),
    		rbacv1helpers.NewRule("create").Groups(authenticationGroup).Resources("selfsubjectreviews").RuleOrDie(),
    	}
    
    	roles = append(roles, []rbacv1.ClusterRole{
    		{
    			// a role which provides minimal resource access to allow a "normal" user to learn information about themselves
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 19:25:10 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.26.md

    - Add auth API to get self subject attributes (new selfsubjectreviews API is added). 
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 16:24:51 UTC 2024
    - 425.7K bytes
    - Viewed (0)
Back to top