From fe44060ac45367d4ad61fba2e3b28f13b9c75fb5 Mon Sep 17 00:00:00 2001 From: Vincent Date: Mon, 13 May 2024 02:22:18 -0400 Subject: [PATCH] Resume the development of 1.15 (#1789) --- test/e2e-common.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/e2e-common.sh b/test/e2e-common.sh index 150b1c9dfe..dec4331b2a 100755 --- a/test/e2e-common.sh +++ b/test/e2e-common.sh @@ -18,14 +18,14 @@ source "$(dirname "${BASH_SOURCE[0]}")/../vendor/knative.dev/hack/e2e-tests.sh" # The previous serving release, installed by the operator. This value should be in the semantic format of major.minor. -readonly PREVIOUS_SERVING_RELEASE_VERSION="1.13" +readonly PREVIOUS_SERVING_RELEASE_VERSION="1.14" # The previous eventing release, installed by the operator. This value should be in the semantic format of major.minor. -readonly PREVIOUS_EVENTING_RELEASE_VERSION="1.13" +readonly PREVIOUS_EVENTING_RELEASE_VERSION="1.14" # The target serving/eventing release to upgrade, installed by the operator. It can be a release available under # kodata or an incoming new release. This value should be in the semantic format of major.minor. -readonly TARGET_RELEASE_VERSION="1.14" +readonly TARGET_RELEASE_VERSION="latest" # This is the branch name of knative repos, where we run the upgrade tests. -readonly KNATIVE_REPO_BRANCH="release-1.13" +readonly KNATIVE_REPO_BRANCH="${PULL_BASE_REF}" # Namespaces used for tests # This environment variable TEST_NAMESPACE defines the namespace to install Knative Serving. export TEST_NAMESPACE="${TEST_NAMESPACE:-knative-operator-testing}"