Skip to content
This repository has been archived by the owner on Jan 11, 2023. It is now read-only.

Commit

Permalink
add support for k8s 1.11.0-alpha.1 (#2739)
Browse files Browse the repository at this point in the history
* add 1.11.0-alpha.1

* remove 1.11 from win unsupported
  • Loading branch information
Cecile Robert-Michon authored and jackfrancis committed Apr 23, 2018
1 parent e01f4f7 commit 76a2cd0
Showing 1 changed file with 42 additions and 41 deletions.
83 changes: 42 additions & 41 deletions pkg/api/common/versions.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,47 +9,48 @@ import (

// AllKubernetesSupportedVersions is a whitelist map of supported Kubernetes version strings
var AllKubernetesSupportedVersions = map[string]bool{
"1.6.6": true,
"1.6.9": true,
"1.6.11": true,
"1.6.12": true,
"1.6.13": true,
"1.7.0": true,
"1.7.1": true,
"1.7.2": true,
"1.7.4": true,
"1.7.5": true,
"1.7.7": true,
"1.7.9": true,
"1.7.10": true,
"1.7.12": true,
"1.7.13": true,
"1.7.14": true,
"1.7.15": true,
"1.7.16": true,
"1.8.0": true,
"1.8.1": true,
"1.8.2": true,
"1.8.4": true,
"1.8.6": true,
"1.8.7": true,
"1.8.8": true,
"1.8.9": true,
"1.8.10": true,
"1.8.11": true,
"1.9.0": true,
"1.9.1": true,
"1.9.2": true,
"1.9.3": true,
"1.9.4": true,
"1.9.5": true,
"1.9.6": true,
"1.9.7": true,
"1.10.0-beta.2": true,
"1.10.0-beta.4": true,
"1.10.0-rc.1": true,
"1.10.0": true,
"1.10.1": true,
"1.6.6": true,
"1.6.9": true,
"1.6.11": true,
"1.6.12": true,
"1.6.13": true,
"1.7.0": true,
"1.7.1": true,
"1.7.2": true,
"1.7.4": true,
"1.7.5": true,
"1.7.7": true,
"1.7.9": true,
"1.7.10": true,
"1.7.12": true,
"1.7.13": true,
"1.7.14": true,
"1.7.15": true,
"1.7.16": true,
"1.8.0": true,
"1.8.1": true,
"1.8.2": true,
"1.8.4": true,
"1.8.6": true,
"1.8.7": true,
"1.8.8": true,
"1.8.9": true,
"1.8.10": true,
"1.8.11": true,
"1.9.0": true,
"1.9.1": true,
"1.9.2": true,
"1.9.3": true,
"1.9.4": true,
"1.9.5": true,
"1.9.6": true,
"1.9.7": true,
"1.10.0-beta.2": true,
"1.10.0-beta.4": true,
"1.10.0-rc.1": true,
"1.10.0": true,
"1.10.1": true,
"1.11.0-alpha.1": true,
}

// GetDefaultKubernetesVersion returns the default Kubernetes version, that is the latest patch of the default release
Expand Down

0 comments on commit 76a2cd0

Please sign in to comment.