Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 46 for clusterRoleBindings (0.35 sec)

  1. cmd/kubeadm/app/phases/bootstraptoken/node/tlsbootstrap_test.go

    )
    
    func TestAllowBootstrapTokensToPostCSRs(t *testing.T) {
    	tests := []struct {
    		name   string
    		client clientset.Interface
    	}{
    		{
    			name:   "ClusterRoleBindings is empty",
    			client: clientsetfake.NewSimpleClientset(),
    		},
    		{
    			name: "ClusterRoleBindings already exists",
    			client: newMockClusterRoleBinddingClientForTest(t, &rbac.ClusterRoleBinding{
    				ObjectMeta: metav1.ObjectMeta{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 18 04:16:31 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  2. pkg/registry/rbac/rest/storage_rbac.go

    		storage[resource] = clusterrolepolicybased.NewStorage(clusterRolesStorage, p.Authorizer, authorizationRuleResolver)
    	}
    
    	// clusterrolebindings
    	if resource := "clusterrolebindings"; apiResourceConfigSource.ResourceEnabled(rbacapiv1.SchemeGroupVersion.WithResource(resource)) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 14 03:25:19 UTC 2022
    - 18.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/audit/policy/reader_test.go

        users: ["tim"]
        userGroups: ["testers", "developers"]
        verbs: ["patch", "delete", "create"]
        resources:
          - group: ""
          - group: "rbac.authorization.k8s.io"
            resources: ["clusterroles", "clusterrolebindings"]
        namespaces: ["default", "kube-system"]
      - level: Metadata
    `
    
    const policyWithNoVersionOrKind = `
    rules:
      - level: None
        nonResourceURLs:
          - /healthz*
          - /version
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/util/apiclient/dryrunclient_test.go

    [dryrun] Resource name: "kubernetes"
    `),
    		},
    		{
    			name:   "action GET on clusterrolebindings",
    			action: core.NewRootGetAction(schema.GroupVersionResource{Group: rbac.GroupName, Version: rbac.SchemeGroupVersion.Version, Resource: "clusterrolebindings"}, "system:node"),
    			expectedBytes: []byte(`[dryrun] Would perform action GET on resource "clusterrolebindings" in API group "rbac.authorization.k8s.io/v1"
    [dryrun] Resource name: "system:node"
    `),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 21 09:49:59 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/phases/kubeconfig/kubeconfig_test.go

    				client.PrependReactor("create", "clusterrolebindings", func(action clientgotesting.Action) (bool, runtime.Object, error) {
    					return true, nil, apierrors.NewAlreadyExists(
    						schema.GroupResource{}, "name")
    				})
    			},
    			setupSuperAdminClient: func(client *clientsetfake.Clientset) {
    				client.PrependReactor("create", "clusterrolebindings", func(action clientgotesting.Action) (bool, runtime.Object, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:04:18 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  6. api/discovery/apis__rbac.authorization.k8s.io__v1.json

    {
      "apiVersion": "v1",
      "groupVersion": "rbac.authorization.k8s.io/v1",
      "kind": "APIResourceList",
      "resources": [
        {
          "kind": "ClusterRoleBinding",
          "name": "clusterrolebindings",
          "namespaced": false,
          "singularName": "clusterrolebinding",
          "storageVersionHash": "48tpQ8gZHFc=",
          "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)
  7. staging/src/k8s.io/api/rbac/v1alpha1/types.go

    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    // 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.
    type ClusterRoleBindingList struct {
    	metav1.TypeMeta `json:",inline"`
    	// Standard object's metadata.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 22:49:19 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/rbac/v1/types.go

    // ClusterRoleBindingList is a collection of ClusterRoleBindings
    type ClusterRoleBindingList 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 ClusterRoleBindings
    	Items []ClusterRoleBinding `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)
  9. operator/cmd/mesh/testdata/operator/output/operator-dump.json

                    "*"
                ]
            },
            {
                "apiGroups": [
                    "rbac.authorization.k8s.io"
                ],
                "resources": [
                    "clusterrolebindings",
                    "clusterroles",
                    "roles",
                    "rolebindings"
                ],
                "verbs": [
                    "*"
                ]
            },
            {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 10 01:35:08 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  10. 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)
Back to top