Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 245 for roleBindings (0.15 sec)

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

    }
    
    func (RoleBinding) SwaggerDoc() map[string]string {
    	return map_RoleBinding
    }
    
    var map_RoleBindingList = map[string]string{
    	"":         "RoleBindingList is a collection of RoleBindings",
    	"metadata": "Standard object's metadata.",
    	"items":    "Items is a list of RoleBindings",
    }
    
    func (RoleBindingList) SwaggerDoc() map[string]string {
    	return map_RoleBindingList
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 24 20:35:20 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/rbac/v1beta1/generated.proto

    }
    
    // RoleBindingList is a collection of RoleBindings
    // Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 RoleBindingList, and will no longer be served in v1.22.
    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;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  3. plugin/pkg/auth/authorizer/rbac/rbac_test.go

    		roles               []*rbacv1.Role
    		roleBindings        []*rbacv1.RoleBinding
    		clusterRoles        []*rbacv1.ClusterRole
    		clusterRoleBindings []*rbacv1.ClusterRoleBinding
    
    		shouldPass []authorizer.Attributes
    		shouldFail []authorizer.Attributes
    	}{
    		{
    			clusterRoles: []*rbacv1.ClusterRole{
    				newClusterRole("admin", newRule("*", "*", "*", "*")),
    			},
    			roleBindings: []*rbacv1.RoleBinding{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 24 15:14:54 UTC 2019
    - 21.1K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/rbac/v1alpha1/generated.proto

    }
    
    // RoleBindingList is a collection of RoleBindings
    // Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 RoleBindingList, and will no longer be served in v1.22.
    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;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/rbac/v1beta1/types_swagger_doc_generated.go

    var map_RoleBinding = map[string]string{
    	"":         "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. Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 RoleBinding, and will no longer be served in v1.22.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  6. pkg/registry/rbac/rolebinding/storage/storage.go

    		NewListFunc:               func() runtime.Object { return &rbac.RoleBindingList{} },
    		DefaultQualifiedResource:  rbac.Resource("rolebindings"),
    		SingularQualifiedResource: rbac.Resource("rolebinding"),
    
    		CreateStrategy: rolebinding.Strategy,
    		UpdateStrategy: rolebinding.Strategy,
    		DeleteStrategy: rolebinding.Strategy,
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:13 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  7. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/namespace_policy.go

    }
    
    func addNamespaceRoleBinding(namespace string, roleBinding rbacv1.RoleBinding) {
    	if !strings.HasPrefix(namespace, "kube-") {
    		klog.Fatalf(`rolebindings can only be bootstrapped into reserved namespaces starting with "kube-", not %q`, namespace)
    	}
    
    	existingRoleBindings := namespaceRoleBindings[namespace]
    	for _, existingRoleBinding := range existingRoleBindings {
    		if roleBinding.Name == existingRoleBinding.Name {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 16 11:54:27 UTC 2020
    - 7.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/rbac/v1alpha1/types_swagger_doc_generated.go

    var map_RoleBinding = map[string]string{
    	"":         "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. Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 RoleBinding, and will no longer be served in v1.22.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/rbac/v1beta1/generated.proto

    }
    
    // RoleBindingList is a collection of RoleBindings
    // Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 RoleBindingList, and will no longer be served in v1.22.
    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;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/rbac/v1alpha1/generated.proto

    }
    
    // RoleBindingList is a collection of RoleBindings
    // Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 RoleBindingList, and will no longer be served in v1.22.
    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;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 8.8K bytes
    - Viewed (0)
Back to top