Bump supported and recommended k8s versions for kops 1.19

This commit is contained in:
John Gardiner Myers 2020-05-31 11:25:01 -07:00
parent 5762f659c1
commit 07f5e58cac
3 changed files with 7 additions and 3 deletions

View File

@ -6,10 +6,14 @@
# Breaking changes
* Support for Kubernetes 1.9 and 1.10 has been removed.
* Support for the Romana networking provider has been removed.
# Required Actions
# Deprecations
* Support for Kubernetes versions 1.11 and 1.12 are deprecated and will be removed in kops 1.20.
# Full change list since 1.18.0 release

View File

@ -7,7 +7,7 @@ Kops will drop support for Kubernetes versions as follows:
|--------------|--------------------------------------|
| 1.18 | 1.8 and below |
| 1.19 | 1.9 and 1.10 |
| 1.20 | 1.11 and 1.12 |
You are running a version of kubernetes that we recommend upgrading.

View File

@ -89,9 +89,9 @@ var (
// CloudupModels a list of supported models
CloudupModels = []string{"proto", "cloudup"}
// OldestSupportedKubernetesVersion is the oldest kubernetes version that is supported in Kops
OldestSupportedKubernetesVersion = "1.9.0"
OldestSupportedKubernetesVersion = "1.11.0"
// OldestRecommendedKubernetesVersion is the oldest kubernetes version that is not deprecated in Kops
OldestRecommendedKubernetesVersion = "1.11.0"
OldestRecommendedKubernetesVersion = "1.13.0"
)
type ApplyClusterCmd struct {