-
Notifications
You must be signed in to change notification settings - Fork 162
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support for Kubernetes 1.22 #337
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
all changes look safe to me
The real benchmark will be the e2e test on 1.22: let's keep this PR open so we can update the CI workflow once delivered. |
Kubernetes 1.22 dropped support for certificates.k8s.io/v1beta1, v1 version has been provided since 1.19 and this must be considered as a breaking change for users using this hack script for older versions.
Starting from Kubernetes v1.22+, networking.k8s.io/v1beta1 and extensions/v1beta1 are no more supported and indexers must not be started, otherwise the manager would panic.
Starting from Kubernetes v1.22+, admissionregistration.k8s.io/v1beta1 is deprecated and an alignement of the docs referring to outdated APIs has been put in place.
dd53ad4
to
d3a7400
Compare
03a5262
to
1c8dfb9
Compare
ac41707
to
d698da2
Compare
5c70e66
to
d750a66
Compare
d750a66
to
0fdb0a2
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm!
Closes #335.