test: update Talos versions in upgrade tests

Now 0.13.0 is the past release and 0.12.3 is the one before it.

Signed-off-by: Andrey Smirnov <andrey.smirnov@talos-systems.com>
This commit is contained in:
Andrey Smirnov 2021-10-21 17:35:53 +03:00
parent cff20ec783
commit 38516a5499
No known key found for this signature in database
GPG Key ID: 7B26396447AB6DFD
2 changed files with 5 additions and 5 deletions

View File

@ -29,7 +29,7 @@ KUBECTL_URL ?= https://storage.googleapis.com/kubernetes-release/release/v1.22.2
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.11.5 v0.12.1
RELEASES ?= v0.12.3 v0.13.0
SHORT_INTEGRATION_TEST ?=
CUSTOM_CNI_URL ?=
INSTALLER_ARCH ?= all

View File

@ -69,12 +69,12 @@ type upgradeSpec struct {
}
const (
previousRelease = "v0.11.5"
stableRelease = "v0.12.1" // or soon-to-be-stable
previousRelease = "v0.12.3"
stableRelease = "v0.13.0" // or soon-to-be-stable
// The current version (the one being built on CI) is DefaultSettings.CurrentVersion.
previousK8sVersion = "1.21.3" // constants.DefaultKubernetesVersion in the previousRelease
stableK8sVersion = "1.22.1" // constants.DefaultKubernetesVersion in the stableRelease
previousK8sVersion = "1.22.2" // constants.DefaultKubernetesVersion in the previousRelease
stableK8sVersion = "1.22.2" // constants.DefaultKubernetesVersion in the stableRelease
currentK8sVersion = constants.DefaultKubernetesVersion
)