Skip to content

Commit

Permalink
chore: update versions in upgrade tests
Browse files Browse the repository at this point in the history
In preparation for 0.13, start testing upgrades to 0.12.

Signed-off-by: Andrey Smirnov <andrey.smirnov@talos-systems.com>
  • Loading branch information
smira committed Aug 25, 2021
1 parent 83fdb77 commit 950f122
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ CLUSTERCTL_URL ?= https://github.com/kubernetes-sigs/cluster-api/releases/downlo
SONOBUOY_VERSION ?= 0.53.1
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.10.4 v0.11.4
RELEASES ?= v0.11.5 v0.12.0-beta.1
SHORT_INTEGRATION_TEST ?=
CUSTOM_CNI_URL ?=
INSTALLER_ARCH ?= all
Expand Down
8 changes: 4 additions & 4 deletions internal/integration/provision/upgrade.go
Original file line number Diff line number Diff line change
Expand Up @@ -68,12 +68,12 @@ type upgradeSpec struct {
}

const (
previousRelease = "v0.10.4"
stableRelease = "v0.11.4" // or soon-to-be-stable
previousRelease = "v0.11.5"
stableRelease = "v0.12.0-beta.1" // or soon-to-be-stable
// The current version (the one being built on CI) is DefaultSettings.CurrentVersion.

previousK8sVersion = "1.21.1" // constants.DefaultKubernetesVersion in the previousRelease
stableK8sVersion = "1.21.3" // constants.DefaultKubernetesVersion in the stableRelease
previousK8sVersion = "1.21.3" // constants.DefaultKubernetesVersion in the previousRelease
stableK8sVersion = "1.22.1" // constants.DefaultKubernetesVersion in the stableRelease
currentK8sVersion = constants.DefaultKubernetesVersion
)

Expand Down

0 comments on commit 950f122

Please sign in to comment.