Patch Calico for V3.14.0 missing CR and CRD (#6276)

This commit is contained in:
nurekage
2020-07-01 17:44:16 +02:00
committed by GitHub
parent 00fe3d5094
commit 017df7113d
2 changed files with 31 additions and 0 deletions

View File

@@ -57,6 +57,7 @@ rules:
- blockaffinities
- ipamblocks
- ipamhandles
- hostendpoints
verbs:
- get
- list
@@ -72,3 +73,18 @@ rules:
- create
- update
{% endif %}
{% if calico_version is version('v3.14.0', '>=') %}
# 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
{% endif %}