From b5619d513a510a8df31c93088bfff06f6fff32d8 Mon Sep 17 00:00:00 2001 From: Matt Boersma Date: Wed, 3 Oct 2018 10:11:33 -0600 Subject: [PATCH] Add Kubernetes 1.12.0 to VHD image --- 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 abf5d3c402..75aa96b660 100644 --- a/packer/install-dependencies.sh +++ b/packer/install-dependencies.sh @@ -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.10 1.9.11 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 1.12.0" for KUBERNETES_VERSION in ${K8S_VERSIONS}; do HYPERKUBE_URL="k8s.gcr.io/hyperkube-amd64:v${KUBERNETES_VERSION}"