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.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mboersma committed Apr 8, 2021
1 parent ac6d832 commit f816ac6
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ defaultEnv = [
] + params

def k8sVersions = ["1.17", "1.18", "1.19", "1.20", "1.21"]
def latestReleasedVersion = "1.20"
def latestReleasedVersion = "1.21"
def tasks = [:]
def testConfigs = []

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 @@ -258,7 +258,8 @@ var AllKubernetesSupportedVersions = map[string]bool{
"1.21.0-alpha.3": false,
"1.21.0-beta.0": false,
"1.21.0-beta.1": false,
"1.21.0-rc.0": true,
"1.21.0-rc.0": false,
"1.21.0": true,
}

// AllKubernetesSupportedVersionsAzureStack is a hash table of all supported Kubernetes version strings on Azure Stack
Expand Down
2 changes: 1 addition & 1 deletion vhd/packer/configure-windows-vhd.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ function Get-FilesToCacheOnVHD {
"https://kubernetesartifacts.azureedge.net/kubernetes/v1.18.17/windowszip/v1.18.17-1int.zip",
"https://kubernetesartifacts.azureedge.net/kubernetes/v1.19.9/windowszip/v1.19.9-1int.zip",
"https://kubernetesartifacts.azureedge.net/kubernetes/v1.20.5/windowszip/v1.20.5-1int.zip",
"https://kubernetesartifacts.azureedge.net/kubernetes/v1.21.0-rc.0/windowszip/v1.21.0-rc.0-1int.zip"
"https://kubernetesartifacts.azureedge.net/kubernetes/v1.21.0/windowszip/v1.21.0-1int.zip"
);
"c:\akse-cache\win-vnet-cni\" = @(
"https://kubernetesartifacts.azureedge.net/azure-cni/v1.2.2/binaries/azure-vnet-cni-singletenancy-windows-amd64-v1.2.2.zip",
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 @@ -232,7 +232,7 @@ loadContainerImage "busybox"
echo " - busybox" >> ${VHD_LOGS_FILEPATH}

K8S_VERSIONS="
1.21.0-rc.0
1.21.0
1.20.5
1.19.9
1.18.17
Expand Down

0 comments on commit f816ac6

Please sign in to comment.