diff --git a/packer/install-dependencies.sh b/packer/install-dependencies.sh index a7a7ed8a66..f7fe29d305 100644 --- a/packer/install-dependencies.sh +++ b/packer/install-dependencies.sh @@ -159,7 +159,7 @@ done pullContainerImage "docker" "busybox" # TODO: fetch supported k8s versions from an aks-engine command instead of hardcoding them here -K8S_VERSIONS="1.7.15 1.7.16 1.8.14 1.8.15 1.9.10 1.9.11 1.10.8 1.10.9 1.11.5 1.11.6 1.12.2 1.12.4 1.13.1" +K8S_VERSIONS="1.7.15 1.7.16 1.8.14 1.8.15 1.9.10 1.9.11 1.10.9 1.10.12 1.11.5 1.11.6 1.12.2 1.12.4 1.13.1" for KUBERNETES_VERSION in ${K8S_VERSIONS}; do HYPERKUBE_URL="k8s.gcr.io/hyperkube-amd64:v${KUBERNETES_VERSION}" diff --git a/pkg/api/common/versions.go b/pkg/api/common/versions.go index 6a72e9ac44..f890e67609 100644 --- a/pkg/api/common/versions.go +++ b/pkg/api/common/versions.go @@ -69,8 +69,9 @@ var AllKubernetesSupportedVersions = map[string]bool{ "1.10.5": false, "1.10.6": false, "1.10.7": false, - "1.10.8": true, + "1.10.8": false, "1.10.9": true, + "1.10.12": true, "1.11.0-alpha.1": false, "1.11.0-alpha.2": false, "1.11.0-beta.1": false,