Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 227 for RoleBinding (0.2 sec)

  1. cmd/kubeadm/app/phases/copycerts/copycerts.go

    				ResourceNames: []string{kubeadmconstants.KubeadmCertsSecret},
    			},
    		},
    	})
    	if err != nil {
    		return err
    	}
    
    	return apiclient.CreateOrUpdateRoleBinding(client, &rbac.RoleBinding{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      kubeadmconstants.KubeadmCertsClusterRoleName,
    			Namespace: metav1.NamespaceSystem,
    		},
    		RoleRef: rbac.RoleRef{
    			APIGroup: rbac.GroupName,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 01 00:15:30 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  2. Makefile.core.mk

    	sed -e '1 i {{- if .Values.global.configCluster }}' -e '$$ a {{- end }}' manifests/charts/istio-control/istio-discovery/templates/rolebinding.yaml > manifests/charts/istiod-remote/templates/rolebinding.yaml
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 02 19:53:04 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  3. pkg/printers/internalversion/printers.go

    		{Name: "Role", Type: "string", Description: rbacv1beta1.RoleBinding{}.SwaggerDoc()["roleRef"]},
    		{Name: "Age", Type: "string", Description: metav1.ObjectMeta{}.SwaggerDoc()["creationTimestamp"]},
    		{Name: "Users", Type: "string", Priority: 1, Description: "Users in the roleBinding"},
    		{Name: "Groups", Type: "string", Priority: 1, Description: "Groups in the roleBinding"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  4. operator/pkg/object/objects.go

    		case gk == "apiextensions.k8s.io/CustomResourceDefinition":
    			return -1000
    
    			// We need to create ServiceAccounts, Roles before we bind them with a RoleBinding
    		case gk == "/ServiceAccount" || gk == "rbac.authorization.k8s.io/ClusterRole":
    			return 1
    		case gk == "rbac.authorization.k8s.io/ClusterRoleBinding":
    			return 2
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 21 07:16:46 UTC 2023
    - 15.5K bytes
    - Viewed (1)
  5. common/scripts/metallb-native.yaml

      - patch
    - apiGroups:
      - policy
      resourceNames:
      - speaker
      resources:
      - podsecuritypolicies
      verbs:
      - use
    ---
    apiVersion: rbac.authorization.k8s.io/v1
    kind: RoleBinding
    metadata:
      labels:
        app: metallb
      name: controller
      namespace: metallb-system
    roleRef:
      apiGroup: rbac.authorization.k8s.io
      kind: Role
      name: controller
    subjects:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:31 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.6.md

    * `v1beta1` RoleBinding/ClusterRoleBinding subjects changed `apiVersion` to `apiGroup` to fully-qualify a subject. ServiceAccount subjects default to an apiGroup of `""`,...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 304K bytes
    - Viewed (0)
  7. pkg/printers/internalversion/printers_test.go

    		}
    	}
    }
    
    func TestPrintRoleBinding(t *testing.T) {
    	tests := []struct {
    		binding  rbac.RoleBinding
    		options  printers.GenerateOptions
    		expected []metav1.TableRow
    	}{
    		// Basic role binding
    		{
    			binding: rbac.RoleBinding{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:              "binding1",
    					CreationTimestamp: metav1.Time{Time: time.Now().Add(1.9e9)},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/cli-runtime/artifacts/openapi/swagger-with-shared-parameters.json

            {
              "group": "rbac.authorization.k8s.io",
              "kind": "Role",
              "version": "v1"
            }
          ]
        },
        "io.k8s.api.rbac.v1.RoleBinding": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 2.3M bytes
    - Viewed (0)
  9. hack/local-up-cluster.sh

        kube::util::create_client_certkey "${CONTROLPLANE_SUDO}" "${CERT_DIR}" request-header-ca auth-proxy system:auth-proxy
    
        # TODO remove masters and add rolebinding
        kube::util::create_client_certkey "${CONTROLPLANE_SUDO}" "${CERT_DIR}" 'client-ca' kube-aggregator system:kube-aggregator system:masters
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  10. helm-releases/minio-2.0.1.tgz

    -}} {{/* Determine secret name. */}} {{- define "minio.secretName" -}} {{- 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 */}} {{- define "minio.extraArgs" -}} {{-...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Aug 31 09:09:09 UTC 2021
    - 13.6K bytes
    - Viewed (0)
Back to top