Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 245 for roleBindings (0.35 sec)

  1. staging/src/k8s.io/api/rbac/v1/types.go

    // +k8s:prerelease-lifecycle-gen:introduced=1.8
    
    // RoleBindingList is a collection of RoleBindings
    type RoleBindingList struct {
    	metav1.TypeMeta `json:",inline"`
    	// Standard object's metadata.
    	// +optional
    	metav1.ListMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`
    
    	// Items is a list of RoleBindings
    	Items []RoleBinding `json:"items" protobuf:"bytes,2,rep,name=items"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  2. pkg/apis/rbac/types.go

    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    // RoleBindingList is a collection of RoleBindings
    type RoleBindingList struct {
    	metav1.TypeMeta
    	// Standard object's metadata.
    	metav1.ListMeta
    
    	// Items is a list of roleBindings
    	Items []RoleBinding
    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    // RoleList is a collection of Roles
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 24 20:35:20 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  3. api/discovery/apis__rbac.authorization.k8s.io__v1.json

            "deletecollection",
            "get",
            "list",
            "patch",
            "update",
            "watch"
          ]
        },
        {
          "kind": "RoleBinding",
          "name": "rolebindings",
          "namespaced": true,
          "singularName": "rolebinding",
          "storageVersionHash": "eGsCzGH6b1g=",
          "verbs": [
            "create",
            "delete",
            "deletecollection",
            "get",
            "list",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 15 18:18:19 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/rbac/v1alpha1/types.go

    }
    
    // +genclient
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    // RoleBinding references a role, but does not contain it.  It can reference a Role in the same namespace or a ClusterRole in the global namespace.
    // It adds who information via Subjects and namespace information by which namespace it exists in.  RoleBindings in a given
    // namespace only have effect in that namespace.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 22:49:19 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  5. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/policy.go

    	// unauthenticated users.
    	rolebindings = append(rolebindings,
    		rbacv1helpers.NewClusterBinding("system:service-account-issuer-discovery").Groups(serviceaccount.AllServiceAccountsGroup).BindingOrDie(),
    	)
    
    	// Service accounts can read ClusterTrustBundle objects.
    	if utilfeature.DefaultFeatureGate.Enabled(features.ClusterTrustBundle) {
    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. cmd/kubeadm/app/phases/kubelet/config_test.go

    			},
    			Spec: v1.NodeSpec{},
    		}, nil
    	})
    	client.PrependReactor("create", "roles", func(action core.Action) (bool, runtime.Object, error) {
    		return true, nil, nil
    	})
    	client.PrependReactor("create", "rolebindings", func(action core.Action) (bool, runtime.Object, error) {
    		return true, nil, nil
    	})
    	client.PrependReactor("create", "configmaps", func(action core.Action) (bool, runtime.Object, error) {
    		return true, nil, nil
    	})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 02 12:34:30 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. plugin/pkg/auth/authorizer/rbac/rbac.go

    }
    
    func New(roles rbacregistryvalidation.RoleGetter, roleBindings rbacregistryvalidation.RoleBindingLister, clusterRoles rbacregistryvalidation.ClusterRoleGetter, clusterRoleBindings rbacregistryvalidation.ClusterRoleBindingLister) *RBACAuthorizer {
    	authorizer := &RBACAuthorizer{
    		authorizationRuleResolver: rbacregistryvalidation.NewDefaultRuleResolver(
    			roles, roleBindings, clusterRoles, clusterRoleBindings,
    		),
    	}
    	return authorizer
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 24 10:13:50 UTC 2022
    - 7.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/rbac/v1beta1/types.go

    // +k8s:prerelease-lifecycle-gen:replacement=rbac.authorization.k8s.io,v1,RoleBinding
    
    // RoleBinding references a role, but does not contain it.  It can reference a Role in the same namespace or a ClusterRole in the global namespace.
    // It adds who information via Subjects and namespace information by which namespace it exists in.  RoleBindings in a given
    // namespace only have effect in that namespace.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 22:49:19 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/rbac/v1/generated.proto

      optional RoleRef roleRef = 3;
    }
    
    // RoleBindingList is a collection of RoleBindings
    message RoleBindingList {
      // Standard object's metadata.
      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
    
      // Items is a list of RoleBindings
      repeated RoleBinding items = 2;
    }
    
    // RoleList is a collection of Roles
    message RoleList {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/rbac/v1/generated.proto

      // This field is immutable.
      optional RoleRef roleRef = 3;
    }
    
    // RoleBindingList is a collection of RoleBindings
    message RoleBindingList {
      // Standard object's metadata.
      // +optional
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
    
      // Items is a list of RoleBindings
      repeated RoleBinding items = 2;
    }
    
    // RoleList is a collection of Roles
    message RoleList {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 7.9K bytes
    - Viewed (0)
Back to top