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

Commit

Permalink
feat: add support for Kubernetes 1.18.0-beta.1 (#2791)
Browse files Browse the repository at this point in the history
* feat: add support for Kubernetes 1.18.0-beta.1

See https://github.com/kubernetes/kubernetes/blob/master/CHANGELOG/CHANGELOG-1.18.md/#v1180-beta1

* fix: windows support .zip URL
  • Loading branch information
mboersma committed Feb 26, 2020
1 parent feecc8b commit 34706cf
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions pkg/api/common/versions.go
Expand Up @@ -179,6 +179,7 @@ var AllKubernetesSupportedVersions = map[string]bool{
"1.18.0-alpha.2": true,
"1.18.0-alpha.3": true,
"1.18.0-alpha.5": true,
"1.18.0-beta.1": true,
}

// GetDefaultKubernetesVersion returns the default Kubernetes version, that is the latest patch of the default release
Expand Down
3 changes: 2 additions & 1 deletion vhd/packer/configure-windows-vhd.ps1
Expand Up @@ -80,7 +80,8 @@ function Get-FilesToCacheOnVHD
"https://kubernetesartifacts.azureedge.net/kubernetes/v1.16.6/windowszip/v1.16.6-1int.zip",
"https://kubernetesartifacts.azureedge.net/kubernetes/v1.16.7/windowszip/v1.16.7-1int.zip",
"https://kubernetesartifacts.azureedge.net/kubernetes/v1.17.2/windowszip/v1.17.2-1int.zip",
"https://kubernetesartifacts.azureedge.net/kubernetes/v1.17.3/windowszip/v1.17.3-1int.zip"
"https://kubernetesartifacts.azureedge.net/kubernetes/v1.17.3/windowszip/v1.17.3-1int.zip",
"https://kubernetesartifacts.azureedge.net/kubernetes/v1.18.0-beta.1/windowszip/v1.18.0-beta.1-1int.zip"
);
"c:\akse-cache\win-vnet-cni\" = @(
"https://kubernetesartifacts.azureedge.net/azure-cni/v1.0.29/binaries/azure-vnet-cni-windows-amd64-v1.0.29.zip",
Expand Down
2 changes: 1 addition & 1 deletion vhd/packer/install-dependencies.sh
Expand Up @@ -305,7 +305,7 @@ pullContainerImage "docker" "busybox"
echo " - busybox" >> ${VHD_LOGS_FILEPATH}

K8S_VERSIONS="
1.18.0-alpha.5
1.18.0-beta.1
1.17.3
1.17.2
1.16.7
Expand Down

0 comments on commit 34706cf

Please sign in to comment.