Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 37 of 37 for ClusterRoleBinding (0.51 sec)

  1. cmd/kubeadm/app/phases/kubeconfig/kubeconfig_test.go

    			setupAdminClient: func(client *clientsetfake.Clientset) {
    				client.PrependReactor("create", "clusterrolebindings", func(action clientgotesting.Action) (bool, runtime.Object, error) {
    					return true, &rbac.ClusterRoleBinding{}, apierrors.NewForbidden(
    						schema.GroupResource{}, "name", errors.New(""))
    				})
    			},
    			expectedError: true,
    		},
    		{
    			name: "admin.conf: CRB already exists, use the admin.conf client",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:04:18 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  2. samples/addons/kiali.yaml

      - oauthclients
      resourceNames:
      - kiali-istio-system
      verbs:
      - get
    ...
    ---
    # Source: kiali-server/templates/rolebinding.yaml
    apiVersion: rbac.authorization.k8s.io/v1
    kind: ClusterRoleBinding
    metadata:
      name: kiali
      labels:
        helm.sh/chart: kiali-server-1.85.0
        app: kiali
        app.kubernetes.io/name: kiali
        app.kubernetes.io/instance: kiali
        version: "v1.85.0"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/phases/addons/dns/dns_test.go

      verbs:
      - list
      - watch
    - apiGroups:
      - discovery.k8s.io
      resources:
      - endpointslices
      verbs:
      - list
      - watch
    ---
    apiVersion: rbac.authorization.k8s.io/v1
    kind: ClusterRoleBinding
    metadata:
      name: system:coredns
    roleRef:
      apiGroup: rbac.authorization.k8s.io
      kind: ClusterRole
      name: system:coredns
    subjects:
    - kind: ServiceAccount
      name: coredns
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  4. cni/README.md

        - `istio-cni-config` configmap with CNI plugin config to add to CNI plugin chained config
        - creates service-account `istio-cni` with `ClusterRoleBinding` to allow gets on pods' info and delete/modifications for recovery.
    
    - `install-cni` container
        - copies `istio-cni` and `istio-iptables` to `/opt/cni/bin`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 19:29:42 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  5. operator/pkg/object/objects.go

    			// 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
    
    			// validatingwebhookconfiguration is configured to FAIL-OPEN in the default install. For the
    			// re-install case we want to apply the validatingwebhookconfiguration first to reset any
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 21 07:16:46 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  6. istioctl/pkg/multicluster/remote_secret_test.go

    	mustFindObject(t, objs, "istio-reader-service-account", "ServiceAccount")
    	mustFindObject(t, objs, "istio-reader-clusterrole-istio-system", "ClusterRole")
    	mustFindObject(t, objs, "istio-reader-clusterrole-istio-system", "ClusterRoleBinding")
    }
    
    func mustFindObject(t test.Failer, objs object.K8sObjects, name, kind string) {
    	t.Helper()
    	var obj *object.K8sObject
    	for _, o := range objs {
    		if o.Kind == kind && o.Name == name {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 20.6K bytes
    - Viewed (0)
  7. istioctl/pkg/multicluster/remote_secret.go

    	baseTemplates := []string{"reader-serviceaccount.yaml"}
    	discoveryTemplates := []string{"clusterrole.yaml", "clusterrolebinding.yaml"}
    
    	if err := baseRenderer.Run(); err != nil {
    		return "", fmt.Errorf("failed running base Helm renderer: %w", err)
    	}
    	if err := discoveryRenderer.Run(); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 11 01:43:17 UTC 2023
    - 24K bytes
    - Viewed (0)
Back to top