Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 60 for ClusterRoleBinding (0.58 sec)

  1. hack/local-up-cluster.sh

        ${KUBECTL} --kubeconfig "${CERT_DIR}/admin.kubeconfig" create clusterrolebinding kube-apiserver-kubelet-admin --clusterrole=system:kubelet-api-admin --user=kube-apiserver
    
        # Grant kubelets permission to request client certificates
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  2. common/scripts/metallb-native.yaml

      kind: Role
      name: pod-lister
    subjects:
    - kind: ServiceAccount
      name: speaker
      namespace: metallb-system
    ---
    apiVersion: rbac.authorization.k8s.io/v1
    kind: ClusterRoleBinding
    metadata:
      labels:
        app: metallb
      name: metallb-system:controller
    roleRef:
      apiGroup: rbac.authorization.k8s.io
      kind: ClusterRole
      name: metallb-system: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)
  3. pkg/printers/internalversion/printers_test.go

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

            {
              "group": "rbac.authorization.k8s.io",
              "kind": "ClusterRole",
              "version": "v1"
            }
          ]
        },
        "io.k8s.api.rbac.v1.ClusterRoleBinding": {
          "description": "ClusterRoleBinding references a ClusterRole, but not contain it.  It can reference a ClusterRole in the global namespace, and adds who information via Subject.",
          "properties": {
            "apiVersion": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 2.3M bytes
    - Viewed (0)
  5. prow/config/calico.yaml

          - ipamconfigs
        verbs:
          - get
          - list
          - create
          - update
          - delete
    ---
    # Source: calico/templates/calico-kube-controllers-rbac.yaml
    kind: ClusterRoleBinding
    apiVersion: rbac.authorization.k8s.io/v1
    metadata:
      name: calico-kube-controllers
    roleRef:
      apiGroup: rbac.authorization.k8s.io
      kind: ClusterRole
      name: calico-kube-controllers
    subjects:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  6. api/openapi-spec/swagger.json

            {
              "group": "rbac.authorization.k8s.io",
              "kind": "ClusterRole",
              "version": "v1"
            }
          ]
        },
        "io.k8s.api.rbac.v1.ClusterRoleBinding": {
          "description": "ClusterRoleBinding references a ClusterRole, but not contain it.  It can reference a ClusterRole in the global namespace, and adds who information via Subject.",
          "properties": {
            "apiVersion": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.8.md

    ## Known Issues
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
  8. pkg/generated/openapi/zz_generated.openapi.go

    										Default: map[string]interface{}{},
    										Ref:     ref("k8s.io/api/rbac/v1.ClusterRoleBinding"),
    									},
    								},
    							},
    						},
    					},
    				},
    				Required: []string{"items"},
    			},
    		},
    		Dependencies: []string{
    			"k8s.io/api/rbac/v1.ClusterRoleBinding", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"},
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  9. staging/src/k8s.io/cli-runtime/artifacts/openapi/swagger.json

            {
              "group": "rbac.authorization.k8s.io",
              "kind": "ClusterRole",
              "version": "v1"
            }
          ]
        },
        "io.k8s.api.rbac.v1.ClusterRoleBinding": {
          "description": "ClusterRoleBinding references a ClusterRole, but not contain it.  It can reference a ClusterRole in the global namespace, and adds who information via Subject.",
          "properties": {
            "apiVersion": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 4.5M bytes
    - Viewed (0)
  10. cluster/gce/gci/configure-helper.sh

      done
    
      until kubectl get volumesnapshots.snapshot.storage.k8s.io
      do
        sleep 10
      done
    
      echo "Wait until volume snapshot RBAC rules are installed"
      until kubectl get clusterrolebinding volume-snapshot-controller-role
      do
        sleep 10
      done
    
      echo "Wait until volume snapshot controller is installed"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
Back to top