From 0d6c22807f4629bf5aa5a065c7607bace38b7458 Mon Sep 17 00:00:00 2001 From: Aleksandr Kurlov Date: Mon, 19 Jan 2026 10:40:17 +0100 Subject: [PATCH 1/7] Use Kubearchive for getting snapshots for the release --- README.md | 19 ++++++++++--------- scripts/generate-releases.sh | 2 +- scripts/helpers.sh | 2 +- 3 files changed, 12 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 8ad2294d..c36309ae 100644 --- a/README.md +++ b/README.md @@ -65,18 +65,19 @@ See [konflux docs](https://github.com/konflux-ci/build-definitions/blob/c93ea73d ### Release process 1. Make sure you [logged in](https://spaces.redhat.com/pages/viewpage.action?pageId=407312060#HowtoeverythingKonfluxforRHACS-GettingocCLItoworkwithKonflux) to the Konflux cluster. -2. Make sure you checked out the latest master branch: `git checkout master && git pull` -3. Generate Release and Snapshot CRs by running `./scripts/generate-releases.sh `. Use `stage` for test release and `prod` for production one. -4. (Skip for `stage` release.) Create a PR which adds the file created by the script, get the PR reviewed and merged. -5. (Skip for `stage` release.) Go to the [#acs-operator-index-release](https://redhat.enterprise.slack.com/archives/C096WU0GZUG) channel, and: +2. Make sure you have installed [KubeArchive plugin](https://kubearchive.github.io/kubearchive/main/cli/installation.html). And configure it to the connected cluster by running `kubectl ka -n rh-acs-tenant get snapshots`. +3. Make sure you checked out the latest master branch: `git checkout master && git pull` +4. Generate Release and Snapshot CRs by running `./scripts/generate-releases.sh `. Use `stage` for test release and `prod` for production one. +5. (Skip for `stage` release.) Create a PR which adds the file created by the script, get the PR reviewed and merged. +6. (Skip for `stage` release.) Go to the [#acs-operator-index-release](https://redhat.enterprise.slack.com/archives/C096WU0GZUG) channel, and: 1. make sure the previous operator index release is complete (has a green check mark emoticon) 2. if not, coordinate with the person conducting that release 3. once that release is complete, start a new thread for your release -6. Apply generated CRs to the cluster: `oc create -f release-history/--.yaml` -7. Monitor release [using monitor release script](#monitoring-release). Each supported OCP version has its own `Release`. Successfully finished `Release` has `Succeeded` status. -8. Follow [the restarting release step below](#restarting-konflux-release) if any of the `Release`s fails for any OCP version. -9. (Skip for `stage` release.) Once done, go back to the Slack thread you started earlier, add a message that your release is done and add a green check mark emoticon on the initial message of the thread. -10. Once releases for all OCP versions successfully finish, then the operator catalog release is done. If you perform it as part of a bigger release procedure, you should go back to that procedure and continue with further steps. +7. Apply generated CRs to the cluster: `oc create -f release-history/--.yaml` +8. Monitor release [using monitor release script](#monitoring-release). Each supported OCP version has its own `Release`. Successfully finished `Release` has `Succeeded` status. +9. Follow [the restarting release step below](#restarting-konflux-release) if any of the `Release`s fails for any OCP version. +10. (Skip for `stage` release.) Once done, go back to the Slack thread you started earlier, add a message that your release is done and add a green check mark emoticon on the initial message of the thread. +11. Once releases for all OCP versions successfully finish, then the operator catalog release is done. If you perform it as part of a bigger release procedure, you should go back to that procedure and continue with further steps. ### Monitoring Release diff --git a/scripts/generate-releases.sh b/scripts/generate-releases.sh index 5546e703..d13c4d4d 100755 --- a/scripts/generate-releases.sh +++ b/scripts/generate-releases.sh @@ -115,7 +115,7 @@ generate_release_resources() { snapshot="$(echo "$line" | cut -d "|" -f 1)" snapshot_copy_name="$(echo "${snapshot%-*}-${release_name_suffix}" | cut -c -63)" # Replace random suffix with release name and crop to 63 characters to avoid running over the Kubernetes limit. echo "---" - kubectl -n rh-acs-tenant get snapshot.appstudio.redhat.com "${snapshot}" -o yaml | \ + kubectl ka -n rh-acs-tenant get snapshot.appstudio.redhat.com "${snapshot}" -o yaml | \ "${YQ}" -P 'load("'"${whitelist_file}"'") as $whitelisted | del(.metadata.annotations |keys[]|select(. as $needle | $whitelisted.annotations | has($needle) | not)) | del(.metadata.labels |keys[]|select(. as $needle | $whitelisted.labels | has($needle) | not)) diff --git a/scripts/helpers.sh b/scripts/helpers.sh index 8232f57d..937f0671 100644 --- a/scripts/helpers.sh +++ b/scripts/helpers.sh @@ -36,7 +36,7 @@ get_snapshots() { local -r commit="$1" local -r branch="$2" - kubectl get -n rh-acs-tenant snapshot -l pac.test.appstudio.openshift.io/sha="${commit}" -o json | jq ' + kubectl ka -n rh-acs-tenant get snapshots -l pac.test.appstudio.openshift.io/sha="${commit}" -o json | jq ' .items | map(select((.metadata.annotations["pac.test.appstudio.openshift.io/source-branch"]=="'"${branch}"'") or (.metadata.annotations["pac.test.appstudio.openshift.io/source-branch"]=="refs/heads/'${branch}'"))) | map(select(.metadata.annotations["'"${ORIGINAL_SNAPSHOT_ANNOTATION_NAME}"'"] == null)) From 825eaead9a77c1c8d3397ded504a9c70865cd62b Mon Sep 17 00:00:00 2001 From: Aleksandr Kurlov Date: Tue, 20 Jan 2026 16:23:13 +0100 Subject: [PATCH 2/7] Update README.md Co-authored-by: Tom Martensen --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c36309ae..e10d4e8d 100644 --- a/README.md +++ b/README.md @@ -65,7 +65,7 @@ See [konflux docs](https://github.com/konflux-ci/build-definitions/blob/c93ea73d ### Release process 1. Make sure you [logged in](https://spaces.redhat.com/pages/viewpage.action?pageId=407312060#HowtoeverythingKonfluxforRHACS-GettingocCLItoworkwithKonflux) to the Konflux cluster. -2. Make sure you have installed [KubeArchive plugin](https://kubearchive.github.io/kubearchive/main/cli/installation.html). And configure it to the connected cluster by running `kubectl ka -n rh-acs-tenant get snapshots`. +2. Make sure you have installed [KubeArchive plugin](https://kubearchive.github.io/kubearchive/main/cli/installation.html) and ensure it is configured correctly by running `kubectl ka -n rh-acs-tenant get snapshots`. 3. Make sure you checked out the latest master branch: `git checkout master && git pull` 4. Generate Release and Snapshot CRs by running `./scripts/generate-releases.sh `. Use `stage` for test release and `prod` for production one. 5. (Skip for `stage` release.) Create a PR which adds the file created by the script, get the PR reviewed and merged. From 34fc7e674a719ca1dbe56469533eac03a2f97f63 Mon Sep 17 00:00:00 2001 From: Aleksandr Kurlov Date: Wed, 21 Jan 2026 15:23:39 +0100 Subject: [PATCH 3/7] Fix ka snapshot yam fetching --- scripts/generate-releases.sh | 18 ++++++++++++++---- scripts/helpers.sh | 2 +- 2 files changed, 15 insertions(+), 5 deletions(-) diff --git a/scripts/generate-releases.sh b/scripts/generate-releases.sh index d13c4d4d..17f3a42f 100755 --- a/scripts/generate-releases.sh +++ b/scripts/generate-releases.sh @@ -114,9 +114,17 @@ generate_release_resources() { do snapshot="$(echo "$line" | cut -d "|" -f 1)" snapshot_copy_name="$(echo "${snapshot%-*}-${release_name_suffix}" | cut -c -63)" # Replace random suffix with release name and crop to 63 characters to avoid running over the Kubernetes limit. + snapshot_yaml_list="$(kubectl ka get snapshot -n rh-acs-tenant "${snapshot}" -o yaml)" + snapshot_count="$(echo "$snapshot_yaml" | "${YQ}" '.items | length')" + if [[ "$snapshot_count" -eq 0 ]]; then + echo "ERROR: No snapshot found in kubearchive for ${snapshot}" >&2 + return 1 + fi + snapshot_yaml="$(echo "$snapshot_yaml_list" | "${YQ}" '.items[0]')" + echo "---" - kubectl ka -n rh-acs-tenant get snapshot.appstudio.redhat.com "${snapshot}" -o yaml | \ - "${YQ}" -P 'load("'"${whitelist_file}"'") as $whitelisted + echo "$snapshot_yaml" + echo "${YQ}" -P 'load("'"${whitelist_file}"'") as $whitelisted | del(.metadata.annotations |keys[]|select(. as $needle | $whitelisted.annotations | has($needle) | not)) | del(.metadata.labels |keys[]|select(. as $needle | $whitelisted.labels | has($needle) | not)) | {"apiVersion": .apiVersion, @@ -149,8 +157,10 @@ generate_release_resources() { done <<< "$snapshots_data" > "${out_file}" - echo "Staging the file for commit..." - git add --verbose "${out_file}" + if [[ "${environment}" == "prod" ]]; then + echo "Staging the file for commit..." + git add --verbose "${out_file}" + fi } usage "$@" diff --git a/scripts/helpers.sh b/scripts/helpers.sh index 937f0671..4db2bf10 100644 --- a/scripts/helpers.sh +++ b/scripts/helpers.sh @@ -36,7 +36,7 @@ get_snapshots() { local -r commit="$1" local -r branch="$2" - kubectl ka -n rh-acs-tenant get snapshots -l pac.test.appstudio.openshift.io/sha="${commit}" -o json | jq ' + kubectl ka get snapshots -n rh-acs-tenant -l pac.test.appstudio.openshift.io/sha="${commit}" -o json | jq ' .items | map(select((.metadata.annotations["pac.test.appstudio.openshift.io/source-branch"]=="'"${branch}"'") or (.metadata.annotations["pac.test.appstudio.openshift.io/source-branch"]=="refs/heads/'${branch}'"))) | map(select(.metadata.annotations["'"${ORIGINAL_SNAPSHOT_ANNOTATION_NAME}"'"] == null)) From da8ed1647f66c922e2d32d65b9df69e24c71e70e Mon Sep 17 00:00:00 2001 From: Aleksandr Kurlov Date: Wed, 21 Jan 2026 15:33:43 +0100 Subject: [PATCH 4/7] Fix variable name --- scripts/generate-releases.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/generate-releases.sh b/scripts/generate-releases.sh index 17f3a42f..1b7ef706 100755 --- a/scripts/generate-releases.sh +++ b/scripts/generate-releases.sh @@ -115,7 +115,7 @@ generate_release_resources() { snapshot="$(echo "$line" | cut -d "|" -f 1)" snapshot_copy_name="$(echo "${snapshot%-*}-${release_name_suffix}" | cut -c -63)" # Replace random suffix with release name and crop to 63 characters to avoid running over the Kubernetes limit. snapshot_yaml_list="$(kubectl ka get snapshot -n rh-acs-tenant "${snapshot}" -o yaml)" - snapshot_count="$(echo "$snapshot_yaml" | "${YQ}" '.items | length')" + snapshot_count="$(echo "$snapshot_yaml_list" | "${YQ}" '.items | length')" if [[ "$snapshot_count" -eq 0 ]]; then echo "ERROR: No snapshot found in kubearchive for ${snapshot}" >&2 return 1 @@ -123,8 +123,8 @@ generate_release_resources() { snapshot_yaml="$(echo "$snapshot_yaml_list" | "${YQ}" '.items[0]')" echo "---" - echo "$snapshot_yaml" - echo "${YQ}" -P 'load("'"${whitelist_file}"'") as $whitelisted + echo "$snapshot_yaml" | \ + "${YQ}" -P 'load("'"${whitelist_file}"'") as $whitelisted | del(.metadata.annotations |keys[]|select(. as $needle | $whitelisted.annotations | has($needle) | not)) | del(.metadata.labels |keys[]|select(. as $needle | $whitelisted.labels | has($needle) | not)) | {"apiVersion": .apiVersion, From 67ee6d16ea57f1dbca86575cb42b43a195655907 Mon Sep 17 00:00:00 2001 From: Aleksandr Kurlov Date: Wed, 21 Jan 2026 16:19:59 +0100 Subject: [PATCH 5/7] Remove stashing --- release-history/20260121-stage-f249375.yaml | 430 ++++++++++++++++++++ scripts/generate-releases.sh | 5 - 2 files changed, 430 insertions(+), 5 deletions(-) create mode 100644 release-history/20260121-stage-f249375.yaml diff --git a/release-history/20260121-stage-f249375.yaml b/release-history/20260121-stage-f249375.yaml new file mode 100644 index 00000000..515d76aa --- /dev/null +++ b/release-history/20260121-stage-f249375.yaml @@ -0,0 +1,430 @@ +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Snapshot +metadata: + annotations: + build.appstudio.redhat.com/pull_request_number: '{{pull_request_number}}' + build.appstudio.redhat.com/target_branch: master + pac.test.appstudio.openshift.io/branch: master + pac.test.appstudio.openshift.io/sender: red-hat-konflux[bot] + pac.test.appstudio.openshift.io/sha-title: |- + chore(deps): update quay.io/rhacs-eng/konflux-tasks:latest docker digest to d37b352 + + Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com> + pac.test.appstudio.openshift.io/sha-url: https://github.com/stackrox/operator-index/commit/f2493755caa9cb73a0531c536be6ae16ee8c2312 + pac.test.appstudio.openshift.io/source-branch: refs/heads/master + acs.redhat.com/original-snapshot-name: acs-operator-index-ocp-v4-12-qnxs6 + labels: + appstudio.openshift.io/application: acs-operator-index-ocp-v4-12 + appstudio.openshift.io/component: operator-index-ocp-v4-12 + pac.test.appstudio.openshift.io/event-type: push + pac.test.appstudio.openshift.io/sha: f2493755caa9cb73a0531c536be6ae16ee8c2312 + name: acs-operator-index-ocp-v4-12-20260121-stage-f249375 + namespace: rh-acs-tenant +spec: + application: acs-operator-index-ocp-v4-12 + artifacts: {} + components: + - containerImage: quay.io/rhacs-eng/stackrox-operator-index@sha256:dc08a3519a2c70085bb881f67041d592cf6c91484532f4979148ab408e38ec14 + name: operator-index-ocp-v4-12 + source: + git: + revision: f2493755caa9cb73a0531c536be6ae16ee8c2312 + url: https://github.com/stackrox/operator-index + +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Release +metadata: + name: acs-operator-index-ocp-v4-12-20260121-stage-f249375 + namespace: rh-acs-tenant +spec: + releasePlan: acs-operator-index-stage-ocp-v4-12 + snapshot: acs-operator-index-ocp-v4-12-20260121-stage-f249375 +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Snapshot +metadata: + annotations: + build.appstudio.redhat.com/pull_request_number: '{{pull_request_number}}' + build.appstudio.redhat.com/target_branch: master + pac.test.appstudio.openshift.io/branch: master + pac.test.appstudio.openshift.io/sender: red-hat-konflux[bot] + pac.test.appstudio.openshift.io/sha-title: |- + chore(deps): update quay.io/rhacs-eng/konflux-tasks:latest docker digest to d37b352 + + Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com> + pac.test.appstudio.openshift.io/sha-url: https://github.com/stackrox/operator-index/commit/f2493755caa9cb73a0531c536be6ae16ee8c2312 + pac.test.appstudio.openshift.io/source-branch: refs/heads/master + acs.redhat.com/original-snapshot-name: acs-operator-index-ocp-v4-13-s7srh + labels: + appstudio.openshift.io/application: acs-operator-index-ocp-v4-13 + appstudio.openshift.io/component: operator-index-ocp-v4-13 + pac.test.appstudio.openshift.io/event-type: push + pac.test.appstudio.openshift.io/sha: f2493755caa9cb73a0531c536be6ae16ee8c2312 + name: acs-operator-index-ocp-v4-13-20260121-stage-f249375 + namespace: rh-acs-tenant +spec: + application: acs-operator-index-ocp-v4-13 + artifacts: {} + components: + - containerImage: quay.io/rhacs-eng/stackrox-operator-index@sha256:ce728c932304662124014e7ba9daf85239f955f8f235e0412dbbe22f4e8aaa9c + name: operator-index-ocp-v4-13 + source: + git: + revision: f2493755caa9cb73a0531c536be6ae16ee8c2312 + url: https://github.com/stackrox/operator-index + +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Release +metadata: + name: acs-operator-index-ocp-v4-13-20260121-stage-f249375 + namespace: rh-acs-tenant +spec: + releasePlan: acs-operator-index-stage-ocp-v4-13 + snapshot: acs-operator-index-ocp-v4-13-20260121-stage-f249375 +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Snapshot +metadata: + annotations: + build.appstudio.redhat.com/pull_request_number: '{{pull_request_number}}' + build.appstudio.redhat.com/target_branch: master + pac.test.appstudio.openshift.io/branch: master + pac.test.appstudio.openshift.io/sender: red-hat-konflux[bot] + pac.test.appstudio.openshift.io/sha-title: |- + chore(deps): update quay.io/rhacs-eng/konflux-tasks:latest docker digest to d37b352 + + Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com> + pac.test.appstudio.openshift.io/sha-url: https://github.com/stackrox/operator-index/commit/f2493755caa9cb73a0531c536be6ae16ee8c2312 + pac.test.appstudio.openshift.io/source-branch: refs/heads/master + acs.redhat.com/original-snapshot-name: acs-operator-index-ocp-v4-14-zfvxq + labels: + appstudio.openshift.io/application: acs-operator-index-ocp-v4-14 + appstudio.openshift.io/component: operator-index-ocp-v4-14 + pac.test.appstudio.openshift.io/event-type: push + pac.test.appstudio.openshift.io/sha: f2493755caa9cb73a0531c536be6ae16ee8c2312 + name: acs-operator-index-ocp-v4-14-20260121-stage-f249375 + namespace: rh-acs-tenant +spec: + application: acs-operator-index-ocp-v4-14 + artifacts: {} + components: + - containerImage: quay.io/rhacs-eng/stackrox-operator-index@sha256:b7719ee601a9933c03d815d1fea6ed1f3404a2a9ea0eadc224ed6cab560a76c9 + name: operator-index-ocp-v4-14 + source: + git: + revision: f2493755caa9cb73a0531c536be6ae16ee8c2312 + url: https://github.com/stackrox/operator-index + +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Release +metadata: + name: acs-operator-index-ocp-v4-14-20260121-stage-f249375 + namespace: rh-acs-tenant +spec: + releasePlan: acs-operator-index-stage-ocp-v4-14 + snapshot: acs-operator-index-ocp-v4-14-20260121-stage-f249375 +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Snapshot +metadata: + annotations: + build.appstudio.redhat.com/pull_request_number: '{{pull_request_number}}' + build.appstudio.redhat.com/target_branch: master + pac.test.appstudio.openshift.io/branch: master + pac.test.appstudio.openshift.io/sender: red-hat-konflux[bot] + pac.test.appstudio.openshift.io/sha-title: |- + chore(deps): update quay.io/rhacs-eng/konflux-tasks:latest docker digest to d37b352 + + Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com> + pac.test.appstudio.openshift.io/sha-url: https://github.com/stackrox/operator-index/commit/f2493755caa9cb73a0531c536be6ae16ee8c2312 + pac.test.appstudio.openshift.io/source-branch: refs/heads/master + acs.redhat.com/original-snapshot-name: acs-operator-index-ocp-v4-15-nn69c + labels: + appstudio.openshift.io/application: acs-operator-index-ocp-v4-15 + appstudio.openshift.io/component: operator-index-ocp-v4-15 + pac.test.appstudio.openshift.io/event-type: push + pac.test.appstudio.openshift.io/sha: f2493755caa9cb73a0531c536be6ae16ee8c2312 + name: acs-operator-index-ocp-v4-15-20260121-stage-f249375 + namespace: rh-acs-tenant +spec: + application: acs-operator-index-ocp-v4-15 + artifacts: {} + components: + - containerImage: quay.io/rhacs-eng/stackrox-operator-index@sha256:ed4324035ef269b10415eb2b7a842b11451258ac2607532f5db6e85f8170a940 + name: operator-index-ocp-v4-15 + source: + git: + revision: f2493755caa9cb73a0531c536be6ae16ee8c2312 + url: https://github.com/stackrox/operator-index + +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Release +metadata: + name: acs-operator-index-ocp-v4-15-20260121-stage-f249375 + namespace: rh-acs-tenant +spec: + releasePlan: acs-operator-index-stage-ocp-v4-15 + snapshot: acs-operator-index-ocp-v4-15-20260121-stage-f249375 +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Snapshot +metadata: + annotations: + build.appstudio.redhat.com/pull_request_number: '{{pull_request_number}}' + build.appstudio.redhat.com/target_branch: master + pac.test.appstudio.openshift.io/branch: master + pac.test.appstudio.openshift.io/sender: red-hat-konflux[bot] + pac.test.appstudio.openshift.io/sha-title: |- + chore(deps): update quay.io/rhacs-eng/konflux-tasks:latest docker digest to d37b352 + + Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com> + pac.test.appstudio.openshift.io/sha-url: https://github.com/stackrox/operator-index/commit/f2493755caa9cb73a0531c536be6ae16ee8c2312 + pac.test.appstudio.openshift.io/source-branch: refs/heads/master + acs.redhat.com/original-snapshot-name: acs-operator-index-ocp-v4-16-6jvkl + labels: + appstudio.openshift.io/application: acs-operator-index-ocp-v4-16 + appstudio.openshift.io/component: operator-index-ocp-v4-16 + pac.test.appstudio.openshift.io/event-type: push + pac.test.appstudio.openshift.io/sha: f2493755caa9cb73a0531c536be6ae16ee8c2312 + name: acs-operator-index-ocp-v4-16-20260121-stage-f249375 + namespace: rh-acs-tenant +spec: + application: acs-operator-index-ocp-v4-16 + artifacts: {} + components: + - containerImage: quay.io/rhacs-eng/stackrox-operator-index@sha256:d72d649fdf913857f500bea28b29332f4f21fd13b360b77815c4f81241915af4 + name: operator-index-ocp-v4-16 + source: + git: + revision: f2493755caa9cb73a0531c536be6ae16ee8c2312 + url: https://github.com/stackrox/operator-index + +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Release +metadata: + name: acs-operator-index-ocp-v4-16-20260121-stage-f249375 + namespace: rh-acs-tenant +spec: + releasePlan: acs-operator-index-stage-ocp-v4-16 + snapshot: acs-operator-index-ocp-v4-16-20260121-stage-f249375 +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Snapshot +metadata: + annotations: + build.appstudio.redhat.com/pull_request_number: '{{pull_request_number}}' + build.appstudio.redhat.com/target_branch: master + pac.test.appstudio.openshift.io/branch: master + pac.test.appstudio.openshift.io/sender: red-hat-konflux[bot] + pac.test.appstudio.openshift.io/sha-title: |- + chore(deps): update quay.io/rhacs-eng/konflux-tasks:latest docker digest to d37b352 + + Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com> + pac.test.appstudio.openshift.io/sha-url: https://github.com/stackrox/operator-index/commit/f2493755caa9cb73a0531c536be6ae16ee8c2312 + pac.test.appstudio.openshift.io/source-branch: refs/heads/master + acs.redhat.com/original-snapshot-name: acs-operator-index-ocp-v4-17-xs2pp + labels: + appstudio.openshift.io/application: acs-operator-index-ocp-v4-17 + appstudio.openshift.io/component: operator-index-ocp-v4-17 + pac.test.appstudio.openshift.io/event-type: push + pac.test.appstudio.openshift.io/sha: f2493755caa9cb73a0531c536be6ae16ee8c2312 + name: acs-operator-index-ocp-v4-17-20260121-stage-f249375 + namespace: rh-acs-tenant +spec: + application: acs-operator-index-ocp-v4-17 + artifacts: {} + components: + - containerImage: quay.io/rhacs-eng/stackrox-operator-index@sha256:45cb07cd46887d9586254d5fd27d4a3eff99255e9db0406385b6c15fa0aecc02 + name: operator-index-ocp-v4-17 + source: + git: + revision: f2493755caa9cb73a0531c536be6ae16ee8c2312 + url: https://github.com/stackrox/operator-index + +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Release +metadata: + name: acs-operator-index-ocp-v4-17-20260121-stage-f249375 + namespace: rh-acs-tenant +spec: + releasePlan: acs-operator-index-stage-ocp-v4-17 + snapshot: acs-operator-index-ocp-v4-17-20260121-stage-f249375 +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Snapshot +metadata: + annotations: + build.appstudio.redhat.com/pull_request_number: '{{pull_request_number}}' + build.appstudio.redhat.com/target_branch: master + pac.test.appstudio.openshift.io/branch: master + pac.test.appstudio.openshift.io/sender: red-hat-konflux[bot] + pac.test.appstudio.openshift.io/sha-title: |- + chore(deps): update quay.io/rhacs-eng/konflux-tasks:latest docker digest to d37b352 + + Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com> + pac.test.appstudio.openshift.io/sha-url: https://github.com/stackrox/operator-index/commit/f2493755caa9cb73a0531c536be6ae16ee8c2312 + pac.test.appstudio.openshift.io/source-branch: refs/heads/master + acs.redhat.com/original-snapshot-name: acs-operator-index-ocp-v4-18-v25fj + labels: + appstudio.openshift.io/application: acs-operator-index-ocp-v4-18 + appstudio.openshift.io/component: operator-index-ocp-v4-18 + pac.test.appstudio.openshift.io/event-type: push + pac.test.appstudio.openshift.io/sha: f2493755caa9cb73a0531c536be6ae16ee8c2312 + name: acs-operator-index-ocp-v4-18-20260121-stage-f249375 + namespace: rh-acs-tenant +spec: + application: acs-operator-index-ocp-v4-18 + artifacts: {} + components: + - containerImage: quay.io/rhacs-eng/stackrox-operator-index@sha256:68a4711582cd4c610a4d1fdac0a6d0c62bf16542633cc9a31a36834420186c87 + name: operator-index-ocp-v4-18 + source: + git: + revision: f2493755caa9cb73a0531c536be6ae16ee8c2312 + url: https://github.com/stackrox/operator-index + +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Release +metadata: + name: acs-operator-index-ocp-v4-18-20260121-stage-f249375 + namespace: rh-acs-tenant +spec: + releasePlan: acs-operator-index-stage-ocp-v4-18 + snapshot: acs-operator-index-ocp-v4-18-20260121-stage-f249375 +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Snapshot +metadata: + annotations: + build.appstudio.redhat.com/pull_request_number: '{{pull_request_number}}' + build.appstudio.redhat.com/target_branch: master + pac.test.appstudio.openshift.io/branch: master + pac.test.appstudio.openshift.io/sender: red-hat-konflux[bot] + pac.test.appstudio.openshift.io/sha-title: |- + chore(deps): update quay.io/rhacs-eng/konflux-tasks:latest docker digest to d37b352 + + Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com> + pac.test.appstudio.openshift.io/sha-url: https://github.com/stackrox/operator-index/commit/f2493755caa9cb73a0531c536be6ae16ee8c2312 + pac.test.appstudio.openshift.io/source-branch: refs/heads/master + acs.redhat.com/original-snapshot-name: acs-operator-index-ocp-v4-19-vqd7g + labels: + appstudio.openshift.io/application: acs-operator-index-ocp-v4-19 + appstudio.openshift.io/component: operator-index-ocp-v4-19 + pac.test.appstudio.openshift.io/event-type: push + pac.test.appstudio.openshift.io/sha: f2493755caa9cb73a0531c536be6ae16ee8c2312 + name: acs-operator-index-ocp-v4-19-20260121-stage-f249375 + namespace: rh-acs-tenant +spec: + application: acs-operator-index-ocp-v4-19 + artifacts: {} + components: + - containerImage: quay.io/rhacs-eng/stackrox-operator-index@sha256:55aee4c0b0d23aaf326d87dbe23b056fb58ff9638d3ec272e2280657f2e07225 + name: operator-index-ocp-v4-19 + source: + git: + revision: f2493755caa9cb73a0531c536be6ae16ee8c2312 + url: https://github.com/stackrox/operator-index + +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Release +metadata: + name: acs-operator-index-ocp-v4-19-20260121-stage-f249375 + namespace: rh-acs-tenant +spec: + releasePlan: acs-operator-index-stage-ocp-v4-19 + snapshot: acs-operator-index-ocp-v4-19-20260121-stage-f249375 +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Snapshot +metadata: + annotations: + build.appstudio.redhat.com/pull_request_number: '{{pull_request_number}}' + build.appstudio.redhat.com/target_branch: master + pac.test.appstudio.openshift.io/branch: master + pac.test.appstudio.openshift.io/sender: red-hat-konflux[bot] + pac.test.appstudio.openshift.io/sha-title: |- + chore(deps): update quay.io/rhacs-eng/konflux-tasks:latest docker digest to d37b352 + + Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com> + pac.test.appstudio.openshift.io/sha-url: https://github.com/stackrox/operator-index/commit/f2493755caa9cb73a0531c536be6ae16ee8c2312 + pac.test.appstudio.openshift.io/source-branch: refs/heads/master + acs.redhat.com/original-snapshot-name: acs-operator-index-ocp-v4-20-f9sr2 + labels: + appstudio.openshift.io/application: acs-operator-index-ocp-v4-20 + appstudio.openshift.io/component: operator-index-ocp-v4-20 + pac.test.appstudio.openshift.io/event-type: push + pac.test.appstudio.openshift.io/sha: f2493755caa9cb73a0531c536be6ae16ee8c2312 + name: acs-operator-index-ocp-v4-20-20260121-stage-f249375 + namespace: rh-acs-tenant +spec: + application: acs-operator-index-ocp-v4-20 + artifacts: {} + components: + - containerImage: quay.io/rhacs-eng/stackrox-operator-index@sha256:2a0dcc6c7af284c392c1c18c76eead0e65c1251c3fc96338405e47e98c69921c + name: operator-index-ocp-v4-20 + source: + git: + revision: f2493755caa9cb73a0531c536be6ae16ee8c2312 + url: https://github.com/stackrox/operator-index + +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Release +metadata: + name: acs-operator-index-ocp-v4-20-20260121-stage-f249375 + namespace: rh-acs-tenant +spec: + releasePlan: acs-operator-index-stage-ocp-v4-20 + snapshot: acs-operator-index-ocp-v4-20-20260121-stage-f249375 +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Snapshot +metadata: + annotations: + build.appstudio.redhat.com/pull_request_number: '{{pull_request_number}}' + build.appstudio.redhat.com/target_branch: master + pac.test.appstudio.openshift.io/branch: master + pac.test.appstudio.openshift.io/sender: red-hat-konflux[bot] + pac.test.appstudio.openshift.io/sha-title: |- + chore(deps): update quay.io/rhacs-eng/konflux-tasks:latest docker digest to d37b352 + + Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com> + pac.test.appstudio.openshift.io/sha-url: https://github.com/stackrox/operator-index/commit/f2493755caa9cb73a0531c536be6ae16ee8c2312 + pac.test.appstudio.openshift.io/source-branch: refs/heads/master + acs.redhat.com/original-snapshot-name: acs-operator-index-ocp-v4-21-zxbsg + labels: + appstudio.openshift.io/application: acs-operator-index-ocp-v4-21 + appstudio.openshift.io/component: operator-index-ocp-v4-21 + pac.test.appstudio.openshift.io/event-type: push + pac.test.appstudio.openshift.io/sha: f2493755caa9cb73a0531c536be6ae16ee8c2312 + name: acs-operator-index-ocp-v4-21-20260121-stage-f249375 + namespace: rh-acs-tenant +spec: + application: acs-operator-index-ocp-v4-21 + artifacts: {} + components: + - containerImage: quay.io/rhacs-eng/stackrox-operator-index@sha256:7fa8b013e3c0802a8c9b1f126e3bfec280d69a544dd2b1d4dc87dfde80e52175 + name: operator-index-ocp-v4-21 + source: + git: + revision: f2493755caa9cb73a0531c536be6ae16ee8c2312 + url: https://github.com/stackrox/operator-index + +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Release +metadata: + name: acs-operator-index-ocp-v4-21-20260121-stage-f249375 + namespace: rh-acs-tenant +spec: + releasePlan: acs-operator-index-stage-ocp-v4-21 + snapshot: acs-operator-index-ocp-v4-21-20260121-stage-f249375 diff --git a/scripts/generate-releases.sh b/scripts/generate-releases.sh index 1b7ef706..f473129e 100755 --- a/scripts/generate-releases.sh +++ b/scripts/generate-releases.sh @@ -156,11 +156,6 @@ generate_release_resources() { snapshot: ${snapshot_copy_name}" done <<< "$snapshots_data" > "${out_file}" - - if [[ "${environment}" == "prod" ]]; then - echo "Staging the file for commit..." - git add --verbose "${out_file}" - fi } usage "$@" From b34e11ff19921cc709e034f4904ebc3c20c6f3bb Mon Sep 17 00:00:00 2001 From: Aleksandr Kurlov Date: Wed, 21 Jan 2026 16:20:20 +0100 Subject: [PATCH 6/7] Update scripts/generate-releases.sh Co-authored-by: Tom Martensen --- scripts/generate-releases.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/generate-releases.sh b/scripts/generate-releases.sh index f473129e..cbcd01e2 100755 --- a/scripts/generate-releases.sh +++ b/scripts/generate-releases.sh @@ -117,7 +117,7 @@ generate_release_resources() { snapshot_yaml_list="$(kubectl ka get snapshot -n rh-acs-tenant "${snapshot}" -o yaml)" snapshot_count="$(echo "$snapshot_yaml_list" | "${YQ}" '.items | length')" if [[ "$snapshot_count" -eq 0 ]]; then - echo "ERROR: No snapshot found in kubearchive for ${snapshot}" >&2 + echo "ERROR: No snapshot found in kubearchive for name: ${snapshot}" >&2 return 1 fi snapshot_yaml="$(echo "$snapshot_yaml_list" | "${YQ}" '.items[0]')" From 8285e6631ed4eeb1c8ce45739b35057b2da03048 Mon Sep 17 00:00:00 2001 From: Aleksandr Kurlov Date: Wed, 21 Jan 2026 16:20:50 +0100 Subject: [PATCH 7/7] Remove staging release --- release-history/20260121-stage-f249375.yaml | 430 -------------------- 1 file changed, 430 deletions(-) delete mode 100644 release-history/20260121-stage-f249375.yaml diff --git a/release-history/20260121-stage-f249375.yaml b/release-history/20260121-stage-f249375.yaml deleted file mode 100644 index 515d76aa..00000000 --- a/release-history/20260121-stage-f249375.yaml +++ /dev/null @@ -1,430 +0,0 @@ ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Snapshot -metadata: - annotations: - build.appstudio.redhat.com/pull_request_number: '{{pull_request_number}}' - build.appstudio.redhat.com/target_branch: master - pac.test.appstudio.openshift.io/branch: master - pac.test.appstudio.openshift.io/sender: red-hat-konflux[bot] - pac.test.appstudio.openshift.io/sha-title: |- - chore(deps): update quay.io/rhacs-eng/konflux-tasks:latest docker digest to d37b352 - - Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com> - pac.test.appstudio.openshift.io/sha-url: https://github.com/stackrox/operator-index/commit/f2493755caa9cb73a0531c536be6ae16ee8c2312 - pac.test.appstudio.openshift.io/source-branch: refs/heads/master - acs.redhat.com/original-snapshot-name: acs-operator-index-ocp-v4-12-qnxs6 - labels: - appstudio.openshift.io/application: acs-operator-index-ocp-v4-12 - appstudio.openshift.io/component: operator-index-ocp-v4-12 - pac.test.appstudio.openshift.io/event-type: push - pac.test.appstudio.openshift.io/sha: f2493755caa9cb73a0531c536be6ae16ee8c2312 - name: acs-operator-index-ocp-v4-12-20260121-stage-f249375 - namespace: rh-acs-tenant -spec: - application: acs-operator-index-ocp-v4-12 - artifacts: {} - components: - - containerImage: quay.io/rhacs-eng/stackrox-operator-index@sha256:dc08a3519a2c70085bb881f67041d592cf6c91484532f4979148ab408e38ec14 - name: operator-index-ocp-v4-12 - source: - git: - revision: f2493755caa9cb73a0531c536be6ae16ee8c2312 - url: https://github.com/stackrox/operator-index - ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Release -metadata: - name: acs-operator-index-ocp-v4-12-20260121-stage-f249375 - namespace: rh-acs-tenant -spec: - releasePlan: acs-operator-index-stage-ocp-v4-12 - snapshot: acs-operator-index-ocp-v4-12-20260121-stage-f249375 ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Snapshot -metadata: - annotations: - build.appstudio.redhat.com/pull_request_number: '{{pull_request_number}}' - build.appstudio.redhat.com/target_branch: master - pac.test.appstudio.openshift.io/branch: master - pac.test.appstudio.openshift.io/sender: red-hat-konflux[bot] - pac.test.appstudio.openshift.io/sha-title: |- - chore(deps): update quay.io/rhacs-eng/konflux-tasks:latest docker digest to d37b352 - - Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com> - pac.test.appstudio.openshift.io/sha-url: https://github.com/stackrox/operator-index/commit/f2493755caa9cb73a0531c536be6ae16ee8c2312 - pac.test.appstudio.openshift.io/source-branch: refs/heads/master - acs.redhat.com/original-snapshot-name: acs-operator-index-ocp-v4-13-s7srh - labels: - appstudio.openshift.io/application: acs-operator-index-ocp-v4-13 - appstudio.openshift.io/component: operator-index-ocp-v4-13 - pac.test.appstudio.openshift.io/event-type: push - pac.test.appstudio.openshift.io/sha: f2493755caa9cb73a0531c536be6ae16ee8c2312 - name: acs-operator-index-ocp-v4-13-20260121-stage-f249375 - namespace: rh-acs-tenant -spec: - application: acs-operator-index-ocp-v4-13 - artifacts: {} - components: - - containerImage: quay.io/rhacs-eng/stackrox-operator-index@sha256:ce728c932304662124014e7ba9daf85239f955f8f235e0412dbbe22f4e8aaa9c - name: operator-index-ocp-v4-13 - source: - git: - revision: f2493755caa9cb73a0531c536be6ae16ee8c2312 - url: https://github.com/stackrox/operator-index - ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Release -metadata: - name: acs-operator-index-ocp-v4-13-20260121-stage-f249375 - namespace: rh-acs-tenant -spec: - releasePlan: acs-operator-index-stage-ocp-v4-13 - snapshot: acs-operator-index-ocp-v4-13-20260121-stage-f249375 ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Snapshot -metadata: - annotations: - build.appstudio.redhat.com/pull_request_number: '{{pull_request_number}}' - build.appstudio.redhat.com/target_branch: master - pac.test.appstudio.openshift.io/branch: master - pac.test.appstudio.openshift.io/sender: red-hat-konflux[bot] - pac.test.appstudio.openshift.io/sha-title: |- - chore(deps): update quay.io/rhacs-eng/konflux-tasks:latest docker digest to d37b352 - - Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com> - pac.test.appstudio.openshift.io/sha-url: https://github.com/stackrox/operator-index/commit/f2493755caa9cb73a0531c536be6ae16ee8c2312 - pac.test.appstudio.openshift.io/source-branch: refs/heads/master - acs.redhat.com/original-snapshot-name: acs-operator-index-ocp-v4-14-zfvxq - labels: - appstudio.openshift.io/application: acs-operator-index-ocp-v4-14 - appstudio.openshift.io/component: operator-index-ocp-v4-14 - pac.test.appstudio.openshift.io/event-type: push - pac.test.appstudio.openshift.io/sha: f2493755caa9cb73a0531c536be6ae16ee8c2312 - name: acs-operator-index-ocp-v4-14-20260121-stage-f249375 - namespace: rh-acs-tenant -spec: - application: acs-operator-index-ocp-v4-14 - artifacts: {} - components: - - containerImage: quay.io/rhacs-eng/stackrox-operator-index@sha256:b7719ee601a9933c03d815d1fea6ed1f3404a2a9ea0eadc224ed6cab560a76c9 - name: operator-index-ocp-v4-14 - source: - git: - revision: f2493755caa9cb73a0531c536be6ae16ee8c2312 - url: https://github.com/stackrox/operator-index - ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Release -metadata: - name: acs-operator-index-ocp-v4-14-20260121-stage-f249375 - namespace: rh-acs-tenant -spec: - releasePlan: acs-operator-index-stage-ocp-v4-14 - snapshot: acs-operator-index-ocp-v4-14-20260121-stage-f249375 ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Snapshot -metadata: - annotations: - build.appstudio.redhat.com/pull_request_number: '{{pull_request_number}}' - build.appstudio.redhat.com/target_branch: master - pac.test.appstudio.openshift.io/branch: master - pac.test.appstudio.openshift.io/sender: red-hat-konflux[bot] - pac.test.appstudio.openshift.io/sha-title: |- - chore(deps): update quay.io/rhacs-eng/konflux-tasks:latest docker digest to d37b352 - - Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com> - pac.test.appstudio.openshift.io/sha-url: https://github.com/stackrox/operator-index/commit/f2493755caa9cb73a0531c536be6ae16ee8c2312 - pac.test.appstudio.openshift.io/source-branch: refs/heads/master - acs.redhat.com/original-snapshot-name: acs-operator-index-ocp-v4-15-nn69c - labels: - appstudio.openshift.io/application: acs-operator-index-ocp-v4-15 - appstudio.openshift.io/component: operator-index-ocp-v4-15 - pac.test.appstudio.openshift.io/event-type: push - pac.test.appstudio.openshift.io/sha: f2493755caa9cb73a0531c536be6ae16ee8c2312 - name: acs-operator-index-ocp-v4-15-20260121-stage-f249375 - namespace: rh-acs-tenant -spec: - application: acs-operator-index-ocp-v4-15 - artifacts: {} - components: - - containerImage: quay.io/rhacs-eng/stackrox-operator-index@sha256:ed4324035ef269b10415eb2b7a842b11451258ac2607532f5db6e85f8170a940 - name: operator-index-ocp-v4-15 - source: - git: - revision: f2493755caa9cb73a0531c536be6ae16ee8c2312 - url: https://github.com/stackrox/operator-index - ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Release -metadata: - name: acs-operator-index-ocp-v4-15-20260121-stage-f249375 - namespace: rh-acs-tenant -spec: - releasePlan: acs-operator-index-stage-ocp-v4-15 - snapshot: acs-operator-index-ocp-v4-15-20260121-stage-f249375 ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Snapshot -metadata: - annotations: - build.appstudio.redhat.com/pull_request_number: '{{pull_request_number}}' - build.appstudio.redhat.com/target_branch: master - pac.test.appstudio.openshift.io/branch: master - pac.test.appstudio.openshift.io/sender: red-hat-konflux[bot] - pac.test.appstudio.openshift.io/sha-title: |- - chore(deps): update quay.io/rhacs-eng/konflux-tasks:latest docker digest to d37b352 - - Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com> - pac.test.appstudio.openshift.io/sha-url: https://github.com/stackrox/operator-index/commit/f2493755caa9cb73a0531c536be6ae16ee8c2312 - pac.test.appstudio.openshift.io/source-branch: refs/heads/master - acs.redhat.com/original-snapshot-name: acs-operator-index-ocp-v4-16-6jvkl - labels: - appstudio.openshift.io/application: acs-operator-index-ocp-v4-16 - appstudio.openshift.io/component: operator-index-ocp-v4-16 - pac.test.appstudio.openshift.io/event-type: push - pac.test.appstudio.openshift.io/sha: f2493755caa9cb73a0531c536be6ae16ee8c2312 - name: acs-operator-index-ocp-v4-16-20260121-stage-f249375 - namespace: rh-acs-tenant -spec: - application: acs-operator-index-ocp-v4-16 - artifacts: {} - components: - - containerImage: quay.io/rhacs-eng/stackrox-operator-index@sha256:d72d649fdf913857f500bea28b29332f4f21fd13b360b77815c4f81241915af4 - name: operator-index-ocp-v4-16 - source: - git: - revision: f2493755caa9cb73a0531c536be6ae16ee8c2312 - url: https://github.com/stackrox/operator-index - ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Release -metadata: - name: acs-operator-index-ocp-v4-16-20260121-stage-f249375 - namespace: rh-acs-tenant -spec: - releasePlan: acs-operator-index-stage-ocp-v4-16 - snapshot: acs-operator-index-ocp-v4-16-20260121-stage-f249375 ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Snapshot -metadata: - annotations: - build.appstudio.redhat.com/pull_request_number: '{{pull_request_number}}' - build.appstudio.redhat.com/target_branch: master - pac.test.appstudio.openshift.io/branch: master - pac.test.appstudio.openshift.io/sender: red-hat-konflux[bot] - pac.test.appstudio.openshift.io/sha-title: |- - chore(deps): update quay.io/rhacs-eng/konflux-tasks:latest docker digest to d37b352 - - Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com> - pac.test.appstudio.openshift.io/sha-url: https://github.com/stackrox/operator-index/commit/f2493755caa9cb73a0531c536be6ae16ee8c2312 - pac.test.appstudio.openshift.io/source-branch: refs/heads/master - acs.redhat.com/original-snapshot-name: acs-operator-index-ocp-v4-17-xs2pp - labels: - appstudio.openshift.io/application: acs-operator-index-ocp-v4-17 - appstudio.openshift.io/component: operator-index-ocp-v4-17 - pac.test.appstudio.openshift.io/event-type: push - pac.test.appstudio.openshift.io/sha: f2493755caa9cb73a0531c536be6ae16ee8c2312 - name: acs-operator-index-ocp-v4-17-20260121-stage-f249375 - namespace: rh-acs-tenant -spec: - application: acs-operator-index-ocp-v4-17 - artifacts: {} - components: - - containerImage: quay.io/rhacs-eng/stackrox-operator-index@sha256:45cb07cd46887d9586254d5fd27d4a3eff99255e9db0406385b6c15fa0aecc02 - name: operator-index-ocp-v4-17 - source: - git: - revision: f2493755caa9cb73a0531c536be6ae16ee8c2312 - url: https://github.com/stackrox/operator-index - ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Release -metadata: - name: acs-operator-index-ocp-v4-17-20260121-stage-f249375 - namespace: rh-acs-tenant -spec: - releasePlan: acs-operator-index-stage-ocp-v4-17 - snapshot: acs-operator-index-ocp-v4-17-20260121-stage-f249375 ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Snapshot -metadata: - annotations: - build.appstudio.redhat.com/pull_request_number: '{{pull_request_number}}' - build.appstudio.redhat.com/target_branch: master - pac.test.appstudio.openshift.io/branch: master - pac.test.appstudio.openshift.io/sender: red-hat-konflux[bot] - pac.test.appstudio.openshift.io/sha-title: |- - chore(deps): update quay.io/rhacs-eng/konflux-tasks:latest docker digest to d37b352 - - Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com> - pac.test.appstudio.openshift.io/sha-url: https://github.com/stackrox/operator-index/commit/f2493755caa9cb73a0531c536be6ae16ee8c2312 - pac.test.appstudio.openshift.io/source-branch: refs/heads/master - acs.redhat.com/original-snapshot-name: acs-operator-index-ocp-v4-18-v25fj - labels: - appstudio.openshift.io/application: acs-operator-index-ocp-v4-18 - appstudio.openshift.io/component: operator-index-ocp-v4-18 - pac.test.appstudio.openshift.io/event-type: push - pac.test.appstudio.openshift.io/sha: f2493755caa9cb73a0531c536be6ae16ee8c2312 - name: acs-operator-index-ocp-v4-18-20260121-stage-f249375 - namespace: rh-acs-tenant -spec: - application: acs-operator-index-ocp-v4-18 - artifacts: {} - components: - - containerImage: quay.io/rhacs-eng/stackrox-operator-index@sha256:68a4711582cd4c610a4d1fdac0a6d0c62bf16542633cc9a31a36834420186c87 - name: operator-index-ocp-v4-18 - source: - git: - revision: f2493755caa9cb73a0531c536be6ae16ee8c2312 - url: https://github.com/stackrox/operator-index - ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Release -metadata: - name: acs-operator-index-ocp-v4-18-20260121-stage-f249375 - namespace: rh-acs-tenant -spec: - releasePlan: acs-operator-index-stage-ocp-v4-18 - snapshot: acs-operator-index-ocp-v4-18-20260121-stage-f249375 ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Snapshot -metadata: - annotations: - build.appstudio.redhat.com/pull_request_number: '{{pull_request_number}}' - build.appstudio.redhat.com/target_branch: master - pac.test.appstudio.openshift.io/branch: master - pac.test.appstudio.openshift.io/sender: red-hat-konflux[bot] - pac.test.appstudio.openshift.io/sha-title: |- - chore(deps): update quay.io/rhacs-eng/konflux-tasks:latest docker digest to d37b352 - - Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com> - pac.test.appstudio.openshift.io/sha-url: https://github.com/stackrox/operator-index/commit/f2493755caa9cb73a0531c536be6ae16ee8c2312 - pac.test.appstudio.openshift.io/source-branch: refs/heads/master - acs.redhat.com/original-snapshot-name: acs-operator-index-ocp-v4-19-vqd7g - labels: - appstudio.openshift.io/application: acs-operator-index-ocp-v4-19 - appstudio.openshift.io/component: operator-index-ocp-v4-19 - pac.test.appstudio.openshift.io/event-type: push - pac.test.appstudio.openshift.io/sha: f2493755caa9cb73a0531c536be6ae16ee8c2312 - name: acs-operator-index-ocp-v4-19-20260121-stage-f249375 - namespace: rh-acs-tenant -spec: - application: acs-operator-index-ocp-v4-19 - artifacts: {} - components: - - containerImage: quay.io/rhacs-eng/stackrox-operator-index@sha256:55aee4c0b0d23aaf326d87dbe23b056fb58ff9638d3ec272e2280657f2e07225 - name: operator-index-ocp-v4-19 - source: - git: - revision: f2493755caa9cb73a0531c536be6ae16ee8c2312 - url: https://github.com/stackrox/operator-index - ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Release -metadata: - name: acs-operator-index-ocp-v4-19-20260121-stage-f249375 - namespace: rh-acs-tenant -spec: - releasePlan: acs-operator-index-stage-ocp-v4-19 - snapshot: acs-operator-index-ocp-v4-19-20260121-stage-f249375 ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Snapshot -metadata: - annotations: - build.appstudio.redhat.com/pull_request_number: '{{pull_request_number}}' - build.appstudio.redhat.com/target_branch: master - pac.test.appstudio.openshift.io/branch: master - pac.test.appstudio.openshift.io/sender: red-hat-konflux[bot] - pac.test.appstudio.openshift.io/sha-title: |- - chore(deps): update quay.io/rhacs-eng/konflux-tasks:latest docker digest to d37b352 - - Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com> - pac.test.appstudio.openshift.io/sha-url: https://github.com/stackrox/operator-index/commit/f2493755caa9cb73a0531c536be6ae16ee8c2312 - pac.test.appstudio.openshift.io/source-branch: refs/heads/master - acs.redhat.com/original-snapshot-name: acs-operator-index-ocp-v4-20-f9sr2 - labels: - appstudio.openshift.io/application: acs-operator-index-ocp-v4-20 - appstudio.openshift.io/component: operator-index-ocp-v4-20 - pac.test.appstudio.openshift.io/event-type: push - pac.test.appstudio.openshift.io/sha: f2493755caa9cb73a0531c536be6ae16ee8c2312 - name: acs-operator-index-ocp-v4-20-20260121-stage-f249375 - namespace: rh-acs-tenant -spec: - application: acs-operator-index-ocp-v4-20 - artifacts: {} - components: - - containerImage: quay.io/rhacs-eng/stackrox-operator-index@sha256:2a0dcc6c7af284c392c1c18c76eead0e65c1251c3fc96338405e47e98c69921c - name: operator-index-ocp-v4-20 - source: - git: - revision: f2493755caa9cb73a0531c536be6ae16ee8c2312 - url: https://github.com/stackrox/operator-index - ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Release -metadata: - name: acs-operator-index-ocp-v4-20-20260121-stage-f249375 - namespace: rh-acs-tenant -spec: - releasePlan: acs-operator-index-stage-ocp-v4-20 - snapshot: acs-operator-index-ocp-v4-20-20260121-stage-f249375 ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Snapshot -metadata: - annotations: - build.appstudio.redhat.com/pull_request_number: '{{pull_request_number}}' - build.appstudio.redhat.com/target_branch: master - pac.test.appstudio.openshift.io/branch: master - pac.test.appstudio.openshift.io/sender: red-hat-konflux[bot] - pac.test.appstudio.openshift.io/sha-title: |- - chore(deps): update quay.io/rhacs-eng/konflux-tasks:latest docker digest to d37b352 - - Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com> - pac.test.appstudio.openshift.io/sha-url: https://github.com/stackrox/operator-index/commit/f2493755caa9cb73a0531c536be6ae16ee8c2312 - pac.test.appstudio.openshift.io/source-branch: refs/heads/master - acs.redhat.com/original-snapshot-name: acs-operator-index-ocp-v4-21-zxbsg - labels: - appstudio.openshift.io/application: acs-operator-index-ocp-v4-21 - appstudio.openshift.io/component: operator-index-ocp-v4-21 - pac.test.appstudio.openshift.io/event-type: push - pac.test.appstudio.openshift.io/sha: f2493755caa9cb73a0531c536be6ae16ee8c2312 - name: acs-operator-index-ocp-v4-21-20260121-stage-f249375 - namespace: rh-acs-tenant -spec: - application: acs-operator-index-ocp-v4-21 - artifacts: {} - components: - - containerImage: quay.io/rhacs-eng/stackrox-operator-index@sha256:7fa8b013e3c0802a8c9b1f126e3bfec280d69a544dd2b1d4dc87dfde80e52175 - name: operator-index-ocp-v4-21 - source: - git: - revision: f2493755caa9cb73a0531c536be6ae16ee8c2312 - url: https://github.com/stackrox/operator-index - ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Release -metadata: - name: acs-operator-index-ocp-v4-21-20260121-stage-f249375 - namespace: rh-acs-tenant -spec: - releasePlan: acs-operator-index-stage-ocp-v4-21 - snapshot: acs-operator-index-ocp-v4-21-20260121-stage-f249375