Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 68 for clusterrolebinings (0.27 sec)

  1. manifests/charts/istio-cni/templates/clusterrolebinding.yaml

    apiVersion: rbac.authorization.k8s.io/v1
    kind: ClusterRoleBinding
    metadata:
      name: {{ template "name" . }}
      labels:
        app: {{ template "name" . }}
        release: {{ .Release.Name }}
        istio.io/rev: {{ .Values.revision | default "default" }}
        install.operator.istio.io/owning-resource: {{ .Values.ownerName | default "unknown" }}
        operator.istio.io/component: "Cni"
    roleRef:
      apiGroup: rbac.authorization.k8s.io
      kind: ClusterRole
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:29 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/phases/bootstraptoken/node/tlsbootstrap_test.go

    	}
    }
    
    func newMockClusterRoleBinddingClientForTest(t *testing.T, clusterRoleBinding *rbac.ClusterRoleBinding) *clientsetfake.Clientset {
    	client := clientsetfake.NewSimpleClientset()
    	_, err := client.RbacV1().ClusterRoleBindings().Create(context.TODO(), clusterRoleBinding, metav1.CreateOptions{})
    
    	if err != nil {
    		t.Fatalf("error creating ClusterRoleBindings: %v", err)
    	}
    	return client
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 18 04:16:31 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  3. pkg/registry/rbac/clusterrolebinding/storage/storage.go

    		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)
  4. 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)
  5. 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)
  6. pkg/registry/rbac/clusterrolebinding/policybased/storage.go

    	}
    
    	clusterRoleBinding := obj.(*rbac.ClusterRoleBinding)
    	if rbacregistry.BindingAuthorized(ctx, clusterRoleBinding.RoleRef, metav1.NamespaceNone, s.authorizer) {
    		return s.StandardStorage.Create(ctx, obj, createValidation, options)
    	}
    
    	v1RoleRef := rbacv1.RoleRef{}
    	err := rbacv1helpers.Convert_rbac_RoleRef_To_v1_RoleRef(&clusterRoleBinding.RoleRef, &v1RoleRef, nil)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 10:11:16 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. staging/src/k8s.io/api/rbac/v1alpha1/types_swagger_doc_generated.go

    }
    
    func (ClusterRoleBinding) SwaggerDoc() map[string]string {
    	return map_ClusterRoleBinding
    }
    
    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.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/util/apiclient/init_dryrun.go

    		},
    	}, nil
    }
    
    // handleSystemNodesClusterRoleBinding handles the GET call to the system:nodes clusterrolebinding
    func (idr *InitDryRunGetter) handleSystemNodesClusterRoleBinding(action core.GetAction) (bool, runtime.Object, error) {
    	if action.GetName() != constants.NodesClusterRoleBinding || action.GetResource().Resource != "clusterrolebindings" {
    		// We can't handle this event
    		return false, nil, nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 07:17:50 UTC 2023
    - 5.3K bytes
    - Viewed (0)
Back to top