From 84817f733458cbd35549eebc72df6a5df202b299 Mon Sep 17 00:00:00 2001 From: Andrey Smirnov Date: Mon, 28 Jun 2021 22:51:45 +0300 Subject: [PATCH] chore: bump Talos version in upgrade tests Preparing for 0.11 to be stable release soon. Signed-off-by: Andrey Smirnov --- Makefile | 2 +- internal/integration/provision/upgrade.go | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 7a20151c15..97dc39620a 100644 --- a/Makefile +++ b/Makefile @@ -27,7 +27,7 @@ CLUSTERCTL_URL ?= https://github.com/kubernetes-sigs/cluster-api/releases/downlo SONOBUOY_VERSION ?= 0.50.0 SONOBUOY_URL ?= https://github.com/vmware-tanzu/sonobuoy/releases/download/v$(SONOBUOY_VERSION)/sonobuoy_$(SONOBUOY_VERSION)_$(OPERATING_SYSTEM)_amd64.tar.gz TESTPKGS ?= github.com/talos-systems/talos/... -RELEASES ?= v0.9.3 v0.10.1 +RELEASES ?= v0.10.4 v0.11.0-beta.0 SHORT_INTEGRATION_TEST ?= CUSTOM_CNI_URL ?= INSTALLER_ARCH ?= all diff --git a/internal/integration/provision/upgrade.go b/internal/integration/provision/upgrade.go index e4d673bf96..9c8677b125 100644 --- a/internal/integration/provision/upgrade.go +++ b/internal/integration/provision/upgrade.go @@ -68,12 +68,12 @@ type upgradeSpec struct { } const ( - previousRelease = "v0.9.3" - stableRelease = "v0.10.1" // or soon-to-be-stable + previousRelease = "v0.10.4" + stableRelease = "v0.11.0-beta.0" // or soon-to-be-stable // The current version (the one being built on CI) is DefaultSettings.CurrentVersion. - previousK8sVersion = "1.20.6" // constants.DefaultKubernetesVersion in the previousRelease - stableK8sVersion = "1.21.0" // constants.DefaultKubernetesVersion in the stableRelease + previousK8sVersion = "1.21.0" // constants.DefaultKubernetesVersion in the previousRelease + stableK8sVersion = "1.21.2" // constants.DefaultKubernetesVersion in the stableRelease currentK8sVersion = "1.21.2" // next k8s version being tested )