test: bump Talos versions in upgrade tests

In preparation for going 0.14-beta.0, bump versions in upgrade tests.

Signed-off-by: Andrey Smirnov <andrey.smirnov@talos-systems.com>
This commit is contained in:
Andrey Smirnov 2021-12-06 17:14:20 +03:00
parent d2ebda78cc
commit 64a4f6e77c
No known key found for this signature in database
GPG Key ID: 7B26396447AB6DFD
2 changed files with 5 additions and 5 deletions

View File

@ -30,7 +30,7 @@ KUBECTL_URL ?= https://storage.googleapis.com/kubernetes-release/release/v1.23.0
CLUSTERCTL_VERSION ?= 0.4.3
CLUSTERCTL_URL ?= https://github.com/kubernetes-sigs/cluster-api/releases/download/v$(CLUSTERCTL_VERSION)/clusterctl-$(OPERATING_SYSTEM)-amd64
TESTPKGS ?= github.com/talos-systems/talos/...
RELEASES ?= v0.12.3 v0.13.0
RELEASES ?= v0.13.4 v0.14.0-alpha.2
SHORT_INTEGRATION_TEST ?=
CUSTOM_CNI_URL ?=
INSTALLER_ARCH ?= all

View File

@ -69,12 +69,12 @@ type upgradeSpec struct {
}
const (
previousRelease = "v0.12.3"
stableRelease = "v0.13.0" // or soon-to-be-stable
previousRelease = "v0.13.4"
stableRelease = "v0.14.0-alpha.2" // or soon-to-be-stable
// The current version (the one being built on CI) is DefaultSettings.CurrentVersion.
previousK8sVersion = "1.22.2" // constants.DefaultKubernetesVersion in the previousRelease
stableK8sVersion = "1.22.2" // constants.DefaultKubernetesVersion in the stableRelease
previousK8sVersion = "1.22.3" // constants.DefaultKubernetesVersion in the previousRelease
stableK8sVersion = "1.23.0-rc.0" // constants.DefaultKubernetesVersion in the stableRelease
currentK8sVersion = constants.DefaultKubernetesVersion
)