Update to v3.14.0

This commit is contained in:
Adrien Reslinger 2020-05-09 12:23:02 +02:00
parent dc57476b1a
commit 661155d6e5
8 changed files with 53 additions and 8 deletions

View file

@ -38,6 +38,16 @@ rules:
- create
- update
- delete
# kube-controllers manages hostendpoints.
- apiGroups: ["crd.projectcalico.org"]
resources:
- hostendpoints
verbs:
- get
- list
- create
- update
- delete
# Needs access to update clusterinformations.
- apiGroups: ["crd.projectcalico.org"]
resources:
@ -46,3 +56,16 @@ rules:
- get
- create
- update
# KubeControllersConfiguration is where it gets its config
- apiGroups: ["crd.projectcalico.org"]
resources:
- kubecontrollersconfigurations
verbs:
# read its own config
- get
# create a default if none exists
- create
# update status
- update
# watch for changes
- watch