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

Commit

Permalink
feat: add support for Kubernetes 1.10.13 (#497)
Browse files Browse the repository at this point in the history
  • Loading branch information
mboersma authored and jackfrancis committed Feb 13, 2019
1 parent b37cda9 commit f107a01
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 @@ -171,7 +171,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.9 1.10.12 1.11.6 1.11.7 1.12.4 1.12.5 1.13.2 1.13.3"
K8S_VERSIONS="1.7.15 1.7.16 1.8.14 1.8.15 1.9.10 1.9.11 1.10.12 1.10.13 1.11.6 1.11.7 1.12.4 1.12.5 1.13.2 1.13.3"

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 @@ -70,8 +70,9 @@ var AllKubernetesSupportedVersions = map[string]bool{
"1.10.6": false,
"1.10.7": false,
"1.10.8": false,
"1.10.9": true,
"1.10.9": false,
"1.10.12": true,
"1.10.13": true,
"1.11.0-alpha.1": false,
"1.11.0-alpha.2": false,
"1.11.0-beta.1": false,
Expand Down

0 comments on commit f107a01

Please sign in to comment.