Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for clusterrolestore (0.21 sec)

  1. pkg/registry/rbac/rest/storage_rbac.go

    	"k8s.io/kubernetes/pkg/api/legacyscheme"
    	"k8s.io/kubernetes/pkg/apis/rbac"
    	"k8s.io/kubernetes/pkg/registry/rbac/clusterrole"
    	clusterrolepolicybased "k8s.io/kubernetes/pkg/registry/rbac/clusterrole/policybased"
    	clusterrolestore "k8s.io/kubernetes/pkg/registry/rbac/clusterrole/storage"
    	"k8s.io/kubernetes/pkg/registry/rbac/clusterrolebinding"
    	clusterrolebindingpolicybased "k8s.io/kubernetes/pkg/registry/rbac/clusterrolebinding/policybased"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 14 03:25:19 UTC 2022
    - 18.5K bytes
    - Viewed (0)
  2. operator/pkg/name/name.go

    	"istio.io/istio/operator/pkg/helm"
    	"istio.io/istio/operator/pkg/tpath"
    )
    
    // Kubernetes Kind strings.
    const (
    	CRDStr                            = "CustomResourceDefinition"
    	ClusterRoleStr                    = "ClusterRole"
    	ClusterRoleBindingStr             = "ClusterRoleBinding"
    	CMStr                             = "ConfigMap"
    	DaemonSetStr                      = "DaemonSet"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  3. operator/pkg/helmreconciler/prune.go

    		{Group: "admissionregistration.k8s.io", Version: "v1", Kind: name.ValidatingWebhookConfigurationStr},
    		{Group: "rbac.authorization.k8s.io", Version: "v1", Kind: name.ClusterRoleStr},
    		{Group: "rbac.authorization.k8s.io", Version: "v1", Kind: name.ClusterRoleBindingStr},
    		// Cannot currently prune CRDs because this will also wipe out user config.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  4. operator/cmd/mesh/test-util_test.go

    }
    
    // mustGetClusterRole returns the clusterRole with the given name or fails if it's not found in objs.
    func mustGetClusterRole(g *WithT, objs *ObjectSet, name string) *object.K8sObject {
    	obj := objs.kind(name2.ClusterRoleStr).nameEquals(name)
    	g.Expect(obj).Should(Not(BeNil()))
    	return obj
    }
    
    // mustGetRole returns the role with the given name or fails if it's not found in objs.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  5. operator/pkg/object/objects.go

    	o.Namespace = u.GetNamespace()
    
    	return o
    }
    
    // Hash returns a unique, insecure hash based on kind, namespace and name.
    func Hash(kind, namespace, name string) string {
    	switch kind {
    	case names.ClusterRoleStr, names.ClusterRoleBindingStr:
    		namespace = ""
    	}
    	return strings.Join([]string{kind, namespace, name}, ":")
    }
    
    // FromHash parses kind, namespace and name from a hash.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 21 07:16:46 UTC 2023
    - 15.5K bytes
    - Viewed (1)
  6. operator/pkg/controller/istiocontrolplane/istiocontrolplane_controller.go

    		{Group: "admissionregistration.k8s.io", Version: "v1", Kind: name.ValidatingWebhookConfigurationStr},
    		{Group: "rbac.authorization.k8s.io", Version: "v1", Kind: name.ClusterRoleStr},
    		{Group: "rbac.authorization.k8s.io", Version: "v1", Kind: name.ClusterRoleBindingStr},
    		{Group: "apiextensions.k8s.io", Version: "v1", Kind: name.CRDStr},
    		{Group: "policy", Version: "v1", Kind: name.PDBStr},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 13:56:46 UTC 2024
    - 19.4K bytes
    - Viewed (0)
Back to top