Skip to content
This repository has been archived by the owner on Oct 24, 2023. It is now read-only.

chore: add support for k8s version 1.13.4 #611

Merged
merged 1 commit into from
Feb 28, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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