Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 117 for RoleBinding (0.3 sec)

  1. cmd/kubeadm/app/phases/kubelet/config.go

    				ResourceNames: []string{kubeadmconstants.KubeletBaseConfigurationConfigMap},
    			},
    		},
    	}); err != nil {
    		return err
    	}
    
    	return apiclient.CreateOrUpdateRoleBinding(client, &rbac.RoleBinding{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      kubeadmconstants.KubeletBaseConfigMapRole,
    			Namespace: metav1.NamespaceSystem,
    		},
    		RoleRef: rbac.RoleRef{
    			APIGroup: rbac.GroupName,
    			Kind:     "Role",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 02 12:34:30 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  2. operator/pkg/name/name.go

    	PDBStr                            = "PodDisruptionBudget"
    	ReplicaSetStr                     = "ReplicaSet"
    	RoleStr                           = "Role"
    	RoleBindingStr                    = "RoleBinding"
    	SAStr                             = "ServiceAccount"
    	ServiceStr                        = "Service"
    	SecretStr                         = "Secret"
    	StatefulSetStr                    = "StatefulSet"
    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. helm/minio/templates/_helpers.tpl

      {{- if .Values.existingSecret -}}
        {{- .Values.existingSecret }}
      {{- else -}}
        {{- include "minio.fullname" . -}}
      {{- end -}}
    {{- end -}}
    
    {{/*
    Determine name for scc role and rolebinding
    */}}
    {{- define "minio.sccRoleName" -}}
      {{- printf "%s-%s" "scc" (include "minio.fullname" .) | trunc 63 | trimSuffix "-" -}}
    {{- end -}}
    
    {{/*
    Properly format optional additional arguments to MinIO binary
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Apr 17 06:04:15 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  4. api/discovery/aggregated_v2.json

                {
                  "resource": "rolebindings",
                  "responseKind": {
                    "group": "",
                    "kind": "RoleBinding",
                    "version": ""
                  },
                  "scope": "Namespaced",
                  "singularResource": "rolebinding",
                  "verbs": [
                    "create",
                    "delete",
                    "deletecollection",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 12 17:29:14 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  5. operator/cmd/mesh/test-util_test.go

    		out["name"] = name
    	}
    	if port != -1 {
    		out["port"] = port
    	}
    	if targetPort != -1 {
    		out["targetPort"] = targetPort
    	}
    	return out
    }
    
    // checkRoleBindingsReferenceRoles fails if any RoleBinding in objs references a Role that isn't found in objs.
    func checkRoleBindingsReferenceRoles(g *WithT, objs *ObjectSet) {
    	for _, o := range objs.kind(name2.RoleBindingStr).objSlice {
    		ou := o.Unstructured()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/phases/addons/proxy/proxy.go

    				Verbs:         []string{"get"},
    				APIGroups:     []string{""},
    				Resources:     []string{"configmaps"},
    				ResourceNames: []string{constants.KubeProxyConfigMap},
    			},
    		},
    	}
    
    	rb := &rbac.RoleBinding{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      KubeProxyConfigMapRoleName,
    			Namespace: metav1.NamespaceSystem,
    		},
    		RoleRef: rbac.RoleRef{
    			APIGroup: rbac.GroupName,
    			Kind:     "Role",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 13:23:44 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  7. api/discovery/aggregated_v2beta1.json

                {
                  "resource": "rolebindings",
                  "responseKind": {
                    "group": "",
                    "kind": "RoleBinding",
                    "version": ""
                  },
                  "scope": "Namespaced",
                  "singularResource": "rolebinding",
                  "verbs": [
                    "create",
                    "delete",
                    "deletecollection",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  8. pkg/registry/rbac/validation/rule_test.go

    				Rules:      []rbacv1.PolicyRule{ruleAdmin},
    			},
    			{
    				ObjectMeta: metav1.ObjectMeta{Name: "write-nodes"},
    				Rules:      []rbacv1.PolicyRule{ruleWriteNodes},
    			},
    		},
    		roleBindings: []*rbacv1.RoleBinding{
    			{
    				ObjectMeta: metav1.ObjectMeta{Namespace: "namespace1"},
    				Subjects: []rbacv1.Subject{
    					{Kind: rbacv1.UserKind, Name: "foobar"},
    					{Kind: rbacv1.GroupKind, Name: "group1"},
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  9. samples/security/spire/spire-quickstart.yaml

    - apiGroups: [""]
      resources: ["configmaps"]
      resourceNames: ["spire-bundle"]
      verbs: ["get", "patch"]
    
    ---
    # RoleBinding granting the spire-server-role to the SPIRE server
    # service account.
    kind: RoleBinding
    apiVersion: rbac.authorization.k8s.io/v1
    metadata:
      name: spire-server-role-binding
      namespace: spire
    subjects:
    - kind: ServiceAccount
      name: spire-server
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 12 16:12:42 UTC 2023
    - 32.2K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/phases/addons/proxy/proxy_test.go

      namespace: kube-system
    rules:
    - apiGroups:
      - ""
      resourceNames:
      - kube-proxy
      resources:
      - configmaps
      verbs:
      - get
    ---
    apiVersion: rbac.authorization.k8s.io/v1
    kind: RoleBinding
    metadata:
      creationTimestamp: null
      name: kube-proxy
      namespace: kube-system
    roleRef:
      apiGroup: rbac.authorization.k8s.io
      kind: Role
      name: kube-proxy
    subjects:
    - kind: Group
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 18 11:14:32 UTC 2024
    - 8.7K bytes
    - Viewed (0)
Back to top