v1.14.0
- Update your
go.mod
file to upgrade the dependencies and rungo mod tidy
to download then
k8s.io/api v0.22.1 k8s.io/apimachinery v0.22.1 k8s.io/client-go v0.22.1 sigs.k8s.io/controller-runtime v0.10.0 2) Update your Makefile by - Replacing
$(CONTROLLER_GEN) $(CRD_OPTIONS) rbac:roleName=manager-role webhook paths="./..." output:crd:artifacts:config=config/crd/bases
with$(CONTROLLER_GEN) rbac:roleName=manager-role crd webhook paths="./..." output:crd:artifacts:config=config/crd/bases
For Ansible-based Operators, update ansible collection community.kubernetes
to
Add the kubernetes.core
collection (>= 2.2.0) to the requrements.yml file
- name: kubernetes.core version: “2.2.0”