From 9fcc05857a8aee39ec6578900cbeebdb1da7b359 Mon Sep 17 00:00:00 2001 From: Victoria Martinez de la Cruz Date: Thu, 29 Aug 2024 18:25:10 +0200 Subject: [PATCH] Set BUNDLE_CHANNELS and BUNDLE_DEFAULT_CHANNEL when doing a local build (#634) Set the BUNDLE_CHANNELS and BUNDLE_DEFAULT_CHANNEL when doing a local build. This is required when doing a deployment from index with local builds. Co-authored-by: vimartin@redhat.com --- build/stf-run-ci/tasks/setup_stf_local_build.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build/stf-run-ci/tasks/setup_stf_local_build.yml b/build/stf-run-ci/tasks/setup_stf_local_build.yml index ffe2e7f6a..8c6219250 100644 --- a/build/stf-run-ci/tasks/setup_stf_local_build.yml +++ b/build/stf-run-ci/tasks/setup_stf_local_build.yml @@ -17,6 +17,8 @@ RELATED_IMAGE_BRIDGE_SMARTGATEWAY_TAG={{ sg_bridge_image_path | parse_tag | quote }} \ OPERATOR_IMAGE={{ sgo_image_path | parse_image | quote }} \ OPERATOR_TAG={{ sgo_image_path | parse_tag | quote }} \ + BUNDLE_CHANNELS={{ stf_channel }} \ + BUNDLE_DEFAULT_CHANNEL={{ stf_channel }} \ ./generate_bundle.sh register: generate_bundle_sgo rescue: @@ -67,6 +69,8 @@ RELATED_IMAGE_PROMETHEUS_WEBHOOK_SNMP_TAG={{ prometheus_webhook_snmp_image_path | parse_tag | quote }} \ OPERATOR_IMAGE={{ sto_image_path | parse_image | quote }} \ OPERATOR_TAG={{ sto_image_path | parse_tag | quote }} \ + BUNDLE_CHANNELS={{ stf_channel }} \ + BUNDLE_DEFAULT_CHANNEL={{ stf_channel }} \ ./generate_bundle.sh register: generate_bundle_sto rescue: