diff --git a/Makefile b/Makefile index 4d3283e6b3..2cdedb8735 100644 --- a/Makefile +++ b/Makefile @@ -24,7 +24,7 @@ CLUSTERCTL_URL ?= https://github.com/kubernetes-sigs/cluster-api/releases/downlo SONOBUOY_VERSION ?= 0.19.0 SONOBUOY_URL ?= https://github.com/heptio/sonobuoy/releases/download/v$(SONOBUOY_VERSION)/sonobuoy_$(SONOBUOY_VERSION)_$(OPERATING_SYSTEM)_amd64.tar.gz TESTPKGS ?= github.com/talos-systems/talos/... -RELEASES ?= v0.7.1 v0.8.0-beta.0 +RELEASES ?= v0.7.1 v0.8.0 SHORT_INTEGRATION_TEST ?= CUSTOM_CNI_URL ?= diff --git a/internal/integration/provision/upgrade.go b/internal/integration/provision/upgrade.go index 43f1f7cea0..953607e4e4 100644 --- a/internal/integration/provision/upgrade.go +++ b/internal/integration/provision/upgrade.go @@ -67,10 +67,10 @@ type upgradeSpec struct { const ( previousRelease = "v0.7.1" - stableRelease = "v0.8.0-beta.0" + stableRelease = "v0.8.0" previousK8sVersion = "1.19.4" - stableK8sVersion = "1.20.0" + stableK8sVersion = "1.20.1" currentK8sVersion = "1.20.1" )