Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 35 for clusterRoleBindings (0.26 sec)

  1. pkg/apis/rbac/types.go

    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    // ClusterRoleBindingList is a collection of ClusterRoleBindings
    type ClusterRoleBindingList struct {
    	metav1.TypeMeta
    	// Standard object's metadata.
    	metav1.ListMeta
    
    	// Items is a list of ClusterRoleBindings
    	Items []ClusterRoleBinding
    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    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. manifests/charts/istio-operator/templates/clusterrole.yaml

      verbs:
      - get
      - create
      - update
    - apiGroups:
      - policy
      resources:
      - poddisruptionbudgets
      verbs:
      - '*'
    - apiGroups:
      - rbac.authorization.k8s.io
      resources:
      - clusterrolebindings
      - clusterroles
      - roles
      - rolebindings
      verbs:
      - '*'
    - apiGroups:
      - coordination.k8s.io
      resources:
      - leases
      verbs:
      - get
      - create
      - update
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/util/apiclient/init_dryrun.go

    // Need to handle these routes in a special manner:
    // - GET /default/services/kubernetes -- must return a valid Service
    // - GET /clusterrolebindings/system:nodes -- can safely return a NotFound error
    // - GET /nodes/<node-name> -- must return a valid Node
    // - ...all other, unknown GETs/LISTs will be logged
    type InitDryRunGetter struct {
    	controlPlaneName string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 07:17:50 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  4. pkg/registry/rbac/clusterrolebinding/storage/storage.go

    		NewFunc:                   func() runtime.Object { return &rbac.ClusterRoleBinding{} },
    		NewListFunc:               func() runtime.Object { return &rbac.ClusterRoleBindingList{} },
    		DefaultQualifiedResource:  rbac.Resource("clusterrolebindings"),
    		SingularQualifiedResource: rbac.Resource("clusterrolebinding"),
    
    		CreateStrategy: clusterrolebinding.Strategy,
    		UpdateStrategy: clusterrolebinding.Strategy,
    		DeleteStrategy: clusterrolebinding.Strategy,
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:13 UTC 2022
    - 2K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/rbac/v1alpha1/generated.proto

    }
    
    // ClusterRoleBindingList is a collection of ClusterRoleBindings.
    // Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 ClusterRoleBindings, and will no longer be served in v1.22.
    message ClusterRoleBindingList {
      // Standard object's metadata.
      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
    
      // Items is a list of ClusterRoleBindings
      repeated ClusterRoleBinding 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)
  6. staging/src/k8s.io/api/rbac/v1alpha1/generated.proto

    }
    
    // ClusterRoleBindingList is a collection of ClusterRoleBindings.
    // Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 ClusterRoleBindings, and will no longer be served in v1.22.
    message ClusterRoleBindingList {
      // Standard object's metadata.
      // +optional
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
    
      // Items is a list of ClusterRoleBindings
      repeated ClusterRoleBinding 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)
  7. staging/src/k8s.io/api/rbac/v1alpha1/types_swagger_doc_generated.go

    }
    
    var map_ClusterRoleBindingList = map[string]string{
    	"":         "ClusterRoleBindingList is a collection of ClusterRoleBindings. Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 ClusterRoleBindings, and will no longer be served in v1.22.",
    	"metadata": "Standard object's metadata.",
    	"items":    "Items is a list of ClusterRoleBindings",
    }
    
    func (ClusterRoleBindingList) SwaggerDoc() map[string]string {
    	return map_ClusterRoleBindingList
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  8. plugin/pkg/auth/authorizer/rbac/rbac.go

    	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)
  9. pkg/registry/rbac/clusterrolebinding/registry.go

    	"k8s.io/apiserver/pkg/registry/rest"
    	"k8s.io/kubernetes/pkg/apis/rbac"
    	rbacv1helpers "k8s.io/kubernetes/pkg/apis/rbac/v1"
    )
    
    // Registry is an interface for things that know how to store ClusterRoleBindings.
    type Registry interface {
    	ListClusterRoleBindings(ctx context.Context, options *metainternalversion.ListOptions) (*rbacv1.ClusterRoleBindingList, error)
    }
    
    // storage puts strong typing around storage calls
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 22 12:17:05 UTC 2018
    - 2.3K bytes
    - Viewed (0)
  10. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/policy_test.go

    }
    
    func TestBootstrapClusterRoleBindings(t *testing.T) {
    	list := &api.List{}
    	names := sets.NewString()
    	roleBindings := map[string]runtime.Object{}
    	bootstrapRoleBindings := bootstrappolicy.ClusterRoleBindings()
    	for i := range bootstrapRoleBindings {
    		role := bootstrapRoleBindings[i]
    		names.Insert(role.Name)
    		roleBindings[role.Name] = &role
    	}
    	for _, name := range names.List() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:45:31 UTC 2023
    - 9.5K bytes
    - Viewed (0)
Back to top