134 lines
3.1 KiB
Text
134 lines
3.1 KiB
Text
|
# Source: calico/templates/calico-node-rbac.yaml
|
||
|
# Include a clusterrole for the calico-node DaemonSet,
|
||
|
# and bind it to the calico-node serviceaccount.
|
||
|
kind: ClusterRole
|
||
|
apiVersion: rbac.authorization.k8s.io/v1
|
||
|
metadata:
|
||
|
name: calico-node
|
||
|
rules:
|
||
|
# Used for creating service account tokens to be used by the CNI plugin
|
||
|
- apiGroups: [""]
|
||
|
resources:
|
||
|
- serviceaccounts/token
|
||
|
resourceNames:
|
||
|
- canal
|
||
|
verbs:
|
||
|
- create
|
||
|
# The CNI plugin needs to get pods, nodes, and namespaces.
|
||
|
- apiGroups: [""]
|
||
|
resources:
|
||
|
- pods
|
||
|
- nodes
|
||
|
- namespaces
|
||
|
verbs:
|
||
|
- get
|
||
|
# EndpointSlices are used for Service-based network policy rule
|
||
|
# enforcement.
|
||
|
- apiGroups: ["discovery.k8s.io"]
|
||
|
resources:
|
||
|
- endpointslices
|
||
|
verbs:
|
||
|
- watch
|
||
|
- list
|
||
|
- apiGroups: [""]
|
||
|
resources:
|
||
|
- endpoints
|
||
|
- services
|
||
|
verbs:
|
||
|
# Used to discover service IPs for advertisement.
|
||
|
- watch
|
||
|
- list
|
||
|
# Used to discover Typhas.
|
||
|
- get
|
||
|
# Pod CIDR auto-detection on kubeadm needs access to config maps.
|
||
|
- apiGroups: [""]
|
||
|
resources:
|
||
|
- configmaps
|
||
|
verbs:
|
||
|
- get
|
||
|
- apiGroups: [""]
|
||
|
resources:
|
||
|
- nodes/status
|
||
|
verbs:
|
||
|
# Needed for clearing NodeNetworkUnavailable flag.
|
||
|
- patch
|
||
|
# Calico stores some configuration information in node annotations.
|
||
|
- update
|
||
|
# Watch for changes to Kubernetes NetworkPolicies.
|
||
|
- apiGroups: ["networking.k8s.io"]
|
||
|
resources:
|
||
|
- networkpolicies
|
||
|
verbs:
|
||
|
- watch
|
||
|
- list
|
||
|
# Used by Calico for policy information.
|
||
|
- apiGroups: [""]
|
||
|
resources:
|
||
|
- pods
|
||
|
- namespaces
|
||
|
- serviceaccounts
|
||
|
verbs:
|
||
|
- list
|
||
|
- watch
|
||
|
# The CNI plugin patches pods/status.
|
||
|
- apiGroups: [""]
|
||
|
resources:
|
||
|
- pods/status
|
||
|
verbs:
|
||
|
- patch
|
||
|
# Calico monitors various CRDs for config.
|
||
|
- apiGroups: ["crd.projectcalico.org"]
|
||
|
resources:
|
||
|
- globalfelixconfigs
|
||
|
- felixconfigurations
|
||
|
- bgppeers
|
||
|
- globalbgpconfigs
|
||
|
- bgpconfigurations
|
||
|
- ippools
|
||
|
- ipreservations
|
||
|
- ipamblocks
|
||
|
- globalnetworkpolicies
|
||
|
- globalnetworksets
|
||
|
- networkpolicies
|
||
|
- networksets
|
||
|
- clusterinformations
|
||
|
- hostendpoints
|
||
|
- blockaffinities
|
||
|
- caliconodestatuses
|
||
|
verbs:
|
||
|
- get
|
||
|
- list
|
||
|
- watch
|
||
|
# Calico must create and update some CRDs on startup.
|
||
|
- apiGroups: ["crd.projectcalico.org"]
|
||
|
resources:
|
||
|
- ippools
|
||
|
- felixconfigurations
|
||
|
- clusterinformations
|
||
|
verbs:
|
||
|
- create
|
||
|
- update
|
||
|
# Calico must update some CRDs.
|
||
|
- apiGroups: [ "crd.projectcalico.org" ]
|
||
|
resources:
|
||
|
- caliconodestatuses
|
||
|
verbs:
|
||
|
- update
|
||
|
# Calico stores some configuration information on the node.
|
||
|
- apiGroups: [""]
|
||
|
resources:
|
||
|
- nodes
|
||
|
verbs:
|
||
|
- get
|
||
|
- list
|
||
|
- watch
|
||
|
# These permissions are only required for upgrade from v2.6, and can
|
||
|
# be removed after upgrade or on fresh installations.
|
||
|
- apiGroups: ["crd.projectcalico.org"]
|
||
|
resources:
|
||
|
- bgpconfigurations
|
||
|
- bgppeers
|
||
|
verbs:
|
||
|
- create
|
||
|
- update
|