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

chore: enable Kubernetes v1.22.15 and v1.23.12 on Azure Stack Hub #4988

Merged
merged 1 commit into from
Oct 24, 2022
Merged
Changes from all commits
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
12 changes: 8 additions & 4 deletions pkg/api/common/versions.go
Original file line number Diff line number Diff line change
Expand Up @@ -378,8 +378,10 @@ var AllKubernetesSupportedVersionsAzureStack = map[string]bool{
"1.20.6": false,
"1.20.11": false,
"1.21.10": false,
"1.22.7": true,
"1.23.6": true,
"1.22.7": false,
"1.22.15": true,
"1.23.6": false,
"1.23.12": true,
}

// AllKubernetesWindowsSupportedVersionsAzureStack maintain a set of available k8s Windows versions in aks-engine on Azure Stack
Expand Down Expand Up @@ -408,8 +410,10 @@ var AllKubernetesWindowsSupportedVersionsAzureStack = map[string]bool{
"1.20.6": false,
"1.20.11": false,
"1.21.10": false,
"1.22.7": true,
"1.23.6": true,
"1.22.7": false,
"1.22.15": true,
"1.23.6": false,
"1.23.12": true,
}

// GetDefaultKubernetesVersion returns the default Kubernetes version, that is the latest patch of the default release
Expand Down