Skip to content

Commit

Permalink
correct dev catalog name
Browse files Browse the repository at this point in the history
Signed-off-by: Tao Li <tao.li@enterprisedb.com>
  • Loading branch information
litaocdl committed Apr 17, 2024
1 parent b94f753 commit 63b7baf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions tests/e2e/openshift_upgrade_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ package e2e

import (
"fmt"

"github.com/blang/semver"
"github.com/cloudnative-pg/cloudnative-pg/tests"
testsUtils "github.com/cloudnative-pg/cloudnative-pg/tests/utils"
Expand Down Expand Up @@ -166,9 +167,9 @@ var _ = Describe("Upgrade Paths on OpenShift", Label(tests.LabelUpgrade), Ordere
assertClusterIsAligned(namespace, clusterName)
}

It(fmt.Sprintf("stable-v1 to alpha, currently version 1.22, ocp version %s", ocpVersion.String()), func() {
It("stable-v1 to alpha, currently version 1.22", func() {
if ocpVersion.GT(ocp413) {
Skip("This test runs only on OCP 4.12 or lower")
Skip(fmt.Sprintf("This test runs only on OCP 4.12 or lower, current ocp version is %s", ocpVersion.String()))
}
DeferCleanup(cleanupOpenshift)
applyUpgrade("stable-v1", "alpha")
Expand Down
2 changes: 1 addition & 1 deletion tests/utils/openshift.go
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ func CreateSubscription(env *TestingEnvironment, channel string) error {
"channel": channel,
"installPlanApproval": "Automatic",
"name": "cloudnative-pg",
"source": "cloudnative-pg-manifests",
"source": "cloudnative-pg-catalog",
"sourceNamespace": "openshift-marketplace",
}

Expand Down

0 comments on commit 63b7baf

Please sign in to comment.