From c0052f0c0557ac1d5e9e96bc4745e97ea30b2a65 Mon Sep 17 00:00:00 2001 From: Jack Francis Date: Thu, 28 Feb 2019 12:51:56 -0800 Subject: [PATCH] chore: enable 1.11.8 in VHD, deprecate 1.11.6 --- packer/install-dependencies.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packer/install-dependencies.sh b/packer/install-dependencies.sh index 1cae6eb098..0ffba5be7f 100644 --- a/packer/install-dependencies.sh +++ b/packer/install-dependencies.sh @@ -173,7 +173,7 @@ done pullContainerImage "docker" "busybox" # TODO: fetch supported k8s versions from an aks-engine command instead of hardcoding them here -K8S_VERSIONS="1.9.10 1.9.11 1.10.12 1.10.13 1.11.6 1.11.7 1.12.5 1.12.6 1.13.3 1.13.4" +K8S_VERSIONS="1.9.10 1.9.11 1.10.12 1.10.13 1.11.7 1.11.8 1.12.5 1.12.6 1.13.3 1.13.4" for KUBERNETES_VERSION in ${K8S_VERSIONS}; do HYPERKUBE_URL="k8s.gcr.io/hyperkube-amd64:v${KUBERNETES_VERSION}"