From e1efe45e6d052a87d0bce4c77192561108f2a3a9 Mon Sep 17 00:00:00 2001 From: Tom Martensen Date: Wed, 29 Oct 2025 16:37:26 +0100 Subject: [PATCH 1/2] fix: make pipeline graph in UI accurate --- .tekton/operator-index-pipeline.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.tekton/operator-index-pipeline.yaml b/.tekton/operator-index-pipeline.yaml index 87b9d9e3..7daf4d4e 100644 --- a/.tekton/operator-index-pipeline.yaml +++ b/.tekton/operator-index-pipeline.yaml @@ -281,6 +281,7 @@ spec: - input: $(tasks.init.results.build) operator: in values: ["true"] + runAfter: [ build-container ] - name: deprecated-base-image-check params: - name: IMAGE_URL From c04885becd081e31230d3cdec47dc8db46a2d583 Mon Sep 17 00:00:00 2001 From: Tom Martensen Date: Wed, 29 Oct 2025 16:39:27 +0100 Subject: [PATCH 2/2] rename build-container to build-images task to expand tasks --- .tekton/operator-index-pipeline.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.tekton/operator-index-pipeline.yaml b/.tekton/operator-index-pipeline.yaml index 7daf4d4e..270ab9fa 100644 --- a/.tekton/operator-index-pipeline.yaml +++ b/.tekton/operator-index-pipeline.yaml @@ -210,7 +210,7 @@ spec: workspaces: - name: basic-auth workspace: git-auth - - name: build-container + - name: build-images matrix: params: - name: PLATFORM @@ -265,7 +265,7 @@ spec: value: $(params.build-image-index) - name: IMAGES value: - - $(tasks.build-container.results.IMAGE_REF[*]) + - $(tasks.build-images.results.IMAGE_REF[*]) - name: BUILDAH_FORMAT value: $(params.buildah-format) taskRef: @@ -281,7 +281,7 @@ spec: - input: $(tasks.init.results.build) operator: in values: ["true"] - runAfter: [ build-container ] + runAfter: [ build-images ] - name: deprecated-base-image-check params: - name: IMAGE_URL