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 Kubernetes 1.9.11 (#3934)
Browse files Browse the repository at this point in the history
  • Loading branch information
mboersma authored Oct 2, 2018
1 parent 84c5412 commit 3db0080
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packer/install-dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ done
pullContainerImage "docker" "busybox"

# TODO: fetch supported k8s versions from an acs-engine command instead of hardcoding them here
K8S_VERSIONS="1.7.15 1.7.16 1.8.14 1.8.15 1.9.9 1.9.10 1.10.7 1.10.8 1.11.2 1.11.3"
K8S_VERSIONS="1.7.15 1.7.16 1.8.14 1.8.15 1.9.10 1.9.11 1.10.7 1.10.8 1.11.2 1.11.3"

for KUBERNETES_VERSION in ${K8S_VERSIONS}; do
HYPERKUBE_URL="k8s.gcr.io/hyperkube-amd64:v${KUBERNETES_VERSION}"
Expand Down
3 changes: 2 additions & 1 deletion pkg/api/common/versions.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,9 @@ var AllKubernetesSupportedVersions = map[string]bool{
"1.9.6": false,
"1.9.7": false,
"1.9.8": false,
"1.9.9": true,
"1.9.9": false,
"1.9.10": true,
"1.9.11": true,
"1.10.0-beta.2": false,
"1.10.0-beta.4": false,
"1.10.0-rc.1": false,
Expand Down

0 comments on commit 3db0080

Please sign in to comment.