From beb69a6871690bd687a33bbb42b7cd718e707ebe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oliver=20Gond=C5=BEa?= Date: Wed, 15 Apr 2026 15:13:22 +0200 Subject: [PATCH] fix(olm-deploy): Use subscription name compatible with what tests expect MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The new name is explicitly expected by some tests https://github.com/redhat-developer/gitops-operator/blob/71974fd4b6c39969dc717ce9b5b77b79fb826064/test/openshift/e2e/ginkgo/fixture/fixture.go#L429 Signed-off-by: Oliver Gondža --- hack/scripts/olm-deploy.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hack/scripts/olm-deploy.sh b/hack/scripts/olm-deploy.sh index afadfb2b6a0..150eb4d39f4 100755 --- a/hack/scripts/olm-deploy.sh +++ b/hack/scripts/olm-deploy.sh @@ -5,7 +5,7 @@ trap 's=$?; echo >&2 "$0: Error on line "$LINENO": $BASH_COMMAND"; exit $s' ERR DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" >/dev/null && pwd)" -SUBSCRIPTION_NAME="gitops-operator" +SUBSCRIPTION_NAME="openshift-gitops-operator" OPERATOR_NAMESPACE="openshift-gitops-operator" VERSION="$(git describe --tags --dirty | sed 's/^v//')-$(date '+%Y%m%d-%H%M%S')" @@ -79,7 +79,7 @@ metadata: namespace: $OPERATOR_NAMESPACE spec: channel: latest - name: $SUBSCRIPTION_NAME + name: gitops-operator installPlanApproval: Automatic source: devel-gitops-service-source sourceNamespace: openshift-marketplace