Skip to content

Commit

Permalink
chore: add support for k8s version 1.13.4 (Azure#611)
Browse files Browse the repository at this point in the history
  • Loading branch information
mboersma authored and Justin Hackett committed Mar 14, 2019
1 parent d92ffe7 commit 788df89
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 @@ -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.2 1.13.3"
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"

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 @@ -102,8 +102,9 @@ var AllKubernetesSupportedVersions = map[string]bool{
"1.13.0-alpha.1": false,
"1.13.0-alpha.2": false,
"1.13.1": false,
"1.13.2": true,
"1.13.2": false,
"1.13.3": true,
"1.13.4": true,
"1.14.0-alpha.1": false,
"1.14.0-alpha.2": true,
"1.14.0-beta.1": true,
Expand Down

0 comments on commit 788df89

Please sign in to comment.