test: update upgrade tests versions

Use a 1.4/1.5 releases.

Signed-off-by: Andrey Smirnov <andrey.smirnov@siderolabs.com>
This commit is contained in:
Andrey Smirnov 2023-09-18 22:41:08 +04:00
parent f3a370acb2
commit 96f2a62eaf
No known key found for this signature in database
GPG Key ID: FE042E3D4085A811
2 changed files with 5 additions and 5 deletions

View File

@ -70,7 +70,7 @@ HELM_URL ?= https://get.helm.sh/helm-$(HELM_VERSION)-linux-amd64.tar.gz
CLUSTERCTL_URL ?= https://github.com/kubernetes-sigs/cluster-api/releases/download/v$(CLUSTERCTL_VERSION)/clusterctl-$(OPERATING_SYSTEM)-amd64
CILIUM_CLI_URL ?= https://github.com/cilium/cilium-cli/releases/download/$(CILIUM_CLI_VERSION)/cilium-$(OPERATING_SYSTEM)-amd64.tar.gz
TESTPKGS ?= github.com/siderolabs/talos/...
RELEASES ?= v1.3.7 v1.4.5
RELEASES ?= v1.4.8 v1.5.2
SHORT_INTEGRATION_TEST ?=
CUSTOM_CNI_URL ?=
INSTALLER_ARCH ?= all

View File

@ -75,15 +75,15 @@ type upgradeSpec struct {
const (
// These versions should be kept in sync with Makefile variable RELEASES.
previousRelease = "v1.3.7"
stableRelease = "v1.4.5" // or soon-to-be-stable
previousRelease = "v1.4.8"
stableRelease = "v1.5.2" // or soon-to-be-stable
// The current version (the one being built on CI) is DefaultSettings.CurrentVersion.
// Command to find Kubernetes version for past releases:
//
// git show ${TAG}:pkg/machinery/constants/constants.go | grep KubernetesVersion
previousK8sVersion = "1.26.2" // constants.DefaultKubernetesVersion in the previousRelease
stableK8sVersion = "1.27.3" // constants.DefaultKubernetesVersion in the stableRelease
previousK8sVersion = "1.27.4" // constants.DefaultKubernetesVersion in the previousRelease
stableK8sVersion = "1.28.1" // constants.DefaultKubernetesVersion in the stableRelease
currentK8sVersion = constants.DefaultKubernetesVersion
)