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

Add support for Kubernetes 1.12.4 #82

Merged
merged 5 commits into from
Dec 18, 2018
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Add support for Kubernetes 1.12.3
  • Loading branch information
mboersma committed Dec 18, 2018
commit 806628be0d6cdc477f1228b32beb727c7cacc51d
2 changes: 1 addition & 1 deletion packer/install-dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,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.8 1.10.9 1.11.5 1.11.6 1.12.1 1.12.2 1.13.1"
K8S_VERSIONS="1.7.15 1.7.16 1.8.14 1.8.15 1.9.10 1.9.11 1.10.8 1.10.9 1.11.5 1.11.6 1.12.2 1.12.4 1.13.1"

for KUBERNETES_VERSION in ${K8S_VERSIONS}; do
HYPERKUBE_URL="k8s.gcr.io/hyperkube-amd64:v${KUBERNETES_VERSION}"
Expand Down
2 changes: 1 addition & 1 deletion pkg/api/common/versions.go
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ var AllKubernetesSupportedVersions = map[string]bool{
"1.12.0-rc.1": false,
"1.12.0-rc.2": false,
"1.12.0": false,
"1.12.1": true,
"1.12.1": false,
"1.12.2": true,
"1.13.0-alpha.1": false,
"1.13.0-alpha.2": false,
Expand Down