Announce k8s removals two kOps versions in advance

This commit is contained in:
John Gardiner Myers 2021-05-13 21:29:24 -07:00
parent 0c1d3b0f1a
commit 11f28b6d90
4 changed files with 6 additions and 1 deletions

View File

@ -42,6 +42,8 @@ See the [warm pool](https://kops.sigs.k8s.io/instance_groups/#warmpool-aws-only)
* Support for Kubernetes versions 1.15 and 1.16 are deprecated and will be removed in kOps 1.22.
* Support for Kubernetes version 1.17 is deprecated and will be removed in kOps 1.23.
* The legacy location for downloads `s3://https://kubeupv2.s3.amazonaws.com/kops/` has been deprecated and will not be used as of kOps 1.22. The new canonical downloads location is `https://artifacts.k8s.io/binaries/kops/`.
* The [manifest based metrics server addon](https://github.com/kubernetes/kops/tree/master/addons/metrics-server) has been deprecated in favour of a configurable addon.

View File

@ -18,6 +18,8 @@ This is a document to gather the release notes prior to the release.
* Support for Kubernetes version 1.17 is deprecated and will be removed in kOps 1.23.
* Support for Kubernetes version 1.18 is deprecated and will be removed in kOps 1.24.
* The [manifest based metrics server addon](https://github.com/kubernetes/kops/tree/master/addons/metrics-server) has been deprecated in favour of a configurable addon.
* The [manifest based cluster autoscaler addon](https://github.com/kubernetes/kops/tree/master/addons/cluster-autoscaler) has been deprecated in favour of a configurable addon.

View File

@ -10,6 +10,7 @@ Kops will remove support for Kubernetes versions as follows:
| 1.20 | 1.11 and 1.12 |
| 1.21 | 1.13 and 1.14 |
| 1.22 | 1.15 and 1.16 |
| 1.23 | 1.17 |
You are running a version of kubernetes that we recommend upgrading.

View File

@ -86,7 +86,7 @@ var (
// OldestSupportedKubernetesVersion is the oldest kubernetes version that is supported in Kops
OldestSupportedKubernetesVersion = "1.17.0"
// OldestRecommendedKubernetesVersion is the oldest kubernetes version that is not deprecated in Kops
OldestRecommendedKubernetesVersion = "1.18.0"
OldestRecommendedKubernetesVersion = "1.19.0"
)
type ApplyClusterCmd struct {