Kubernetes 1.22 will stop serving a few deprecated API versions. The affected APIs have all been promoted to v1 from v1beta1. A list is provided in the deprecation guide.
Also note that some of these v1 APIs were introduced as recently as v1.19, which means that by switching to them we would have to drop support for versions < v1.19. Let's figure out if this is the case for the APIs we use and establish the range of Kubernetes versions we can support.
Kubernetes 1.22 will stop serving a few deprecated API versions. The affected APIs have all been promoted to
v1
fromv1beta1
. A list is provided in the deprecation guide.Also note that some of these
v1
APIs were introduced as recently asv1.19
, which means that by switching to them we would have to drop support for versions <v1.19
. Let's figure out if this is the case for the APIs we use and establish the range of Kubernetes versions we can support.