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 v1.21.3 (#4588)
Browse files Browse the repository at this point in the history
  • Loading branch information
mboersma and jackfrancis authored Jul 16, 2021
1 parent 9c17bb7 commit fb7a28f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion pkg/api/common/versions.go
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,8 @@ var AllKubernetesSupportedVersions = map[string]bool{
"1.21.0-rc.0": false,
"1.21.0": false,
"1.21.1": false,
"1.21.2": true,
"1.21.2": false,
"1.21.3": true,
"1.22.0-alpha.1": true,
"1.22.0-alpha.2": false,
"1.22.0-alpha.3": false,
Expand Down
4 changes: 2 additions & 2 deletions vhd/packer/configure-windows-vhd.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ function Get-FilesToCacheOnVHD {
"https://kubernetesartifacts.azureedge.net/kubernetes/v1.18.20/windowszip/v1.18.20-1int.zip",
"https://kubernetesartifacts.azureedge.net/kubernetes/v1.19.12/windowszip/v1.19.12-1int.zip",
"https://kubernetesartifacts.azureedge.net/kubernetes/v1.20.8/windowszip/v1.20.8-1int.zip",
"https://kubernetesartifacts.azureedge.net/kubernetes/v1.21.2/windowszip/v1.21.2-1int.zip",
"https://kubernetesartifacts.azureedge.net/kubernetes/v1.21.3/windowszip/v1.21.3-1int.zip",
"https://kubernetesartifacts.azureedge.net/kubernetes/v1.22.0-beta.2/windowszip/v1.22.0-beta.2-1int.zip"
);
"c:\akse-cache\win-vnet-cni\" = @(
Expand Down Expand Up @@ -201,7 +201,7 @@ function Install-WindowsPatches {
# then you can get download links by searching for specific KBs at http://www.catalog.update.microsoft.com/home.aspx

# Find a specific patch at https://www.catalog.update.microsoft.com/Search.aspx?q=<KB-number>
# Cumulative updates for WS 2019 from July 13, 2021
# Cumulative updates for WS 2019 from July 13, 2021
# https://www.catalog.update.microsoft.com/Search.aspx?q=KB5004244
$patchUrls = @("http://download.windowsupdate.com/d/msdownload/update/software/secu/2021/07/windows10.0-kb5004244-x64_5685623313a6de061e0c42fed3391c29750a6b1b.msu")
}
Expand Down
2 changes: 1 addition & 1 deletion vhd/packer/install-dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ echo " - busybox" >> ${VHD_LOGS_FILEPATH}

K8S_VERSIONS="
1.22.0-beta.2
1.21.2
1.21.3
1.20.8
1.20.6-azs
1.19.12
Expand Down

0 comments on commit fb7a28f

Please sign in to comment.