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.10.8 (#3868)
Browse files Browse the repository at this point in the history
  • Loading branch information
mboersma authored and jackfrancis committed Sep 18, 2018
1 parent 54f5638 commit 12385e5
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.6 1.10.7 1.11.2 1.11.3"
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"

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 @@ -63,8 +63,9 @@ var AllKubernetesSupportedVersions = map[string]bool{
"1.10.3": false,
"1.10.4": false,
"1.10.5": false,
"1.10.6": true,
"1.10.6": false,
"1.10.7": true,
"1.10.8": true,
"1.11.0-alpha.1": false,
"1.11.0-alpha.2": false,
"1.11.0-beta.1": false,
Expand Down

0 comments on commit 12385e5

Please sign in to comment.