Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 383 for APIGroups (0.12 sec)

  1. cluster/addons/calico-policy-controller/typha-vertical-autoscaler-clusterrole.yaml

    apiVersion: rbac.authorization.k8s.io/v1
    kind: ClusterRole
    metadata:
      name: typha-cpva
      labels:
        addonmanager.kubernetes.io/mode: Reconcile
    rules:
      - apiGroups: [""]
        resources: ["nodes"]
        verbs: ["list"]
      - apiGroups: ["apps"]
        resources: ["deployments"]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 13 17:23:39 UTC 2019
    - 293 bytes
    - Viewed (0)
  2. pkg/apis/rbac/v1/helpers.go

    	return &PolicyRuleBuilder{
    		PolicyRule: rbacv1.PolicyRule{Verbs: verbs},
    	}
    }
    
    func (r *PolicyRuleBuilder) Groups(groups ...string) *PolicyRuleBuilder {
    	r.PolicyRule.APIGroups = append(r.PolicyRule.APIGroups, groups...)
    	return r
    }
    
    func (r *PolicyRuleBuilder) Resources(resources ...string) *PolicyRuleBuilder {
    	r.PolicyRule.Resources = append(r.PolicyRule.Resources, resources...)
    	return r
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 18 15:37:57 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  3. cluster/addons/kube-network-policies/kube-network-policies-rbac.yaml

      namespace: kube-system
      labels:
        addonmanager.kubernetes.io/mode: Reconcile
    rules:
      - apiGroups: [""]
        resources:
          - pods
          - nodes
          - namespaces
        verbs:
          - get
          - watch
          - list
      # Watch for changes to Kubernetes NetworkPolicies.
      - apiGroups: ["networking.k8s.io"]
        resources:
          - networkpolicies
        verbs:
          - watch
          - list
    ---
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 21 10:01:31 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/client-go/applyconfigurations/admissionregistration/v1alpha1/namedrulewithoperations.go

    	}
    	return b
    }
    
    // WithAPIGroups adds the given value to the APIGroups field in the declarative configuration
    // and returns the receiver, so that objects can be build by chaining "With" function invocations.
    // If called multiple times, values provided by each call will be appended to the APIGroups field.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 07 20:51:52 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/typechecking_test.go

    					{
    						RuleWithOperations: v1.RuleWithOperations{
    							Rule: v1.Rule{
    								APIGroups:   []string{"apps"},
    								APIVersions: []string{"v1"},
    								Resources:   []string{"deployments"},
    							},
    						},
    					}, {
    						RuleWithOperations: v1.RuleWithOperations{
    							Rule: v1.Rule{
    								APIGroups:   []string{""},
    								APIVersions: []string{"v1"},
    								Resources:   []string{"pods"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  6. pkg/apis/rbac/helpers.go

    func (r PolicyRule) CompactString() string {
    	formatStringParts := []string{}
    	formatArgs := []interface{}{}
    	if len(r.APIGroups) > 0 {
    		formatStringParts = append(formatStringParts, "APIGroups:%q")
    		formatArgs = append(formatArgs, r.APIGroups)
    	}
    	if len(r.Resources) > 0 {
    		formatStringParts = append(formatStringParts, "Resources:%q")
    		formatArgs = append(formatArgs, r.Resources)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 23 15:11:00 UTC 2020
    - 12.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/endpoints/discovery/aggregated/handler.go

    	if rdm.apiGroups == nil {
    		rdm.apiGroups = make(map[groupKey]*apidiscoveryv2.APIGroupDiscovery)
    	}
    
    	key := groupKey{
    		source: source,
    		name:   groupName,
    	}
    
    	if existing, groupExists := rdm.apiGroups[key]; groupExists {
    		// If this version already exists, replace it
    		versionExists := false
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 00:29:39 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  8. cluster/addons/calico-policy-controller/calico-cpva-clusterrole.yaml

    kind: ClusterRole
    apiVersion: rbac.authorization.k8s.io/v1
    metadata:
      name: calico-cpva
      labels:
        addonmanager.kubernetes.io/mode: Reconcile
    rules:
      - apiGroups: [""]
        resources: ["nodes"]
        verbs: ["list"]
      - apiGroups: ["apps"]
        resources: ["deployments", "daemonsets"]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 13 17:23:39 UTC 2019
    - 308 bytes
    - Viewed (0)
  9. cluster/addons/cloud-controller-manager/pvl-controller-role.yaml

    apiVersion: rbac.authorization.k8s.io/v1
    kind: ClusterRole
    metadata:
      labels:
        addonmanager.kubernetes.io/mode: Reconcile
      name: system:controller:pvl-controller
    rules:
    - apiGroups:
      - ""
      resources:
      - events
      verbs:
      - create
      - patch
      - update
    - apiGroups:
      - ""
      resources:
      - persistentvolumeclaims
      - persistentvolumes
      verbs:
      - list
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 03 17:38:23 UTC 2022
    - 369 bytes
    - Viewed (0)
  10. cluster/addons/rbac/kubelet-cert-rotation/kubelet-certificate-management.yaml

        addonmanager.kubernetes.io/mode: Reconcile
    rules:
    - apiGroups:
      - "certificates.k8s.io"
      resources:
      - certificatesigningrequests/nodeclient
      verbs:
      - "create"
    ---
    apiVersion: rbac.authorization.k8s.io/v1
    kind: ClusterRole
    metadata:
      name: gce:beta:kubelet-certificate-rotation
      labels:
        addonmanager.kubernetes.io/mode: Reconcile
    rules:
    - apiGroups:
      - "certificates.k8s.io"
      resources:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 24 04:11:47 UTC 2019
    - 1.4K bytes
    - Viewed (0)
Back to top