Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 210 for clusterRoles (0.13 sec)

  1. pkg/apis/rbac/validation/validation.go

    			}
    		}
    	}
    
    	if len(allErrs) != 0 {
    		return allErrs
    	}
    	return nil
    }
    
    func ValidateClusterRoleUpdate(role *rbac.ClusterRole, oldRole *rbac.ClusterRole, opts ClusterRoleValidationOptions) field.ErrorList {
    	allErrs := ValidateClusterRole(role, opts)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 01:48:21 UTC 2022
    - 10.4K bytes
    - Viewed (0)
  2. cluster/addons/cloud-controller-manager/cloud-node-controller-binding.yaml

    kind: ClusterRoleBinding
    metadata:
      labels:
        addonmanager.kubernetes.io/mode: Reconcile
      name: system:cloud-controller-manager
    roleRef:
      apiGroup: rbac.authorization.k8s.io
      kind: ClusterRole
      name: system:cloud-controller-manager
    subjects:
    - kind: User
      apiGroup: rbac.authorization.k8s.io
      name: system:cloud-controller-manager
    ---
    apiVersion: rbac.authorization.k8s.io/v1
    kind: ClusterRoleBinding
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 03 17:38:23 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/rbac/v1/zz_generated.deepcopy.go

    func (in *ClusterRole) DeepCopy() *ClusterRole {
    	if in == nil {
    		return nil
    	}
    	out := new(ClusterRole)
    	in.DeepCopyInto(out)
    	return out
    }
    
    // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
    func (in *ClusterRole) DeepCopyObject() runtime.Object {
    	if c := in.DeepCopy(); c != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 10.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/rbac/v1alpha1/zz_generated.deepcopy.go

    func (in *ClusterRole) DeepCopy() *ClusterRole {
    	if in == nil {
    		return nil
    	}
    	out := new(ClusterRole)
    	in.DeepCopyInto(out)
    	return out
    }
    
    // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
    func (in *ClusterRole) DeepCopyObject() runtime.Object {
    	if c := in.DeepCopy(); c != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 10.6K bytes
    - Viewed (0)
  5. pkg/apis/rbac/zz_generated.deepcopy.go

    func (in *ClusterRole) DeepCopy() *ClusterRole {
    	if in == nil {
    		return nil
    	}
    	out := new(ClusterRole)
    	in.DeepCopyInto(out)
    	return out
    }
    
    // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
    func (in *ClusterRole) DeepCopyObject() runtime.Object {
    	if c := in.DeepCopy(); c != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 11.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/rbac/v1beta1/zz_generated.deepcopy.go

    func (in *ClusterRole) DeepCopy() *ClusterRole {
    	if in == nil {
    		return nil
    	}
    	out := new(ClusterRole)
    	in.DeepCopyInto(out)
    	return out
    }
    
    // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
    func (in *ClusterRole) DeepCopyObject() runtime.Object {
    	if c := in.DeepCopy(); c != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 10.6K bytes
    - Viewed (0)
  7. cluster/addons/rbac/cluster-autoscaler/cluster-autoscaler-rbac.yaml

    kind: ClusterRole
    apiVersion: rbac.authorization.k8s.io/v1
    metadata:
      name: cluster-autoscaler
      labels:
        addonmanager.kubernetes.io/mode: Reconcile
    rules:
      # leader election
      - apiGroups: ["coordination.k8s.io"]
        resources: ["leases"]
        verbs: ["create"]
      - apiGroups: ["coordination.k8s.io"]
        resources: ["leases"]
        resourceNames: ["cluster-autoscaler"]
        verbs: ["get", "update", "patch", "delete"]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 12 16:56:45 UTC 2020
    - 2K bytes
    - Viewed (0)
  8. tests/integration/pilot/testdata/upgrade/1.11.0-beta.1-cni-install.yaml.tar

     unknown operator.istio.io/component: "Cni" --- apiVersion: rbac.authorization.k8s.io/v1 kind: ClusterRole metadata: name: istio-cni labels: app: istio-cni release: istio istio.io/rev: default install.operator.istio.io/owning-resource: unknown operator.istio.io/component: "Cni" rules: - apiGroups: [""] resources: - pods - nodes verbs: - get --- apiVersion: rbac.authorization.k8s.io/v1 kind: ClusterRole metadata: name: istio-cni-repair-role labels: app: istio-cni release: istio istio.io/rev: default...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 29 18:43:32 UTC 2021
    - 10K bytes
    - Viewed (0)
  9. tests/integration/security/external_ca/main_test.go

          - name: PILOT_CERT_PROVIDER
            value: k8s.io/clusterissuers.istio.io/signer2
          overlays:
            # Amend ClusterRole to add permission for istiod to approve certificate signing by custom signer
            - kind: ClusterRole
              name: istiod-clusterrole-istio-system
              patches:
                - path: rules[-1]
                  value: |
                    apiGroups:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 22 14:18:21 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/phases/addons/dns/manifests.go

            }
            cache 30
            loop
            reload
            loadbalance
        }
    `
    	// CoreDNSClusterRole is the CoreDNS ClusterRole manifest
    	CoreDNSClusterRole = `
    apiVersion: rbac.authorization.k8s.io/v1
    kind: ClusterRole
    metadata:
      name: system:coredns
    rules:
    - apiGroups:
      - ""
      resources:
      - endpoints
      - services
      - pods
      - namespaces
      verbs:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 20 09:59:39 UTC 2023
    - 5.4K bytes
    - Viewed (0)
Back to top