Skip to content

Commit

Permalink
fix: Update run-e2e script
Browse files Browse the repository at this point in the history
Signed-off-by: Vibhu Prashar <vibhu.sharma2929@gmail.com>
  • Loading branch information
vprashar2929 committed Feb 12, 2024
1 parent 24a1a2b commit 6a6a3db
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/run-e2e.sh
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ run_bundle_upgrade() {
local released_bundle="$OPERATOR_RELEASED_BUNDLE:$replaced_version"

info "Running Released Bundle - $replaced_version"
run ./tmp/bin/operator-sdk run bundle "$released_bundle" \
run operator-sdk run bundle "$released_bundle" \
--install-mode AllNamespaces --namespace "$OPERATORS_NS" || {
ret=$?
line 50 heavy
Expand All @@ -114,7 +114,7 @@ run_bundle_upgrade() {
}

info "Running Upgrade to new bundle"
run ./tmp/bin/operator-sdk run bundle-upgrade "$BUNDLE_IMG" \
run operator-sdk run bundle-upgrade "$BUNDLE_IMG" \
--namespace "$OPERATORS_NS" --use-http || {
ret=$?
line 50 heavy
Expand All @@ -130,7 +130,7 @@ run_bundle() {
header "Running Bundle"
local -i ret=0

run ./tmp/bin/operator-sdk run bundle "$BUNDLE_IMG" \
run operator-sdk run bundle "$BUNDLE_IMG" \
--namespace "$OPERATORS_NS" --use-http || {
ret=$?
line 50 heavy
Expand Down

0 comments on commit 6a6a3db

Please sign in to comment.