From a8da231329a4ca1849e76c2c3ef90469b3a586c1 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Wed, 23 Jul 2025 08:14:32 +0000 Subject: [PATCH 01/83] Red Hat Konflux update cert-manager-operator-bundle-1-17 Signed-off-by: red-hat-konflux --- ...ger-operator-bundle-1-17-pull-request.yaml | 581 +++++++++++++++++- ...ert-manager-operator-bundle-1-17-push.yaml | 581 +++++++++++++++++- 2 files changed, 1138 insertions(+), 24 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml index a1e15f150..74e7cc865 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml @@ -9,9 +9,7 @@ metadata: pipelinesascode.tekton.dev/cancel-in-progress: "true" pipelinesascode.tekton.dev/max-keep-runs: "3" pipelinesascode.tekton.dev/on-cel-expression: event == "pull_request" && target_branch - == "release-1.17" && (".tekton/cert-manager-operator-bundle-1-17-pull-request.yaml".pathChanged() || - "Containerfile.cert-manager-operator.bundle".pathChanged() || "hack/bundle/render_templates.sh".pathChanged() || - "cert-manager-operator/***".pathChanged()) + == "release-1.17" creationTimestamp: null labels: appstudio.openshift.io/application: cert-manager-operator-1-17 @@ -33,15 +31,574 @@ spec: value: Containerfile.cert-manager-operator.bundle - name: path-context value: . - - name: build-args - value: - - RELEASE_VERSION=v1.17.0 - - COMMIT_SHA={{revision}} - - SOURCE_URL={{source_url}} - - name: prefetch-input - value: '{"type": "gomod", "path": "."}' - pipelineRef: - name: single-arch-build-pipeline + pipelineSpec: + description: | + This pipeline is ideal for building container images from a Containerfile while maintaining trust after pipeline customization. + + _Uses `buildah` to create a container image leveraging [trusted artifacts](https://konflux-ci.dev/architecture/ADR/0036-trusted-artifacts.html). It also optionally creates a source image and runs some build-time tests. Information is shared between tasks using OCI artifacts instead of PVCs. EC will pass the [`trusted_task.trusted`](https://conforma.dev/docs/policy/packages/release_trusted_task.html#trusted_task__trusted) policy as long as all data used to build the artifact is generated from trusted tasks. + This pipeline is pushed as a Tekton bundle to [quay.io](https://quay.io/repository/konflux-ci/tekton-catalog/pipeline-docker-build-oci-ta?tab=tags)_ + finally: + - name: show-sbom + params: + - name: IMAGE_URL + value: $(tasks.build-image-index.results.IMAGE_URL) + taskRef: + params: + - name: name + value: show-sbom + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-show-sbom:0.1@sha256:86c069cac0a669797e8049faa8aa4088e70ff7fcd579d5bdc37626a9e0488a05 + - name: kind + value: task + resolver: bundles + params: + - description: Source Repository URL + name: git-url + type: string + - default: "" + description: Revision of the Source Repository + name: revision + type: string + - description: Fully Qualified Output Image + name: output-image + type: string + - default: . + description: Path to the source code of an application's component from where + to build image. + name: path-context + type: string + - default: Dockerfile + description: Path to the Dockerfile inside the context specified by parameter + path-context + name: dockerfile + type: string + - default: "false" + description: Force rebuild image + name: rebuild + type: string + - default: "false" + description: Skip checks against built image + name: skip-checks + type: string + - default: "false" + description: Execute the build with network isolation + name: hermetic + type: string + - default: "" + description: Build dependencies to be prefetched by Cachi2 + name: prefetch-input + type: string + - default: "" + description: Image tag expiration time, time values could be something like + 1h, 2d, 3w for hours, days, and weeks, respectively. + name: image-expires-after + type: string + - default: "false" + description: Build a source image. + name: build-source-image + type: string + - default: "false" + description: Add built image into an OCI image index + name: build-image-index + type: string + - default: [] + description: Array of --build-arg values ("arg=value" strings) for buildah + name: build-args + type: array + - default: "" + description: Path to a file with build arguments for buildah, see https://www.mankier.com/1/buildah-build#--build-arg-file + name: build-args-file + type: string + - default: "false" + description: Whether to enable privileged mode, should be used only with remote + VMs + name: privileged-nested + type: string + results: + - description: "" + name: IMAGE_URL + value: $(tasks.build-image-index.results.IMAGE_URL) + - description: "" + name: IMAGE_DIGEST + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - description: "" + name: CHAINS-GIT_URL + value: $(tasks.clone-repository.results.url) + - description: "" + name: CHAINS-GIT_COMMIT + value: $(tasks.clone-repository.results.commit) + tasks: + - name: init + params: + - name: image-url + value: $(params.output-image) + - name: rebuild + value: $(params.rebuild) + - name: skip-checks + value: $(params.skip-checks) + taskRef: + params: + - name: name + value: init + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-init:0.2@sha256:1d8221c84f91b923d89de50bf16481ea729e3b68ea04a9a7cbe8485ddbb27ee6 + - name: kind + value: task + resolver: bundles + - name: clone-repository + params: + - name: url + value: $(params.git-url) + - name: revision + value: $(params.revision) + - name: ociStorage + value: $(params.output-image).git + - name: ociArtifactExpiresAfter + value: $(params.image-expires-after) + runAfter: + - init + taskRef: + params: + - name: name + value: git-clone-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-git-clone-oci-ta:0.1@sha256:d35e5d501cb5f5f88369511f76249857cb5ac30250e1dcf086939321964ff6b9 + - name: kind + value: task + resolver: bundles + when: + - input: $(tasks.init.results.build) + operator: in + values: + - "true" + workspaces: + - name: basic-auth + workspace: git-auth + - name: prefetch-dependencies + params: + - name: input + value: $(params.prefetch-input) + - name: SOURCE_ARTIFACT + value: $(tasks.clone-repository.results.SOURCE_ARTIFACT) + - name: ociStorage + value: $(params.output-image).prefetch + - name: ociArtifactExpiresAfter + value: $(params.image-expires-after) + runAfter: + - clone-repository + taskRef: + params: + - name: name + value: prefetch-dependencies-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:092491ac0f6e1009d10c58a1319d1029371bf637cc1293cceba53c6da5314ed1 + - name: kind + value: task + resolver: bundles + workspaces: + - name: git-basic-auth + workspace: git-auth + - name: netrc + workspace: netrc + - name: build-container + params: + - name: IMAGE + value: $(params.output-image) + - name: DOCKERFILE + value: $(params.dockerfile) + - name: CONTEXT + value: $(params.path-context) + - name: HERMETIC + value: $(params.hermetic) + - name: PREFETCH_INPUT + value: $(params.prefetch-input) + - name: IMAGE_EXPIRES_AFTER + value: $(params.image-expires-after) + - name: COMMIT_SHA + value: $(tasks.clone-repository.results.commit) + - name: BUILD_ARGS + value: + - $(params.build-args[*]) + - name: BUILD_ARGS_FILE + value: $(params.build-args-file) + - name: PRIVILEGED_NESTED + value: $(params.privileged-nested) + - name: SOURCE_ARTIFACT + value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) + - name: CACHI2_ARTIFACT + value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) + runAfter: + - prefetch-dependencies + taskRef: + params: + - name: name + value: buildah-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:9e9bac2044d6231b44114046b9d528c135388699365f0f210ee810c01bd4d702 + - name: kind + value: task + resolver: bundles + when: + - input: $(tasks.init.results.build) + operator: in + values: + - "true" + - name: build-image-index + params: + - name: IMAGE + value: $(params.output-image) + - name: COMMIT_SHA + value: $(tasks.clone-repository.results.commit) + - name: IMAGE_EXPIRES_AFTER + value: $(params.image-expires-after) + - name: ALWAYS_BUILD_INDEX + value: $(params.build-image-index) + - name: IMAGES + value: + - $(tasks.build-container.results.IMAGE_URL)@$(tasks.build-container.results.IMAGE_DIGEST) + runAfter: + - build-container + taskRef: + params: + - name: name + value: build-image-index + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:3499772af90aad0d3935629be6d37dd9292195fb629e6f43ec839c7f545a0faa + - name: kind + value: task + resolver: bundles + when: + - input: $(tasks.init.results.build) + operator: in + values: + - "true" + - name: build-source-image + params: + - name: BINARY_IMAGE + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: BINARY_IMAGE_DIGEST + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: SOURCE_ARTIFACT + value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) + - name: CACHI2_ARTIFACT + value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: source-build-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-source-build-oci-ta:0.3@sha256:b1eb49583b41872b27356fee20d5f0eb6ff7f5cdeacde7ffb39655f031104728 + - name: kind + value: task + resolver: bundles + when: + - input: $(tasks.init.results.build) + operator: in + values: + - "true" + - input: $(params.build-source-image) + operator: in + values: + - "true" + - name: deprecated-base-image-check + params: + - name: IMAGE_URL + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: IMAGE_DIGEST + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: deprecated-image-check + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-deprecated-image-check:0.5@sha256:3c8b81fa868e27c6266e7660a4bfb4c822846dcf4304606e71e20893b0d3e515 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: clair-scan + params: + - name: image-digest + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: clair-scan + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-clair-scan:0.2@sha256:417f44117f8d87a4a62fea6589b5746612ac61640b454dbd88f74892380411f2 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: ecosystem-cert-preflight-checks + params: + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: ecosystem-cert-preflight-checks + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.2@sha256:f99d2bdb02f13223d494077a2cde31418d09369f33c02134a8e7e5fad2f61eda + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: sast-snyk-check + params: + - name: image-digest + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: SOURCE_ARTIFACT + value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) + - name: CACHI2_ARTIFACT + value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: sast-snyk-check-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-sast-snyk-check-oci-ta:0.4@sha256:fe5e5ba3a72632cd505910de2eacd62c9d11ed570c325173188f8d568ac60771 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: clamav-scan + params: + - name: image-digest + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: clamav-scan + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-clamav-scan:0.2@sha256:7749146f7e4fe530846f1b15c9366178ec9f44776ef1922a60d3e7e2b8c6426b + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: sast-coverity-check + params: + - name: image-digest + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: IMAGE + value: $(params.output-image) + - name: DOCKERFILE + value: $(params.dockerfile) + - name: CONTEXT + value: $(params.path-context) + - name: HERMETIC + value: $(params.hermetic) + - name: PREFETCH_INPUT + value: $(params.prefetch-input) + - name: IMAGE_EXPIRES_AFTER + value: $(params.image-expires-after) + - name: COMMIT_SHA + value: $(tasks.clone-repository.results.commit) + - name: BUILD_ARGS + value: + - $(params.build-args[*]) + - name: BUILD_ARGS_FILE + value: $(params.build-args-file) + - name: SOURCE_ARTIFACT + value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) + - name: CACHI2_ARTIFACT + value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) + runAfter: + - coverity-availability-check + taskRef: + params: + - name: name + value: sast-coverity-check-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-sast-coverity-check-oci-ta:0.3@sha256:f9ca942208dc2e63b479384ccc56a611cc793397ecc837637b5b9f89c2ecbefe + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - input: $(tasks.coverity-availability-check.results.STATUS) + operator: in + values: + - success + - name: coverity-availability-check + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: coverity-availability-check + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-coverity-availability-check:0.2@sha256:db2b267dc15e4ed17f704ee91b8e9b38068e1a35b1018a328fdca621819d74c6 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: sast-shell-check + params: + - name: image-digest + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: SOURCE_ARTIFACT + value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) + - name: CACHI2_ARTIFACT + value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: sast-shell-check-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-sast-shell-check-oci-ta:0.1@sha256:bf7bdde00b7212f730c1356672290af6f38d070da2c8a316987b5c32fd49e0b9 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: sast-unicode-check + params: + - name: image-digest + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: SOURCE_ARTIFACT + value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) + - name: CACHI2_ARTIFACT + value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: sast-unicode-check-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-sast-unicode-check-oci-ta:0.2@sha256:3f99dc4634a62e1530324cd565d12323ca82be3cfa8a031a36b210becfa7b552 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: apply-tags + params: + - name: IMAGE_URL + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: IMAGE_DIGEST + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: apply-tags + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-apply-tags:0.2@sha256:517a51e260c0b59654a9d7b842e1ab07d76bce15ca7ce9c8fd2489a19be6463d + - name: kind + value: task + resolver: bundles + - name: push-dockerfile + params: + - name: IMAGE + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: IMAGE_DIGEST + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: DOCKERFILE + value: $(params.dockerfile) + - name: CONTEXT + value: $(params.path-context) + - name: SOURCE_ARTIFACT + value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: push-dockerfile-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-push-dockerfile-oci-ta:0.1@sha256:8c75c4a747e635e5f3e12266a3bb6e5d3132bf54e37eaa53d505f89897dd8eca + - name: kind + value: task + resolver: bundles + - name: rpms-signature-scan + params: + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: image-digest + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: rpms-signature-scan + - name: bundle + value: quay.io/konflux-ci/konflux-vanguard/task-rpms-signature-scan:0.2@sha256:7d1c087d7d33dd97effb3b4c9f3788e4c3138da2032040d69da6929e9a3aaceb + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + workspaces: + - name: git-auth + optional: true + - name: netrc + optional: true taskRunTemplate: serviceAccountName: build-pipeline-cert-manager-operator-bundle-1-17 workspaces: diff --git a/.tekton/cert-manager-operator-bundle-1-17-push.yaml b/.tekton/cert-manager-operator-bundle-1-17-push.yaml index e63e76c17..56005a5f1 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-push.yaml @@ -8,9 +8,7 @@ metadata: pipelinesascode.tekton.dev/cancel-in-progress: "false" pipelinesascode.tekton.dev/max-keep-runs: "3" pipelinesascode.tekton.dev/on-cel-expression: event == "push" && target_branch - == "release-1.17" && (".tekton/cert-manager-operator-bundle-1-17-push.yaml".pathChanged() || - "Containerfile.cert-manager-operator.bundle".pathChanged() || "hack/bundle/render_templates.sh".pathChanged() || - "cert-manager-operator/***".pathChanged()) + == "release-1.17" creationTimestamp: null labels: appstudio.openshift.io/application: cert-manager-operator-1-17 @@ -30,15 +28,574 @@ spec: value: Containerfile.cert-manager-operator.bundle - name: path-context value: . - - name: build-args - value: - - RELEASE_VERSION=v1.17.0 - - COMMIT_SHA={{revision}} - - SOURCE_URL={{source_url}} - - name: prefetch-input - value: '{"type": "gomod", "path": "."}' - pipelineRef: - name: single-arch-build-pipeline + pipelineSpec: + description: | + This pipeline is ideal for building container images from a Containerfile while maintaining trust after pipeline customization. + + _Uses `buildah` to create a container image leveraging [trusted artifacts](https://konflux-ci.dev/architecture/ADR/0036-trusted-artifacts.html). It also optionally creates a source image and runs some build-time tests. Information is shared between tasks using OCI artifacts instead of PVCs. EC will pass the [`trusted_task.trusted`](https://conforma.dev/docs/policy/packages/release_trusted_task.html#trusted_task__trusted) policy as long as all data used to build the artifact is generated from trusted tasks. + This pipeline is pushed as a Tekton bundle to [quay.io](https://quay.io/repository/konflux-ci/tekton-catalog/pipeline-docker-build-oci-ta?tab=tags)_ + finally: + - name: show-sbom + params: + - name: IMAGE_URL + value: $(tasks.build-image-index.results.IMAGE_URL) + taskRef: + params: + - name: name + value: show-sbom + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-show-sbom:0.1@sha256:86c069cac0a669797e8049faa8aa4088e70ff7fcd579d5bdc37626a9e0488a05 + - name: kind + value: task + resolver: bundles + params: + - description: Source Repository URL + name: git-url + type: string + - default: "" + description: Revision of the Source Repository + name: revision + type: string + - description: Fully Qualified Output Image + name: output-image + type: string + - default: . + description: Path to the source code of an application's component from where + to build image. + name: path-context + type: string + - default: Dockerfile + description: Path to the Dockerfile inside the context specified by parameter + path-context + name: dockerfile + type: string + - default: "false" + description: Force rebuild image + name: rebuild + type: string + - default: "false" + description: Skip checks against built image + name: skip-checks + type: string + - default: "false" + description: Execute the build with network isolation + name: hermetic + type: string + - default: "" + description: Build dependencies to be prefetched by Cachi2 + name: prefetch-input + type: string + - default: "" + description: Image tag expiration time, time values could be something like + 1h, 2d, 3w for hours, days, and weeks, respectively. + name: image-expires-after + type: string + - default: "false" + description: Build a source image. + name: build-source-image + type: string + - default: "false" + description: Add built image into an OCI image index + name: build-image-index + type: string + - default: [] + description: Array of --build-arg values ("arg=value" strings) for buildah + name: build-args + type: array + - default: "" + description: Path to a file with build arguments for buildah, see https://www.mankier.com/1/buildah-build#--build-arg-file + name: build-args-file + type: string + - default: "false" + description: Whether to enable privileged mode, should be used only with remote + VMs + name: privileged-nested + type: string + results: + - description: "" + name: IMAGE_URL + value: $(tasks.build-image-index.results.IMAGE_URL) + - description: "" + name: IMAGE_DIGEST + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - description: "" + name: CHAINS-GIT_URL + value: $(tasks.clone-repository.results.url) + - description: "" + name: CHAINS-GIT_COMMIT + value: $(tasks.clone-repository.results.commit) + tasks: + - name: init + params: + - name: image-url + value: $(params.output-image) + - name: rebuild + value: $(params.rebuild) + - name: skip-checks + value: $(params.skip-checks) + taskRef: + params: + - name: name + value: init + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-init:0.2@sha256:1d8221c84f91b923d89de50bf16481ea729e3b68ea04a9a7cbe8485ddbb27ee6 + - name: kind + value: task + resolver: bundles + - name: clone-repository + params: + - name: url + value: $(params.git-url) + - name: revision + value: $(params.revision) + - name: ociStorage + value: $(params.output-image).git + - name: ociArtifactExpiresAfter + value: $(params.image-expires-after) + runAfter: + - init + taskRef: + params: + - name: name + value: git-clone-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-git-clone-oci-ta:0.1@sha256:d35e5d501cb5f5f88369511f76249857cb5ac30250e1dcf086939321964ff6b9 + - name: kind + value: task + resolver: bundles + when: + - input: $(tasks.init.results.build) + operator: in + values: + - "true" + workspaces: + - name: basic-auth + workspace: git-auth + - name: prefetch-dependencies + params: + - name: input + value: $(params.prefetch-input) + - name: SOURCE_ARTIFACT + value: $(tasks.clone-repository.results.SOURCE_ARTIFACT) + - name: ociStorage + value: $(params.output-image).prefetch + - name: ociArtifactExpiresAfter + value: $(params.image-expires-after) + runAfter: + - clone-repository + taskRef: + params: + - name: name + value: prefetch-dependencies-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:092491ac0f6e1009d10c58a1319d1029371bf637cc1293cceba53c6da5314ed1 + - name: kind + value: task + resolver: bundles + workspaces: + - name: git-basic-auth + workspace: git-auth + - name: netrc + workspace: netrc + - name: build-container + params: + - name: IMAGE + value: $(params.output-image) + - name: DOCKERFILE + value: $(params.dockerfile) + - name: CONTEXT + value: $(params.path-context) + - name: HERMETIC + value: $(params.hermetic) + - name: PREFETCH_INPUT + value: $(params.prefetch-input) + - name: IMAGE_EXPIRES_AFTER + value: $(params.image-expires-after) + - name: COMMIT_SHA + value: $(tasks.clone-repository.results.commit) + - name: BUILD_ARGS + value: + - $(params.build-args[*]) + - name: BUILD_ARGS_FILE + value: $(params.build-args-file) + - name: PRIVILEGED_NESTED + value: $(params.privileged-nested) + - name: SOURCE_ARTIFACT + value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) + - name: CACHI2_ARTIFACT + value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) + runAfter: + - prefetch-dependencies + taskRef: + params: + - name: name + value: buildah-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:9e9bac2044d6231b44114046b9d528c135388699365f0f210ee810c01bd4d702 + - name: kind + value: task + resolver: bundles + when: + - input: $(tasks.init.results.build) + operator: in + values: + - "true" + - name: build-image-index + params: + - name: IMAGE + value: $(params.output-image) + - name: COMMIT_SHA + value: $(tasks.clone-repository.results.commit) + - name: IMAGE_EXPIRES_AFTER + value: $(params.image-expires-after) + - name: ALWAYS_BUILD_INDEX + value: $(params.build-image-index) + - name: IMAGES + value: + - $(tasks.build-container.results.IMAGE_URL)@$(tasks.build-container.results.IMAGE_DIGEST) + runAfter: + - build-container + taskRef: + params: + - name: name + value: build-image-index + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:3499772af90aad0d3935629be6d37dd9292195fb629e6f43ec839c7f545a0faa + - name: kind + value: task + resolver: bundles + when: + - input: $(tasks.init.results.build) + operator: in + values: + - "true" + - name: build-source-image + params: + - name: BINARY_IMAGE + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: BINARY_IMAGE_DIGEST + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: SOURCE_ARTIFACT + value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) + - name: CACHI2_ARTIFACT + value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: source-build-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-source-build-oci-ta:0.3@sha256:b1eb49583b41872b27356fee20d5f0eb6ff7f5cdeacde7ffb39655f031104728 + - name: kind + value: task + resolver: bundles + when: + - input: $(tasks.init.results.build) + operator: in + values: + - "true" + - input: $(params.build-source-image) + operator: in + values: + - "true" + - name: deprecated-base-image-check + params: + - name: IMAGE_URL + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: IMAGE_DIGEST + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: deprecated-image-check + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-deprecated-image-check:0.5@sha256:3c8b81fa868e27c6266e7660a4bfb4c822846dcf4304606e71e20893b0d3e515 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: clair-scan + params: + - name: image-digest + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: clair-scan + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-clair-scan:0.2@sha256:417f44117f8d87a4a62fea6589b5746612ac61640b454dbd88f74892380411f2 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: ecosystem-cert-preflight-checks + params: + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: ecosystem-cert-preflight-checks + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.2@sha256:f99d2bdb02f13223d494077a2cde31418d09369f33c02134a8e7e5fad2f61eda + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: sast-snyk-check + params: + - name: image-digest + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: SOURCE_ARTIFACT + value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) + - name: CACHI2_ARTIFACT + value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: sast-snyk-check-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-sast-snyk-check-oci-ta:0.4@sha256:fe5e5ba3a72632cd505910de2eacd62c9d11ed570c325173188f8d568ac60771 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: clamav-scan + params: + - name: image-digest + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: clamav-scan + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-clamav-scan:0.2@sha256:7749146f7e4fe530846f1b15c9366178ec9f44776ef1922a60d3e7e2b8c6426b + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: sast-coverity-check + params: + - name: image-digest + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: IMAGE + value: $(params.output-image) + - name: DOCKERFILE + value: $(params.dockerfile) + - name: CONTEXT + value: $(params.path-context) + - name: HERMETIC + value: $(params.hermetic) + - name: PREFETCH_INPUT + value: $(params.prefetch-input) + - name: IMAGE_EXPIRES_AFTER + value: $(params.image-expires-after) + - name: COMMIT_SHA + value: $(tasks.clone-repository.results.commit) + - name: BUILD_ARGS + value: + - $(params.build-args[*]) + - name: BUILD_ARGS_FILE + value: $(params.build-args-file) + - name: SOURCE_ARTIFACT + value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) + - name: CACHI2_ARTIFACT + value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) + runAfter: + - coverity-availability-check + taskRef: + params: + - name: name + value: sast-coverity-check-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-sast-coverity-check-oci-ta:0.3@sha256:f9ca942208dc2e63b479384ccc56a611cc793397ecc837637b5b9f89c2ecbefe + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - input: $(tasks.coverity-availability-check.results.STATUS) + operator: in + values: + - success + - name: coverity-availability-check + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: coverity-availability-check + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-coverity-availability-check:0.2@sha256:db2b267dc15e4ed17f704ee91b8e9b38068e1a35b1018a328fdca621819d74c6 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: sast-shell-check + params: + - name: image-digest + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: SOURCE_ARTIFACT + value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) + - name: CACHI2_ARTIFACT + value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: sast-shell-check-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-sast-shell-check-oci-ta:0.1@sha256:bf7bdde00b7212f730c1356672290af6f38d070da2c8a316987b5c32fd49e0b9 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: sast-unicode-check + params: + - name: image-digest + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: SOURCE_ARTIFACT + value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) + - name: CACHI2_ARTIFACT + value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: sast-unicode-check-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-sast-unicode-check-oci-ta:0.2@sha256:3f99dc4634a62e1530324cd565d12323ca82be3cfa8a031a36b210becfa7b552 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: apply-tags + params: + - name: IMAGE_URL + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: IMAGE_DIGEST + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: apply-tags + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-apply-tags:0.2@sha256:517a51e260c0b59654a9d7b842e1ab07d76bce15ca7ce9c8fd2489a19be6463d + - name: kind + value: task + resolver: bundles + - name: push-dockerfile + params: + - name: IMAGE + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: IMAGE_DIGEST + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + - name: DOCKERFILE + value: $(params.dockerfile) + - name: CONTEXT + value: $(params.path-context) + - name: SOURCE_ARTIFACT + value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: push-dockerfile-oci-ta + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-push-dockerfile-oci-ta:0.1@sha256:8c75c4a747e635e5f3e12266a3bb6e5d3132bf54e37eaa53d505f89897dd8eca + - name: kind + value: task + resolver: bundles + - name: rpms-signature-scan + params: + - name: image-url + value: $(tasks.build-image-index.results.IMAGE_URL) + - name: image-digest + value: $(tasks.build-image-index.results.IMAGE_DIGEST) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: rpms-signature-scan + - name: bundle + value: quay.io/konflux-ci/konflux-vanguard/task-rpms-signature-scan:0.2@sha256:7d1c087d7d33dd97effb3b4c9f3788e4c3138da2032040d69da6929e9a3aaceb + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + workspaces: + - name: git-auth + optional: true + - name: netrc + optional: true taskRunTemplate: serviceAccountName: build-pipeline-cert-manager-operator-bundle-1-17 workspaces: From aa98f031cf67373d3b69b260287e99e9fe799828 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Mon, 28 Jul 2025 14:03:34 +0000 Subject: [PATCH 02/83] Red Hat Konflux update cert-manager-operator-bundle-1-17 Signed-off-by: red-hat-konflux --- ...ger-operator-bundle-1-17-pull-request.yaml | 24 +++++++++---------- ...ert-manager-operator-bundle-1-17-push.yaml | 24 +++++++++---------- 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml index 74e7cc865..da4f21b8a 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml @@ -47,7 +47,7 @@ spec: - name: name value: show-sbom - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-show-sbom:0.1@sha256:86c069cac0a669797e8049faa8aa4088e70ff7fcd579d5bdc37626a9e0488a05 + value: quay.io/konflux-ci/tekton-catalog/task-show-sbom:0.1@sha256:beb0616db051952b4b861dd8c3e00fa1c0eccbd926feddf71194d3bb3ace9ce7 - name: kind value: task resolver: bundles @@ -141,7 +141,7 @@ spec: - name: name value: init - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-init:0.2@sha256:1d8221c84f91b923d89de50bf16481ea729e3b68ea04a9a7cbe8485ddbb27ee6 + value: quay.io/konflux-ci/tekton-catalog/task-init:0.2@sha256:08e18a4dc5f947c1d20e8353a19d013144bea87b72f67236b165dd4778523951 - name: kind value: task resolver: bundles @@ -162,7 +162,7 @@ spec: - name: name value: git-clone-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-git-clone-oci-ta:0.1@sha256:d35e5d501cb5f5f88369511f76249857cb5ac30250e1dcf086939321964ff6b9 + value: quay.io/konflux-ci/tekton-catalog/task-git-clone-oci-ta:0.1@sha256:be82c55346e8810bd1edc5547f864064da6945979baccca7dfc99990b392a02b - name: kind value: task resolver: bundles @@ -191,7 +191,7 @@ spec: - name: name value: prefetch-dependencies-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:092491ac0f6e1009d10c58a1319d1029371bf637cc1293cceba53c6da5314ed1 + value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:125aea525bcdb31ff86cb37d56e3d8369587ead48da3bc454d4344682724ca54 - name: kind value: task resolver: bundles @@ -234,7 +234,7 @@ spec: - name: name value: buildah-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:9e9bac2044d6231b44114046b9d528c135388699365f0f210ee810c01bd4d702 + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:9c338b6a1eba1c159dad87f2fb672ae728842c97e381084819ed83e1508ad2ae - name: kind value: task resolver: bundles @@ -263,7 +263,7 @@ spec: - name: name value: build-image-index - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:3499772af90aad0d3935629be6d37dd9292195fb629e6f43ec839c7f545a0faa + value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:72f77a8c62f9d6f69ab5c35170839e4b190026e6cc3d7d4ceafa7033fc30ad7b - name: kind value: task resolver: bundles @@ -289,7 +289,7 @@ spec: - name: name value: source-build-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-source-build-oci-ta:0.3@sha256:b1eb49583b41872b27356fee20d5f0eb6ff7f5cdeacde7ffb39655f031104728 + value: quay.io/konflux-ci/tekton-catalog/task-source-build-oci-ta:0.3@sha256:bfec1fabb0ed7c191e6c85d75e6cc577a04cabe9e6b35f9476529e8e5b3c0c82 - name: kind value: task resolver: bundles @@ -315,7 +315,7 @@ spec: - name: name value: deprecated-image-check - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-deprecated-image-check:0.5@sha256:3c8b81fa868e27c6266e7660a4bfb4c822846dcf4304606e71e20893b0d3e515 + value: quay.io/konflux-ci/tekton-catalog/task-deprecated-image-check:0.5@sha256:f485ef8bfdaf6e6d8d7795eb2e25f9c5ee8619d52220f4d64b5e28078d568c89 - name: kind value: task resolver: bundles @@ -405,7 +405,7 @@ spec: - name: name value: clamav-scan - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-clamav-scan:0.2@sha256:7749146f7e4fe530846f1b15c9366178ec9f44776ef1922a60d3e7e2b8c6426b + value: quay.io/konflux-ci/tekton-catalog/task-clamav-scan:0.3@sha256:cce2dfcc5bd6e91ee54aacdadad523b013eeae5cdaa7f6a4624b8cbcc040f439 - name: kind value: task resolver: bundles @@ -450,7 +450,7 @@ spec: - name: name value: sast-coverity-check-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-sast-coverity-check-oci-ta:0.3@sha256:f9ca942208dc2e63b479384ccc56a611cc793397ecc837637b5b9f89c2ecbefe + value: quay.io/konflux-ci/tekton-catalog/task-sast-coverity-check-oci-ta:0.3@sha256:ff78675c38ad6f98570043666f67ef870364587e9009eaefd5f3a681de80a35e - name: kind value: task resolver: bundles @@ -545,7 +545,7 @@ spec: - name: name value: apply-tags - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-apply-tags:0.2@sha256:517a51e260c0b59654a9d7b842e1ab07d76bce15ca7ce9c8fd2489a19be6463d + value: quay.io/konflux-ci/tekton-catalog/task-apply-tags:0.2@sha256:264fa9591929fb60e3aca033ff168e5d98b1aafb458d6988e327a99ff494b00b - name: kind value: task resolver: bundles @@ -568,7 +568,7 @@ spec: - name: name value: push-dockerfile-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-push-dockerfile-oci-ta:0.1@sha256:8c75c4a747e635e5f3e12266a3bb6e5d3132bf54e37eaa53d505f89897dd8eca + value: quay.io/konflux-ci/tekton-catalog/task-push-dockerfile-oci-ta:0.1@sha256:8640726ef7c5875e3b2e64c9f823921ea970674593f077cadfce3c45c9b9a2b9 - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-17-push.yaml b/.tekton/cert-manager-operator-bundle-1-17-push.yaml index 56005a5f1..707e3b40b 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-push.yaml @@ -44,7 +44,7 @@ spec: - name: name value: show-sbom - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-show-sbom:0.1@sha256:86c069cac0a669797e8049faa8aa4088e70ff7fcd579d5bdc37626a9e0488a05 + value: quay.io/konflux-ci/tekton-catalog/task-show-sbom:0.1@sha256:beb0616db051952b4b861dd8c3e00fa1c0eccbd926feddf71194d3bb3ace9ce7 - name: kind value: task resolver: bundles @@ -138,7 +138,7 @@ spec: - name: name value: init - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-init:0.2@sha256:1d8221c84f91b923d89de50bf16481ea729e3b68ea04a9a7cbe8485ddbb27ee6 + value: quay.io/konflux-ci/tekton-catalog/task-init:0.2@sha256:08e18a4dc5f947c1d20e8353a19d013144bea87b72f67236b165dd4778523951 - name: kind value: task resolver: bundles @@ -159,7 +159,7 @@ spec: - name: name value: git-clone-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-git-clone-oci-ta:0.1@sha256:d35e5d501cb5f5f88369511f76249857cb5ac30250e1dcf086939321964ff6b9 + value: quay.io/konflux-ci/tekton-catalog/task-git-clone-oci-ta:0.1@sha256:be82c55346e8810bd1edc5547f864064da6945979baccca7dfc99990b392a02b - name: kind value: task resolver: bundles @@ -188,7 +188,7 @@ spec: - name: name value: prefetch-dependencies-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:092491ac0f6e1009d10c58a1319d1029371bf637cc1293cceba53c6da5314ed1 + value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:125aea525bcdb31ff86cb37d56e3d8369587ead48da3bc454d4344682724ca54 - name: kind value: task resolver: bundles @@ -231,7 +231,7 @@ spec: - name: name value: buildah-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:9e9bac2044d6231b44114046b9d528c135388699365f0f210ee810c01bd4d702 + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:9c338b6a1eba1c159dad87f2fb672ae728842c97e381084819ed83e1508ad2ae - name: kind value: task resolver: bundles @@ -260,7 +260,7 @@ spec: - name: name value: build-image-index - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:3499772af90aad0d3935629be6d37dd9292195fb629e6f43ec839c7f545a0faa + value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:72f77a8c62f9d6f69ab5c35170839e4b190026e6cc3d7d4ceafa7033fc30ad7b - name: kind value: task resolver: bundles @@ -286,7 +286,7 @@ spec: - name: name value: source-build-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-source-build-oci-ta:0.3@sha256:b1eb49583b41872b27356fee20d5f0eb6ff7f5cdeacde7ffb39655f031104728 + value: quay.io/konflux-ci/tekton-catalog/task-source-build-oci-ta:0.3@sha256:bfec1fabb0ed7c191e6c85d75e6cc577a04cabe9e6b35f9476529e8e5b3c0c82 - name: kind value: task resolver: bundles @@ -312,7 +312,7 @@ spec: - name: name value: deprecated-image-check - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-deprecated-image-check:0.5@sha256:3c8b81fa868e27c6266e7660a4bfb4c822846dcf4304606e71e20893b0d3e515 + value: quay.io/konflux-ci/tekton-catalog/task-deprecated-image-check:0.5@sha256:f485ef8bfdaf6e6d8d7795eb2e25f9c5ee8619d52220f4d64b5e28078d568c89 - name: kind value: task resolver: bundles @@ -402,7 +402,7 @@ spec: - name: name value: clamav-scan - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-clamav-scan:0.2@sha256:7749146f7e4fe530846f1b15c9366178ec9f44776ef1922a60d3e7e2b8c6426b + value: quay.io/konflux-ci/tekton-catalog/task-clamav-scan:0.3@sha256:cce2dfcc5bd6e91ee54aacdadad523b013eeae5cdaa7f6a4624b8cbcc040f439 - name: kind value: task resolver: bundles @@ -447,7 +447,7 @@ spec: - name: name value: sast-coverity-check-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-sast-coverity-check-oci-ta:0.3@sha256:f9ca942208dc2e63b479384ccc56a611cc793397ecc837637b5b9f89c2ecbefe + value: quay.io/konflux-ci/tekton-catalog/task-sast-coverity-check-oci-ta:0.3@sha256:ff78675c38ad6f98570043666f67ef870364587e9009eaefd5f3a681de80a35e - name: kind value: task resolver: bundles @@ -542,7 +542,7 @@ spec: - name: name value: apply-tags - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-apply-tags:0.2@sha256:517a51e260c0b59654a9d7b842e1ab07d76bce15ca7ce9c8fd2489a19be6463d + value: quay.io/konflux-ci/tekton-catalog/task-apply-tags:0.2@sha256:264fa9591929fb60e3aca033ff168e5d98b1aafb458d6988e327a99ff494b00b - name: kind value: task resolver: bundles @@ -565,7 +565,7 @@ spec: - name: name value: push-dockerfile-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-push-dockerfile-oci-ta:0.1@sha256:8c75c4a747e635e5f3e12266a3bb6e5d3132bf54e37eaa53d505f89897dd8eca + value: quay.io/konflux-ci/tekton-catalog/task-push-dockerfile-oci-ta:0.1@sha256:8640726ef7c5875e3b2e64c9f823921ea970674593f077cadfce3c45c9b9a2b9 - name: kind value: task resolver: bundles From e26f7bbe7caabf5ef7d03ce37cb05fef2b20dea3 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Tue, 29 Jul 2025 06:25:40 +0000 Subject: [PATCH 03/83] Red Hat Konflux update cert-manager-operator-bundle-1-17 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-17-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-17-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml index da4f21b8a..4b269d809 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml @@ -450,7 +450,7 @@ spec: - name: name value: sast-coverity-check-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-sast-coverity-check-oci-ta:0.3@sha256:ff78675c38ad6f98570043666f67ef870364587e9009eaefd5f3a681de80a35e + value: quay.io/konflux-ci/tekton-catalog/task-sast-coverity-check-oci-ta:0.3@sha256:5f81372e21a3c6f4a745b723e444b6eb81a11bdff8740e0ce4b96ad42924e45e - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-17-push.yaml b/.tekton/cert-manager-operator-bundle-1-17-push.yaml index 707e3b40b..ecc7c544b 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-push.yaml @@ -447,7 +447,7 @@ spec: - name: name value: sast-coverity-check-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-sast-coverity-check-oci-ta:0.3@sha256:ff78675c38ad6f98570043666f67ef870364587e9009eaefd5f3a681de80a35e + value: quay.io/konflux-ci/tekton-catalog/task-sast-coverity-check-oci-ta:0.3@sha256:5f81372e21a3c6f4a745b723e444b6eb81a11bdff8740e0ce4b96ad42924e45e - name: kind value: task resolver: bundles From f1cf9f6c18e8bfff5aed4ba759398a259cd88c0c Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Thu, 31 Jul 2025 14:39:03 +0000 Subject: [PATCH 04/83] Red Hat Konflux update cert-manager-operator-bundle-1-17 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-17-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-17-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml index 4b269d809..05f4436f6 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml @@ -234,7 +234,7 @@ spec: - name: name value: buildah-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:9c338b6a1eba1c159dad87f2fb672ae728842c97e381084819ed83e1508ad2ae + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:653b4d9f00250abdc57ca277b8dbb91b50c976d38eda00be7cd97af639678f6e - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-17-push.yaml b/.tekton/cert-manager-operator-bundle-1-17-push.yaml index ecc7c544b..751c2d792 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-push.yaml @@ -231,7 +231,7 @@ spec: - name: name value: buildah-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:9c338b6a1eba1c159dad87f2fb672ae728842c97e381084819ed83e1508ad2ae + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:653b4d9f00250abdc57ca277b8dbb91b50c976d38eda00be7cd97af639678f6e - name: kind value: task resolver: bundles From ab1da8dd19e7dc7aed7de98d6dcb3e0a618e8ffa Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Fri, 1 Aug 2025 17:59:51 +0000 Subject: [PATCH 05/83] Red Hat Konflux update cert-manager-operator-bundle-1-17 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-17-pull-request.yaml | 6 +++--- .tekton/cert-manager-operator-bundle-1-17-push.yaml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml index 05f4436f6..d10a55b0a 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml @@ -191,7 +191,7 @@ spec: - name: name value: prefetch-dependencies-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:125aea525bcdb31ff86cb37d56e3d8369587ead48da3bc454d4344682724ca54 + value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:63448dd12b8ace978df27c155b3662cb1a8b285906843e03da99ce483d50f1eb - name: kind value: task resolver: bundles @@ -234,7 +234,7 @@ spec: - name: name value: buildah-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:653b4d9f00250abdc57ca277b8dbb91b50c976d38eda00be7cd97af639678f6e + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:3e1e08f539ea3e70b473f348a4b4dc50f8bfc49d40d18e89591358c19fae5aa2 - name: kind value: task resolver: bundles @@ -545,7 +545,7 @@ spec: - name: name value: apply-tags - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-apply-tags:0.2@sha256:264fa9591929fb60e3aca033ff168e5d98b1aafb458d6988e327a99ff494b00b + value: quay.io/konflux-ci/tekton-catalog/task-apply-tags:0.2@sha256:70881c97a4c51ee1f4d023fa1110e0bdfcfd2f51d9a261fa543c3862b9a4eee9 - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-17-push.yaml b/.tekton/cert-manager-operator-bundle-1-17-push.yaml index 751c2d792..ec30213d2 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-push.yaml @@ -188,7 +188,7 @@ spec: - name: name value: prefetch-dependencies-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:125aea525bcdb31ff86cb37d56e3d8369587ead48da3bc454d4344682724ca54 + value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:63448dd12b8ace978df27c155b3662cb1a8b285906843e03da99ce483d50f1eb - name: kind value: task resolver: bundles @@ -231,7 +231,7 @@ spec: - name: name value: buildah-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:653b4d9f00250abdc57ca277b8dbb91b50c976d38eda00be7cd97af639678f6e + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:3e1e08f539ea3e70b473f348a4b4dc50f8bfc49d40d18e89591358c19fae5aa2 - name: kind value: task resolver: bundles @@ -542,7 +542,7 @@ spec: - name: name value: apply-tags - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-apply-tags:0.2@sha256:264fa9591929fb60e3aca033ff168e5d98b1aafb458d6988e327a99ff494b00b + value: quay.io/konflux-ci/tekton-catalog/task-apply-tags:0.2@sha256:70881c97a4c51ee1f4d023fa1110e0bdfcfd2f51d9a261fa543c3862b9a4eee9 - name: kind value: task resolver: bundles From f2500032c2c1191b1c40c5a40fd47a8f1602ec47 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Tue, 5 Aug 2025 07:51:19 +0000 Subject: [PATCH 06/83] Red Hat Konflux update cert-manager-operator-bundle-1-17 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-17-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-17-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml index d10a55b0a..ba5f2bd8f 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml @@ -357,7 +357,7 @@ spec: - name: name value: ecosystem-cert-preflight-checks - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.2@sha256:f99d2bdb02f13223d494077a2cde31418d09369f33c02134a8e7e5fad2f61eda + value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.2@sha256:f0c7632803ea659ae224ce16db6e0728ac1d79996c85bb43eea80a9de2a8a8d6 - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-17-push.yaml b/.tekton/cert-manager-operator-bundle-1-17-push.yaml index ec30213d2..f6e77a391 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-push.yaml @@ -354,7 +354,7 @@ spec: - name: name value: ecosystem-cert-preflight-checks - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.2@sha256:f99d2bdb02f13223d494077a2cde31418d09369f33c02134a8e7e5fad2f61eda + value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.2@sha256:f0c7632803ea659ae224ce16db6e0728ac1d79996c85bb43eea80a9de2a8a8d6 - name: kind value: task resolver: bundles From 1150c1f761c16b6ff451c8a8ca17ed412faab8e4 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Wed, 6 Aug 2025 00:32:42 +0000 Subject: [PATCH 07/83] Red Hat Konflux update cert-manager-operator-bundle-1-17 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-17-pull-request.yaml | 4 ++-- .tekton/cert-manager-operator-bundle-1-17-push.yaml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml index ba5f2bd8f..53b20f53c 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml @@ -315,7 +315,7 @@ spec: - name: name value: deprecated-image-check - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-deprecated-image-check:0.5@sha256:f485ef8bfdaf6e6d8d7795eb2e25f9c5ee8619d52220f4d64b5e28078d568c89 + value: quay.io/konflux-ci/tekton-catalog/task-deprecated-image-check:0.5@sha256:1d07d16810c26713f3d875083924d93697900147364360587ccb5a63f2c31012 - name: kind value: task resolver: bundles @@ -337,7 +337,7 @@ spec: - name: name value: clair-scan - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-clair-scan:0.2@sha256:417f44117f8d87a4a62fea6589b5746612ac61640b454dbd88f74892380411f2 + value: quay.io/konflux-ci/tekton-catalog/task-clair-scan:0.2@sha256:893ffa3ce26b061e21bb4d8db9ef7ed4ddd4044fe7aa5451ef391034da3ff759 - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-17-push.yaml b/.tekton/cert-manager-operator-bundle-1-17-push.yaml index f6e77a391..20e715a27 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-push.yaml @@ -312,7 +312,7 @@ spec: - name: name value: deprecated-image-check - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-deprecated-image-check:0.5@sha256:f485ef8bfdaf6e6d8d7795eb2e25f9c5ee8619d52220f4d64b5e28078d568c89 + value: quay.io/konflux-ci/tekton-catalog/task-deprecated-image-check:0.5@sha256:1d07d16810c26713f3d875083924d93697900147364360587ccb5a63f2c31012 - name: kind value: task resolver: bundles @@ -334,7 +334,7 @@ spec: - name: name value: clair-scan - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-clair-scan:0.2@sha256:417f44117f8d87a4a62fea6589b5746612ac61640b454dbd88f74892380411f2 + value: quay.io/konflux-ci/tekton-catalog/task-clair-scan:0.2@sha256:893ffa3ce26b061e21bb4d8db9ef7ed4ddd4044fe7aa5451ef391034da3ff759 - name: kind value: task resolver: bundles From 7fea94f73b1c349fa985692980123a57efa7ff2f Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Wed, 6 Aug 2025 14:03:28 +0000 Subject: [PATCH 08/83] Red Hat Konflux update cert-manager-operator-bundle-1-17 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-17-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-17-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml index 53b20f53c..f802ccfef 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml @@ -523,7 +523,7 @@ spec: - name: name value: sast-unicode-check-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-sast-unicode-check-oci-ta:0.2@sha256:3f99dc4634a62e1530324cd565d12323ca82be3cfa8a031a36b210becfa7b552 + value: quay.io/konflux-ci/tekton-catalog/task-sast-unicode-check-oci-ta:0.3@sha256:a2bde66f6b4164620298c7d709b8f08515409404000fa1dc2260d2508b135651 - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-17-push.yaml b/.tekton/cert-manager-operator-bundle-1-17-push.yaml index 20e715a27..3af57522d 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-push.yaml @@ -520,7 +520,7 @@ spec: - name: name value: sast-unicode-check-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-sast-unicode-check-oci-ta:0.2@sha256:3f99dc4634a62e1530324cd565d12323ca82be3cfa8a031a36b210becfa7b552 + value: quay.io/konflux-ci/tekton-catalog/task-sast-unicode-check-oci-ta:0.3@sha256:a2bde66f6b4164620298c7d709b8f08515409404000fa1dc2260d2508b135651 - name: kind value: task resolver: bundles From a18af34f9ef95adc8cc633df66ed3dedd09c1e3d Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Wed, 6 Aug 2025 15:10:34 +0000 Subject: [PATCH 09/83] Red Hat Konflux update cert-manager-operator-bundle-1-17 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-17-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-17-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml index f802ccfef..fa04e29df 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml @@ -357,7 +357,7 @@ spec: - name: name value: ecosystem-cert-preflight-checks - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.2@sha256:f0c7632803ea659ae224ce16db6e0728ac1d79996c85bb43eea80a9de2a8a8d6 + value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.2@sha256:51d698844b207f7bedff69cc8718858cbc7407b0cadbea3033e5965e71ae5e96 - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-17-push.yaml b/.tekton/cert-manager-operator-bundle-1-17-push.yaml index 3af57522d..f2e2eeaae 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-push.yaml @@ -354,7 +354,7 @@ spec: - name: name value: ecosystem-cert-preflight-checks - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.2@sha256:f0c7632803ea659ae224ce16db6e0728ac1d79996c85bb43eea80a9de2a8a8d6 + value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.2@sha256:51d698844b207f7bedff69cc8718858cbc7407b0cadbea3033e5965e71ae5e96 - name: kind value: task resolver: bundles From 47aee9e07576ed728e033563dcdb1a55dc32fa3d Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Thu, 7 Aug 2025 00:27:14 +0000 Subject: [PATCH 10/83] Red Hat Konflux update cert-manager-operator-bundle-1-17 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-17-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-17-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml index fa04e29df..a4311c654 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml @@ -191,7 +191,7 @@ spec: - name: name value: prefetch-dependencies-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:63448dd12b8ace978df27c155b3662cb1a8b285906843e03da99ce483d50f1eb + value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:e38599be9aafc4622545e66673c5bc2292b323834c5d852f4a39cb7d01784574 - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-17-push.yaml b/.tekton/cert-manager-operator-bundle-1-17-push.yaml index f2e2eeaae..679e57ed1 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-push.yaml @@ -188,7 +188,7 @@ spec: - name: name value: prefetch-dependencies-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:63448dd12b8ace978df27c155b3662cb1a8b285906843e03da99ce483d50f1eb + value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:e38599be9aafc4622545e66673c5bc2292b323834c5d852f4a39cb7d01784574 - name: kind value: task resolver: bundles From 724bef9ac68e6260a9c239affa32827427ac88c6 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Thu, 7 Aug 2025 14:12:03 +0000 Subject: [PATCH 11/83] Red Hat Konflux update cert-manager-operator-bundle-1-17 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-17-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-17-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml index a4311c654..9b53c06f7 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml @@ -234,7 +234,7 @@ spec: - name: name value: buildah-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:3e1e08f539ea3e70b473f348a4b4dc50f8bfc49d40d18e89591358c19fae5aa2 + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:d78d8abba7a84faa391d8b3b23be49ad8c09e9b1c0cabaed3919f64100cead2d - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-17-push.yaml b/.tekton/cert-manager-operator-bundle-1-17-push.yaml index 679e57ed1..e3dfad508 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-push.yaml @@ -231,7 +231,7 @@ spec: - name: name value: buildah-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:3e1e08f539ea3e70b473f348a4b4dc50f8bfc49d40d18e89591358c19fae5aa2 + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:d78d8abba7a84faa391d8b3b23be49ad8c09e9b1c0cabaed3919f64100cead2d - name: kind value: task resolver: bundles From 82798b3ceea1ba1c7974250d91963406922307f0 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Fri, 8 Aug 2025 20:38:22 +0000 Subject: [PATCH 12/83] Red Hat Konflux update cert-manager-operator-bundle-1-17 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-17-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-17-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml index 9b53c06f7..8bf9b2003 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml @@ -357,7 +357,7 @@ spec: - name: name value: ecosystem-cert-preflight-checks - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.2@sha256:51d698844b207f7bedff69cc8718858cbc7407b0cadbea3033e5965e71ae5e96 + value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.2@sha256:4bafcaab0f0c998a89a1cc33bdbbf74f39eea52e6c0e43013c356a322f94940f - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-17-push.yaml b/.tekton/cert-manager-operator-bundle-1-17-push.yaml index e3dfad508..b5f7d295d 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-push.yaml @@ -354,7 +354,7 @@ spec: - name: name value: ecosystem-cert-preflight-checks - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.2@sha256:51d698844b207f7bedff69cc8718858cbc7407b0cadbea3033e5965e71ae5e96 + value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.2@sha256:4bafcaab0f0c998a89a1cc33bdbbf74f39eea52e6c0e43013c356a322f94940f - name: kind value: task resolver: bundles From 7a2e6d31aea6f2b1baa49c115e4ca80995b386db Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Tue, 12 Aug 2025 08:27:55 +0000 Subject: [PATCH 13/83] Red Hat Konflux update cert-manager-operator-bundle-1-17 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-17-pull-request.yaml | 6 +++--- .tekton/cert-manager-operator-bundle-1-17-push.yaml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml index 8bf9b2003..4fec522da 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml @@ -234,7 +234,7 @@ spec: - name: name value: buildah-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:d78d8abba7a84faa391d8b3b23be49ad8c09e9b1c0cabaed3919f64100cead2d + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:b84db9bd3a18ab9f6de56f0dfe2ef9205bf432f5d791438812a1b9ddbe162c51 - name: kind value: task resolver: bundles @@ -450,7 +450,7 @@ spec: - name: name value: sast-coverity-check-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-sast-coverity-check-oci-ta:0.3@sha256:5f81372e21a3c6f4a745b723e444b6eb81a11bdff8740e0ce4b96ad42924e45e + value: quay.io/konflux-ci/tekton-catalog/task-sast-coverity-check-oci-ta:0.3@sha256:4885741078917733a5cff8dfb3177b9fc8d42a4e04b7e8f07639e0c3b2a5b560 - name: kind value: task resolver: bundles @@ -568,7 +568,7 @@ spec: - name: name value: push-dockerfile-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-push-dockerfile-oci-ta:0.1@sha256:8640726ef7c5875e3b2e64c9f823921ea970674593f077cadfce3c45c9b9a2b9 + value: quay.io/konflux-ci/tekton-catalog/task-push-dockerfile-oci-ta:0.1@sha256:972990bea93c13f8afd279c0e0d4bd8c2665b48bbb3369b2c43acf194b851f5c - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-17-push.yaml b/.tekton/cert-manager-operator-bundle-1-17-push.yaml index b5f7d295d..3227ac2d6 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-push.yaml @@ -231,7 +231,7 @@ spec: - name: name value: buildah-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:d78d8abba7a84faa391d8b3b23be49ad8c09e9b1c0cabaed3919f64100cead2d + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:b84db9bd3a18ab9f6de56f0dfe2ef9205bf432f5d791438812a1b9ddbe162c51 - name: kind value: task resolver: bundles @@ -447,7 +447,7 @@ spec: - name: name value: sast-coverity-check-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-sast-coverity-check-oci-ta:0.3@sha256:5f81372e21a3c6f4a745b723e444b6eb81a11bdff8740e0ce4b96ad42924e45e + value: quay.io/konflux-ci/tekton-catalog/task-sast-coverity-check-oci-ta:0.3@sha256:4885741078917733a5cff8dfb3177b9fc8d42a4e04b7e8f07639e0c3b2a5b560 - name: kind value: task resolver: bundles @@ -565,7 +565,7 @@ spec: - name: name value: push-dockerfile-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-push-dockerfile-oci-ta:0.1@sha256:8640726ef7c5875e3b2e64c9f823921ea970674593f077cadfce3c45c9b9a2b9 + value: quay.io/konflux-ci/tekton-catalog/task-push-dockerfile-oci-ta:0.1@sha256:972990bea93c13f8afd279c0e0d4bd8c2665b48bbb3369b2c43acf194b851f5c - name: kind value: task resolver: bundles From 4d12152239a02a04b635bd3af6430a8e0495b38b Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Tue, 12 Aug 2025 12:26:31 +0000 Subject: [PATCH 14/83] Red Hat Konflux update cert-manager-operator-bundle-1-17 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-17-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-17-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml index 4fec522da..6450d4d67 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml @@ -191,7 +191,7 @@ spec: - name: name value: prefetch-dependencies-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:e38599be9aafc4622545e66673c5bc2292b323834c5d852f4a39cb7d01784574 + value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:c5ebd3040df2511b8af762c8be946fd4ac9de60c16b81a9461534aea5979d86f - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-17-push.yaml b/.tekton/cert-manager-operator-bundle-1-17-push.yaml index 3227ac2d6..40db09634 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-push.yaml @@ -188,7 +188,7 @@ spec: - name: name value: prefetch-dependencies-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:e38599be9aafc4622545e66673c5bc2292b323834c5d852f4a39cb7d01784574 + value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:c5ebd3040df2511b8af762c8be946fd4ac9de60c16b81a9461534aea5979d86f - name: kind value: task resolver: bundles From ef740610c47203653774cca7fe27639a6cf629b6 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Tue, 12 Aug 2025 16:38:48 +0000 Subject: [PATCH 15/83] Red Hat Konflux update cert-manager-operator-bundle-1-17 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-17-pull-request.yaml | 4 ++-- .tekton/cert-manager-operator-bundle-1-17-push.yaml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml index 6450d4d67..a22ba2c0d 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml @@ -234,7 +234,7 @@ spec: - name: name value: buildah-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:b84db9bd3a18ab9f6de56f0dfe2ef9205bf432f5d791438812a1b9ddbe162c51 + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:f91db5817f403628dbd268fea69503ba910443ef8d71c86f093776f45f57adb9 - name: kind value: task resolver: bundles @@ -450,7 +450,7 @@ spec: - name: name value: sast-coverity-check-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-sast-coverity-check-oci-ta:0.3@sha256:4885741078917733a5cff8dfb3177b9fc8d42a4e04b7e8f07639e0c3b2a5b560 + value: quay.io/konflux-ci/tekton-catalog/task-sast-coverity-check-oci-ta:0.3@sha256:0819ec70412034b7bb7ad2bf0d42b5c0f6904fee66599e03489c33350340c0cb - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-17-push.yaml b/.tekton/cert-manager-operator-bundle-1-17-push.yaml index 40db09634..b3c485f5c 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-push.yaml @@ -231,7 +231,7 @@ spec: - name: name value: buildah-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:b84db9bd3a18ab9f6de56f0dfe2ef9205bf432f5d791438812a1b9ddbe162c51 + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:f91db5817f403628dbd268fea69503ba910443ef8d71c86f093776f45f57adb9 - name: kind value: task resolver: bundles @@ -447,7 +447,7 @@ spec: - name: name value: sast-coverity-check-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-sast-coverity-check-oci-ta:0.3@sha256:4885741078917733a5cff8dfb3177b9fc8d42a4e04b7e8f07639e0c3b2a5b560 + value: quay.io/konflux-ci/tekton-catalog/task-sast-coverity-check-oci-ta:0.3@sha256:0819ec70412034b7bb7ad2bf0d42b5c0f6904fee66599e03489c33350340c0cb - name: kind value: task resolver: bundles From 19de7b397bbc52782f9ffe4ffe4f45b0c0c9434d Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Wed, 13 Aug 2025 04:41:26 +0000 Subject: [PATCH 16/83] Red Hat Konflux update cert-manager-operator-bundle-1-17 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-17-pull-request.yaml | 4 ++-- .tekton/cert-manager-operator-bundle-1-17-push.yaml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml index a22ba2c0d..384756ceb 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml @@ -357,7 +357,7 @@ spec: - name: name value: ecosystem-cert-preflight-checks - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.2@sha256:4bafcaab0f0c998a89a1cc33bdbbf74f39eea52e6c0e43013c356a322f94940f + value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.2@sha256:17c8c04607c5d6ac6db521ab27aeb8216118f4265185896f5d00cb825f8d9efd - name: kind value: task resolver: bundles @@ -585,7 +585,7 @@ spec: - name: name value: rpms-signature-scan - name: bundle - value: quay.io/konflux-ci/konflux-vanguard/task-rpms-signature-scan:0.2@sha256:7d1c087d7d33dd97effb3b4c9f3788e4c3138da2032040d69da6929e9a3aaceb + value: quay.io/konflux-ci/konflux-vanguard/task-rpms-signature-scan:0.2@sha256:00a29b6f86c2b8237077a5f5ca29a71aae59eab311dde57de27e5dcf4cae5d77 - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-17-push.yaml b/.tekton/cert-manager-operator-bundle-1-17-push.yaml index b3c485f5c..8afc2b07c 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-push.yaml @@ -354,7 +354,7 @@ spec: - name: name value: ecosystem-cert-preflight-checks - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.2@sha256:4bafcaab0f0c998a89a1cc33bdbbf74f39eea52e6c0e43013c356a322f94940f + value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.2@sha256:17c8c04607c5d6ac6db521ab27aeb8216118f4265185896f5d00cb825f8d9efd - name: kind value: task resolver: bundles @@ -582,7 +582,7 @@ spec: - name: name value: rpms-signature-scan - name: bundle - value: quay.io/konflux-ci/konflux-vanguard/task-rpms-signature-scan:0.2@sha256:7d1c087d7d33dd97effb3b4c9f3788e4c3138da2032040d69da6929e9a3aaceb + value: quay.io/konflux-ci/konflux-vanguard/task-rpms-signature-scan:0.2@sha256:00a29b6f86c2b8237077a5f5ca29a71aae59eab311dde57de27e5dcf4cae5d77 - name: kind value: task resolver: bundles From a3718bfe7520af26ace8d074dc605b960f97636c Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Thu, 14 Aug 2025 15:41:16 +0000 Subject: [PATCH 17/83] Red Hat Konflux update cert-manager-operator-bundle-1-17 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-17-pull-request.yaml | 4 ++-- .tekton/cert-manager-operator-bundle-1-17-push.yaml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml index 384756ceb..93ae0d789 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml @@ -191,7 +191,7 @@ spec: - name: name value: prefetch-dependencies-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:c5ebd3040df2511b8af762c8be946fd4ac9de60c16b81a9461534aea5979d86f + value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:ca036c7232f63199824bc1a65126faad834bc3af030e5b8210cb057f4ae97d99 - name: kind value: task resolver: bundles @@ -357,7 +357,7 @@ spec: - name: name value: ecosystem-cert-preflight-checks - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.2@sha256:17c8c04607c5d6ac6db521ab27aeb8216118f4265185896f5d00cb825f8d9efd + value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.2@sha256:33e601b3bf3744953af3297f898f6ac5cab662b2bcba10bff639d09a59b3817d - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-17-push.yaml b/.tekton/cert-manager-operator-bundle-1-17-push.yaml index 8afc2b07c..44efa3cf7 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-push.yaml @@ -188,7 +188,7 @@ spec: - name: name value: prefetch-dependencies-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:c5ebd3040df2511b8af762c8be946fd4ac9de60c16b81a9461534aea5979d86f + value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:ca036c7232f63199824bc1a65126faad834bc3af030e5b8210cb057f4ae97d99 - name: kind value: task resolver: bundles @@ -354,7 +354,7 @@ spec: - name: name value: ecosystem-cert-preflight-checks - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.2@sha256:17c8c04607c5d6ac6db521ab27aeb8216118f4265185896f5d00cb825f8d9efd + value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.2@sha256:33e601b3bf3744953af3297f898f6ac5cab662b2bcba10bff639d09a59b3817d - name: kind value: task resolver: bundles From 082dfb6e164022f8eec5dedff4f5bc2c60173813 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Sat, 16 Aug 2025 01:12:44 +0000 Subject: [PATCH 18/83] Red Hat Konflux update cert-manager-operator-bundle-1-17 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-17-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-17-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml index 93ae0d789..032f055af 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml @@ -357,7 +357,7 @@ spec: - name: name value: ecosystem-cert-preflight-checks - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.2@sha256:33e601b3bf3744953af3297f898f6ac5cab662b2bcba10bff639d09a59b3817d + value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.2@sha256:1f151e00f7fc427654b7b76045a426bb02fe650d192ffe147a304d2184787e38 - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-17-push.yaml b/.tekton/cert-manager-operator-bundle-1-17-push.yaml index 44efa3cf7..57210a3a5 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-push.yaml @@ -354,7 +354,7 @@ spec: - name: name value: ecosystem-cert-preflight-checks - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.2@sha256:33e601b3bf3744953af3297f898f6ac5cab662b2bcba10bff639d09a59b3817d + value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.2@sha256:1f151e00f7fc427654b7b76045a426bb02fe650d192ffe147a304d2184787e38 - name: kind value: task resolver: bundles From 95567c35259f8134c6ee356dfd8066be4ec4da25 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Mon, 18 Aug 2025 13:23:10 +0000 Subject: [PATCH 19/83] Red Hat Konflux update cert-manager-operator-bundle-1-17 Signed-off-by: red-hat-konflux --- ...anager-operator-bundle-1-17-pull-request.yaml | 16 ++++++++-------- .../cert-manager-operator-bundle-1-17-push.yaml | 16 ++++++++-------- 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml index 032f055af..909e17c7b 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml @@ -141,7 +141,7 @@ spec: - name: name value: init - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-init:0.2@sha256:08e18a4dc5f947c1d20e8353a19d013144bea87b72f67236b165dd4778523951 + value: quay.io/konflux-ci/tekton-catalog/task-init:0.2@sha256:ded314206f09712b2116deb050b774ae7efef9ab243794334c8e616871a3ffa5 - name: kind value: task resolver: bundles @@ -162,7 +162,7 @@ spec: - name: name value: git-clone-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-git-clone-oci-ta:0.1@sha256:be82c55346e8810bd1edc5547f864064da6945979baccca7dfc99990b392a02b + value: quay.io/konflux-ci/tekton-catalog/task-git-clone-oci-ta:0.1@sha256:9d94d0e0bd7bbd6f0adf4561122c9dc3854b37907d3fc952ab2f2d4a4173bef7 - name: kind value: task resolver: bundles @@ -234,7 +234,7 @@ spec: - name: name value: buildah-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:f91db5817f403628dbd268fea69503ba910443ef8d71c86f093776f45f57adb9 + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:62390c7aaf6a3565fac8d9f7fdb9557ab02f8881000083019d4513108f847d6b - name: kind value: task resolver: bundles @@ -263,7 +263,7 @@ spec: - name: name value: build-image-index - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:72f77a8c62f9d6f69ab5c35170839e4b190026e6cc3d7d4ceafa7033fc30ad7b + value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:a82586dda4866aacb468f1bb7d02dcdfb132f330c2396ab54c5fa7727680935d - name: kind value: task resolver: bundles @@ -289,7 +289,7 @@ spec: - name: name value: source-build-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-source-build-oci-ta:0.3@sha256:bfec1fabb0ed7c191e6c85d75e6cc577a04cabe9e6b35f9476529e8e5b3c0c82 + value: quay.io/konflux-ci/tekton-catalog/task-source-build-oci-ta:0.3@sha256:cec0aa832a7707c803d66c4630471bfe78e054b6c4ff6ee2980a6ddd954e3c1e - name: kind value: task resolver: bundles @@ -450,7 +450,7 @@ spec: - name: name value: sast-coverity-check-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-sast-coverity-check-oci-ta:0.3@sha256:0819ec70412034b7bb7ad2bf0d42b5c0f6904fee66599e03489c33350340c0cb + value: quay.io/konflux-ci/tekton-catalog/task-sast-coverity-check-oci-ta:0.3@sha256:9c776c82aeaf36539a0aa68764ed285f78530d78207ddb011aaa0a01f9ccb16d - name: kind value: task resolver: bundles @@ -545,7 +545,7 @@ spec: - name: name value: apply-tags - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-apply-tags:0.2@sha256:70881c97a4c51ee1f4d023fa1110e0bdfcfd2f51d9a261fa543c3862b9a4eee9 + value: quay.io/konflux-ci/tekton-catalog/task-apply-tags:0.2@sha256:e0de426d492e195f59c99d2ea1ca0df7bfb8c689f5d1468fe7f70eb8684b8d02 - name: kind value: task resolver: bundles @@ -568,7 +568,7 @@ spec: - name: name value: push-dockerfile-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-push-dockerfile-oci-ta:0.1@sha256:972990bea93c13f8afd279c0e0d4bd8c2665b48bbb3369b2c43acf194b851f5c + value: quay.io/konflux-ci/tekton-catalog/task-push-dockerfile-oci-ta:0.1@sha256:f8d7376d79e9edbd1b2326bca0818a1c6cf175f2f17dbd3e142fc1d324d1508b - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-17-push.yaml b/.tekton/cert-manager-operator-bundle-1-17-push.yaml index 57210a3a5..054c9da4e 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-push.yaml @@ -138,7 +138,7 @@ spec: - name: name value: init - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-init:0.2@sha256:08e18a4dc5f947c1d20e8353a19d013144bea87b72f67236b165dd4778523951 + value: quay.io/konflux-ci/tekton-catalog/task-init:0.2@sha256:ded314206f09712b2116deb050b774ae7efef9ab243794334c8e616871a3ffa5 - name: kind value: task resolver: bundles @@ -159,7 +159,7 @@ spec: - name: name value: git-clone-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-git-clone-oci-ta:0.1@sha256:be82c55346e8810bd1edc5547f864064da6945979baccca7dfc99990b392a02b + value: quay.io/konflux-ci/tekton-catalog/task-git-clone-oci-ta:0.1@sha256:9d94d0e0bd7bbd6f0adf4561122c9dc3854b37907d3fc952ab2f2d4a4173bef7 - name: kind value: task resolver: bundles @@ -231,7 +231,7 @@ spec: - name: name value: buildah-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:f91db5817f403628dbd268fea69503ba910443ef8d71c86f093776f45f57adb9 + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:62390c7aaf6a3565fac8d9f7fdb9557ab02f8881000083019d4513108f847d6b - name: kind value: task resolver: bundles @@ -260,7 +260,7 @@ spec: - name: name value: build-image-index - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:72f77a8c62f9d6f69ab5c35170839e4b190026e6cc3d7d4ceafa7033fc30ad7b + value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:a82586dda4866aacb468f1bb7d02dcdfb132f330c2396ab54c5fa7727680935d - name: kind value: task resolver: bundles @@ -286,7 +286,7 @@ spec: - name: name value: source-build-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-source-build-oci-ta:0.3@sha256:bfec1fabb0ed7c191e6c85d75e6cc577a04cabe9e6b35f9476529e8e5b3c0c82 + value: quay.io/konflux-ci/tekton-catalog/task-source-build-oci-ta:0.3@sha256:cec0aa832a7707c803d66c4630471bfe78e054b6c4ff6ee2980a6ddd954e3c1e - name: kind value: task resolver: bundles @@ -447,7 +447,7 @@ spec: - name: name value: sast-coverity-check-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-sast-coverity-check-oci-ta:0.3@sha256:0819ec70412034b7bb7ad2bf0d42b5c0f6904fee66599e03489c33350340c0cb + value: quay.io/konflux-ci/tekton-catalog/task-sast-coverity-check-oci-ta:0.3@sha256:9c776c82aeaf36539a0aa68764ed285f78530d78207ddb011aaa0a01f9ccb16d - name: kind value: task resolver: bundles @@ -542,7 +542,7 @@ spec: - name: name value: apply-tags - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-apply-tags:0.2@sha256:70881c97a4c51ee1f4d023fa1110e0bdfcfd2f51d9a261fa543c3862b9a4eee9 + value: quay.io/konflux-ci/tekton-catalog/task-apply-tags:0.2@sha256:e0de426d492e195f59c99d2ea1ca0df7bfb8c689f5d1468fe7f70eb8684b8d02 - name: kind value: task resolver: bundles @@ -565,7 +565,7 @@ spec: - name: name value: push-dockerfile-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-push-dockerfile-oci-ta:0.1@sha256:972990bea93c13f8afd279c0e0d4bd8c2665b48bbb3369b2c43acf194b851f5c + value: quay.io/konflux-ci/tekton-catalog/task-push-dockerfile-oci-ta:0.1@sha256:f8d7376d79e9edbd1b2326bca0818a1c6cf175f2f17dbd3e142fc1d324d1508b - name: kind value: task resolver: bundles From 662b4f7a4e1547782c7a1965599d058ac634a561 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Tue, 19 Aug 2025 11:54:39 +0000 Subject: [PATCH 20/83] Red Hat Konflux update cert-manager-operator-bundle-1-17 Signed-off-by: red-hat-konflux --- ...cert-manager-operator-bundle-1-17-pull-request.yaml | 10 +++++----- .tekton/cert-manager-operator-bundle-1-17-push.yaml | 10 +++++----- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml index 909e17c7b..d23b362d3 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml @@ -162,7 +162,7 @@ spec: - name: name value: git-clone-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-git-clone-oci-ta:0.1@sha256:9d94d0e0bd7bbd6f0adf4561122c9dc3854b37907d3fc952ab2f2d4a4173bef7 + value: quay.io/konflux-ci/tekton-catalog/task-git-clone-oci-ta:0.1@sha256:4a601aeec58a1dd89c271e728fd8f0d84777825b46940c3aec27f15bab3edacf - name: kind value: task resolver: bundles @@ -234,7 +234,7 @@ spec: - name: name value: buildah-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:62390c7aaf6a3565fac8d9f7fdb9557ab02f8881000083019d4513108f847d6b + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:6971ff364b06fc3fb30c04951bf956be03b8178ae842a21b355cc9c632264a4d - name: kind value: task resolver: bundles @@ -263,7 +263,7 @@ spec: - name: name value: build-image-index - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:a82586dda4866aacb468f1bb7d02dcdfb132f330c2396ab54c5fa7727680935d + value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:3bf6e4e83f911066430041534a69eec51dbd0f52f34a9bf41c6f3a24ec2ffb22 - name: kind value: task resolver: bundles @@ -289,7 +289,7 @@ spec: - name: name value: source-build-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-source-build-oci-ta:0.3@sha256:cec0aa832a7707c803d66c4630471bfe78e054b6c4ff6ee2980a6ddd954e3c1e + value: quay.io/konflux-ci/tekton-catalog/task-source-build-oci-ta:0.3@sha256:f1c0743939fe246b19e9e268a3b96b22b724096dcf946548c3d60e184136e32f - name: kind value: task resolver: bundles @@ -568,7 +568,7 @@ spec: - name: name value: push-dockerfile-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-push-dockerfile-oci-ta:0.1@sha256:f8d7376d79e9edbd1b2326bca0818a1c6cf175f2f17dbd3e142fc1d324d1508b + value: quay.io/konflux-ci/tekton-catalog/task-push-dockerfile-oci-ta:0.1@sha256:235ef6e835de8171c07b8a7f8947d0b40bfcff999e1ff3cb6ddd9acc65c48430 - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-17-push.yaml b/.tekton/cert-manager-operator-bundle-1-17-push.yaml index 054c9da4e..78ba7750e 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-push.yaml @@ -159,7 +159,7 @@ spec: - name: name value: git-clone-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-git-clone-oci-ta:0.1@sha256:9d94d0e0bd7bbd6f0adf4561122c9dc3854b37907d3fc952ab2f2d4a4173bef7 + value: quay.io/konflux-ci/tekton-catalog/task-git-clone-oci-ta:0.1@sha256:4a601aeec58a1dd89c271e728fd8f0d84777825b46940c3aec27f15bab3edacf - name: kind value: task resolver: bundles @@ -231,7 +231,7 @@ spec: - name: name value: buildah-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:62390c7aaf6a3565fac8d9f7fdb9557ab02f8881000083019d4513108f847d6b + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:6971ff364b06fc3fb30c04951bf956be03b8178ae842a21b355cc9c632264a4d - name: kind value: task resolver: bundles @@ -260,7 +260,7 @@ spec: - name: name value: build-image-index - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:a82586dda4866aacb468f1bb7d02dcdfb132f330c2396ab54c5fa7727680935d + value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:3bf6e4e83f911066430041534a69eec51dbd0f52f34a9bf41c6f3a24ec2ffb22 - name: kind value: task resolver: bundles @@ -286,7 +286,7 @@ spec: - name: name value: source-build-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-source-build-oci-ta:0.3@sha256:cec0aa832a7707c803d66c4630471bfe78e054b6c4ff6ee2980a6ddd954e3c1e + value: quay.io/konflux-ci/tekton-catalog/task-source-build-oci-ta:0.3@sha256:f1c0743939fe246b19e9e268a3b96b22b724096dcf946548c3d60e184136e32f - name: kind value: task resolver: bundles @@ -565,7 +565,7 @@ spec: - name: name value: push-dockerfile-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-push-dockerfile-oci-ta:0.1@sha256:f8d7376d79e9edbd1b2326bca0818a1c6cf175f2f17dbd3e142fc1d324d1508b + value: quay.io/konflux-ci/tekton-catalog/task-push-dockerfile-oci-ta:0.1@sha256:235ef6e835de8171c07b8a7f8947d0b40bfcff999e1ff3cb6ddd9acc65c48430 - name: kind value: task resolver: bundles From 17afca0746354941f0a51ba4984d811eaf9c978d Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Tue, 19 Aug 2025 15:31:01 +0000 Subject: [PATCH 21/83] Red Hat Konflux update cert-manager-operator-bundle-1-17 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-17-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-17-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml index d23b362d3..10e092553 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml @@ -405,7 +405,7 @@ spec: - name: name value: clamav-scan - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-clamav-scan:0.3@sha256:cce2dfcc5bd6e91ee54aacdadad523b013eeae5cdaa7f6a4624b8cbcc040f439 + value: quay.io/konflux-ci/tekton-catalog/task-clamav-scan:0.3@sha256:b0bd59748cda4a7abf311e4f448e6c1d00c6b6d8c0ecc1c2eb33e08dc0e0b802 - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-17-push.yaml b/.tekton/cert-manager-operator-bundle-1-17-push.yaml index 78ba7750e..ec52fe7c4 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-push.yaml @@ -402,7 +402,7 @@ spec: - name: name value: clamav-scan - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-clamav-scan:0.3@sha256:cce2dfcc5bd6e91ee54aacdadad523b013eeae5cdaa7f6a4624b8cbcc040f439 + value: quay.io/konflux-ci/tekton-catalog/task-clamav-scan:0.3@sha256:b0bd59748cda4a7abf311e4f448e6c1d00c6b6d8c0ecc1c2eb33e08dc0e0b802 - name: kind value: task resolver: bundles From 178f3d04cad77ba5fb2ebc899c94b2e41a8ebbf0 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Wed, 20 Aug 2025 16:53:17 +0000 Subject: [PATCH 22/83] Red Hat Konflux update cert-manager-operator-bundle-1-17 Signed-off-by: red-hat-konflux --- ...ager-operator-bundle-1-17-pull-request.yaml | 18 ++---------------- ...cert-manager-operator-bundle-1-17-push.yaml | 18 ++---------------- 2 files changed, 4 insertions(+), 32 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml index 10e092553..69f74e2bb 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml @@ -37,20 +37,6 @@ spec: _Uses `buildah` to create a container image leveraging [trusted artifacts](https://konflux-ci.dev/architecture/ADR/0036-trusted-artifacts.html). It also optionally creates a source image and runs some build-time tests. Information is shared between tasks using OCI artifacts instead of PVCs. EC will pass the [`trusted_task.trusted`](https://conforma.dev/docs/policy/packages/release_trusted_task.html#trusted_task__trusted) policy as long as all data used to build the artifact is generated from trusted tasks. This pipeline is pushed as a Tekton bundle to [quay.io](https://quay.io/repository/konflux-ci/tekton-catalog/pipeline-docker-build-oci-ta?tab=tags)_ - finally: - - name: show-sbom - params: - - name: IMAGE_URL - value: $(tasks.build-image-index.results.IMAGE_URL) - taskRef: - params: - - name: name - value: show-sbom - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-show-sbom:0.1@sha256:beb0616db051952b4b861dd8c3e00fa1c0eccbd926feddf71194d3bb3ace9ce7 - - name: kind - value: task - resolver: bundles params: - description: Source Repository URL name: git-url @@ -191,7 +177,7 @@ spec: - name: name value: prefetch-dependencies-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:ca036c7232f63199824bc1a65126faad834bc3af030e5b8210cb057f4ae97d99 + value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:e0c526c2916212aa676d840831d70a9d57134eedbd0823063b1e1efb63f78842 - name: kind value: task resolver: bundles @@ -234,7 +220,7 @@ spec: - name: name value: buildah-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:6971ff364b06fc3fb30c04951bf956be03b8178ae842a21b355cc9c632264a4d + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:5194b17407c4951fb9169c00e4c8c54d01dba4bac01c48441220a4fbc6eb898e - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-17-push.yaml b/.tekton/cert-manager-operator-bundle-1-17-push.yaml index ec52fe7c4..706f2b330 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-push.yaml @@ -34,20 +34,6 @@ spec: _Uses `buildah` to create a container image leveraging [trusted artifacts](https://konflux-ci.dev/architecture/ADR/0036-trusted-artifacts.html). It also optionally creates a source image and runs some build-time tests. Information is shared between tasks using OCI artifacts instead of PVCs. EC will pass the [`trusted_task.trusted`](https://conforma.dev/docs/policy/packages/release_trusted_task.html#trusted_task__trusted) policy as long as all data used to build the artifact is generated from trusted tasks. This pipeline is pushed as a Tekton bundle to [quay.io](https://quay.io/repository/konflux-ci/tekton-catalog/pipeline-docker-build-oci-ta?tab=tags)_ - finally: - - name: show-sbom - params: - - name: IMAGE_URL - value: $(tasks.build-image-index.results.IMAGE_URL) - taskRef: - params: - - name: name - value: show-sbom - - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-show-sbom:0.1@sha256:beb0616db051952b4b861dd8c3e00fa1c0eccbd926feddf71194d3bb3ace9ce7 - - name: kind - value: task - resolver: bundles params: - description: Source Repository URL name: git-url @@ -188,7 +174,7 @@ spec: - name: name value: prefetch-dependencies-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:ca036c7232f63199824bc1a65126faad834bc3af030e5b8210cb057f4ae97d99 + value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:e0c526c2916212aa676d840831d70a9d57134eedbd0823063b1e1efb63f78842 - name: kind value: task resolver: bundles @@ -231,7 +217,7 @@ spec: - name: name value: buildah-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:6971ff364b06fc3fb30c04951bf956be03b8178ae842a21b355cc9c632264a4d + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:5194b17407c4951fb9169c00e4c8c54d01dba4bac01c48441220a4fbc6eb898e - name: kind value: task resolver: bundles From 3e4938216e9e6c94cf9634a4a03568c2c3ac8e17 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Wed, 20 Aug 2025 18:24:45 +0000 Subject: [PATCH 23/83] Red Hat Konflux update cert-manager-operator-bundle-1-17 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-17-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-17-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml index 69f74e2bb..c49e9aafe 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml @@ -177,7 +177,7 @@ spec: - name: name value: prefetch-dependencies-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:e0c526c2916212aa676d840831d70a9d57134eedbd0823063b1e1efb63f78842 + value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:29869c64ff27e964e26a8a7ea2c882a2ed5424210bd0603be45a07e2ebf308cc - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-17-push.yaml b/.tekton/cert-manager-operator-bundle-1-17-push.yaml index 706f2b330..29f32886e 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-push.yaml @@ -174,7 +174,7 @@ spec: - name: name value: prefetch-dependencies-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:e0c526c2916212aa676d840831d70a9d57134eedbd0823063b1e1efb63f78842 + value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:29869c64ff27e964e26a8a7ea2c882a2ed5424210bd0603be45a07e2ebf308cc - name: kind value: task resolver: bundles From a07f35795c293145ef758fe5a621df2450d36a0e Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Thu, 21 Aug 2025 11:03:39 +0000 Subject: [PATCH 24/83] Red Hat Konflux update cert-manager-operator-bundle-1-17 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-17-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-17-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml index c49e9aafe..49c4d42a3 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml @@ -571,7 +571,7 @@ spec: - name: name value: rpms-signature-scan - name: bundle - value: quay.io/konflux-ci/konflux-vanguard/task-rpms-signature-scan:0.2@sha256:00a29b6f86c2b8237077a5f5ca29a71aae59eab311dde57de27e5dcf4cae5d77 + value: quay.io/konflux-ci/konflux-vanguard/task-rpms-signature-scan:0.2@sha256:e127e0e0a5aab1364b560436594fe7ed67abcd5f8d6dd3ef14ac1f35cf81078c - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-17-push.yaml b/.tekton/cert-manager-operator-bundle-1-17-push.yaml index 29f32886e..e52b64a0d 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-push.yaml @@ -568,7 +568,7 @@ spec: - name: name value: rpms-signature-scan - name: bundle - value: quay.io/konflux-ci/konflux-vanguard/task-rpms-signature-scan:0.2@sha256:00a29b6f86c2b8237077a5f5ca29a71aae59eab311dde57de27e5dcf4cae5d77 + value: quay.io/konflux-ci/konflux-vanguard/task-rpms-signature-scan:0.2@sha256:e127e0e0a5aab1364b560436594fe7ed67abcd5f8d6dd3ef14ac1f35cf81078c - name: kind value: task resolver: bundles From 13c4b5f637bfd7fa533874d8ea8f0b2e92d95392 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Mon, 25 Aug 2025 09:05:56 +0000 Subject: [PATCH 25/83] Red Hat Konflux update cert-manager-operator-bundle-1-17 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-17-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-17-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml index 49c4d42a3..f897e5349 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml @@ -249,7 +249,7 @@ spec: - name: name value: build-image-index - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:3bf6e4e83f911066430041534a69eec51dbd0f52f34a9bf41c6f3a24ec2ffb22 + value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:ba7fbed5c4862968c1a77d6b90d5bdd497925ab1de41b859c027dd5c3069cd3e - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-17-push.yaml b/.tekton/cert-manager-operator-bundle-1-17-push.yaml index e52b64a0d..a51cd93dd 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-push.yaml @@ -246,7 +246,7 @@ spec: - name: name value: build-image-index - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:3bf6e4e83f911066430041534a69eec51dbd0f52f34a9bf41c6f3a24ec2ffb22 + value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:ba7fbed5c4862968c1a77d6b90d5bdd497925ab1de41b859c027dd5c3069cd3e - name: kind value: task resolver: bundles From f03377311adfee16725c851b400a3fb7d9443931 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Mon, 25 Aug 2025 14:05:16 +0000 Subject: [PATCH 26/83] Red Hat Konflux update cert-manager-operator-bundle-1-17 Signed-off-by: red-hat-konflux --- ...cert-manager-operator-bundle-1-17-pull-request.yaml | 10 +++++----- .tekton/cert-manager-operator-bundle-1-17-push.yaml | 10 +++++----- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml index f897e5349..f9428db36 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml @@ -71,7 +71,7 @@ spec: name: hermetic type: string - default: "" - description: Build dependencies to be prefetched by Cachi2 + description: Build dependencies to be prefetched name: prefetch-input type: string - default: "" @@ -177,7 +177,7 @@ spec: - name: name value: prefetch-dependencies-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:29869c64ff27e964e26a8a7ea2c882a2ed5424210bd0603be45a07e2ebf308cc + value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:981dbd9ddecdbb716f321e65e645c6f74886352098d50d958f1195da550fac73 - name: kind value: task resolver: bundles @@ -220,7 +220,7 @@ spec: - name: name value: buildah-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:5194b17407c4951fb9169c00e4c8c54d01dba4bac01c48441220a4fbc6eb898e + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:db496b9f7072fb9d1c4b749db6bab8c19c0b647a8a4d2589833dcec979876657 - name: kind value: task resolver: bundles @@ -275,7 +275,7 @@ spec: - name: name value: source-build-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-source-build-oci-ta:0.3@sha256:f1c0743939fe246b19e9e268a3b96b22b724096dcf946548c3d60e184136e32f + value: quay.io/konflux-ci/tekton-catalog/task-source-build-oci-ta:0.3@sha256:7a36cc284c5932c18e117fe5995f3246b5dcc11ec742b66a2f9ae710034b064f - name: kind value: task resolver: bundles @@ -436,7 +436,7 @@ spec: - name: name value: sast-coverity-check-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-sast-coverity-check-oci-ta:0.3@sha256:9c776c82aeaf36539a0aa68764ed285f78530d78207ddb011aaa0a01f9ccb16d + value: quay.io/konflux-ci/tekton-catalog/task-sast-coverity-check-oci-ta:0.3@sha256:cdbe1a968676e4f5519b082bf1e27a4cdcf66dd60af66dbc26b3e604f957f7e9 - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-17-push.yaml b/.tekton/cert-manager-operator-bundle-1-17-push.yaml index a51cd93dd..364c069b4 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-push.yaml @@ -68,7 +68,7 @@ spec: name: hermetic type: string - default: "" - description: Build dependencies to be prefetched by Cachi2 + description: Build dependencies to be prefetched name: prefetch-input type: string - default: "" @@ -174,7 +174,7 @@ spec: - name: name value: prefetch-dependencies-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:29869c64ff27e964e26a8a7ea2c882a2ed5424210bd0603be45a07e2ebf308cc + value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:981dbd9ddecdbb716f321e65e645c6f74886352098d50d958f1195da550fac73 - name: kind value: task resolver: bundles @@ -217,7 +217,7 @@ spec: - name: name value: buildah-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:5194b17407c4951fb9169c00e4c8c54d01dba4bac01c48441220a4fbc6eb898e + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:db496b9f7072fb9d1c4b749db6bab8c19c0b647a8a4d2589833dcec979876657 - name: kind value: task resolver: bundles @@ -272,7 +272,7 @@ spec: - name: name value: source-build-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-source-build-oci-ta:0.3@sha256:f1c0743939fe246b19e9e268a3b96b22b724096dcf946548c3d60e184136e32f + value: quay.io/konflux-ci/tekton-catalog/task-source-build-oci-ta:0.3@sha256:7a36cc284c5932c18e117fe5995f3246b5dcc11ec742b66a2f9ae710034b064f - name: kind value: task resolver: bundles @@ -433,7 +433,7 @@ spec: - name: name value: sast-coverity-check-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-sast-coverity-check-oci-ta:0.3@sha256:9c776c82aeaf36539a0aa68764ed285f78530d78207ddb011aaa0a01f9ccb16d + value: quay.io/konflux-ci/tekton-catalog/task-sast-coverity-check-oci-ta:0.3@sha256:cdbe1a968676e4f5519b082bf1e27a4cdcf66dd60af66dbc26b3e604f957f7e9 - name: kind value: task resolver: bundles From b16be5d9f3f8468a6278b3ffa77966b34ce4fd30 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Mon, 25 Aug 2025 15:43:14 +0000 Subject: [PATCH 27/83] Red Hat Konflux update cert-manager-operator-bundle-1-17 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-17-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-17-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml index f9428db36..2a236a09d 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml @@ -343,7 +343,7 @@ spec: - name: name value: ecosystem-cert-preflight-checks - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.2@sha256:1f151e00f7fc427654b7b76045a426bb02fe650d192ffe147a304d2184787e38 + value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.2@sha256:aae036fd1a5e7556c0dd53704e3e085c971d9fd834d58ab7a522641d566f7ab6 - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-17-push.yaml b/.tekton/cert-manager-operator-bundle-1-17-push.yaml index 364c069b4..811960ecf 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-push.yaml @@ -340,7 +340,7 @@ spec: - name: name value: ecosystem-cert-preflight-checks - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.2@sha256:1f151e00f7fc427654b7b76045a426bb02fe650d192ffe147a304d2184787e38 + value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.2@sha256:aae036fd1a5e7556c0dd53704e3e085c971d9fd834d58ab7a522641d566f7ab6 - name: kind value: task resolver: bundles From c0c2a28b1b63b5b6ae29fb19d8dc493c55ce71fc Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Tue, 26 Aug 2025 11:02:03 +0000 Subject: [PATCH 28/83] Red Hat Konflux update cert-manager-operator-bundle-1-17 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-17-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-17-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml index 2a236a09d..913a59a17 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml @@ -369,7 +369,7 @@ spec: - name: name value: sast-snyk-check-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-sast-snyk-check-oci-ta:0.4@sha256:fe5e5ba3a72632cd505910de2eacd62c9d11ed570c325173188f8d568ac60771 + value: quay.io/konflux-ci/tekton-catalog/task-sast-snyk-check-oci-ta:0.4@sha256:322c86ad5ee252c04440184d9f5046d276415148cb6bfaf571be1b102101786b - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-17-push.yaml b/.tekton/cert-manager-operator-bundle-1-17-push.yaml index 811960ecf..97a1c11d6 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-push.yaml @@ -366,7 +366,7 @@ spec: - name: name value: sast-snyk-check-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-sast-snyk-check-oci-ta:0.4@sha256:fe5e5ba3a72632cd505910de2eacd62c9d11ed570c325173188f8d568ac60771 + value: quay.io/konflux-ci/tekton-catalog/task-sast-snyk-check-oci-ta:0.4@sha256:322c86ad5ee252c04440184d9f5046d276415148cb6bfaf571be1b102101786b - name: kind value: task resolver: bundles From 7541010a528ad61b9e913f067145a5ccf4d4453e Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Tue, 26 Aug 2025 13:37:01 +0000 Subject: [PATCH 29/83] Red Hat Konflux update cert-manager-operator-bundle-1-17 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-17-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-17-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml index 913a59a17..c2c306bf8 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml @@ -343,7 +343,7 @@ spec: - name: name value: ecosystem-cert-preflight-checks - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.2@sha256:aae036fd1a5e7556c0dd53704e3e085c971d9fd834d58ab7a522641d566f7ab6 + value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.2@sha256:e106b6182e72c8f34ceae3f56b0b1aa2b4dc60f573877d9e51c3791029a7acb6 - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-17-push.yaml b/.tekton/cert-manager-operator-bundle-1-17-push.yaml index 97a1c11d6..3911d6d12 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-push.yaml @@ -340,7 +340,7 @@ spec: - name: name value: ecosystem-cert-preflight-checks - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.2@sha256:aae036fd1a5e7556c0dd53704e3e085c971d9fd834d58ab7a522641d566f7ab6 + value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.2@sha256:e106b6182e72c8f34ceae3f56b0b1aa2b4dc60f573877d9e51c3791029a7acb6 - name: kind value: task resolver: bundles From 32c03dcc594e7349d4f9ef424b22e4eea008ddde Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Wed, 27 Aug 2025 15:53:54 +0000 Subject: [PATCH 30/83] Red Hat Konflux update cert-manager-operator-bundle-1-17 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-17-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-17-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml index c2c306bf8..735cb392b 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml @@ -177,7 +177,7 @@ spec: - name: name value: prefetch-dependencies-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:981dbd9ddecdbb716f321e65e645c6f74886352098d50d958f1195da550fac73 + value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:22290579c9fe0b5c1689bb9023b3eddec73c285b680226d9f460346ae849a2cb - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-17-push.yaml b/.tekton/cert-manager-operator-bundle-1-17-push.yaml index 3911d6d12..f7d96de82 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-push.yaml @@ -174,7 +174,7 @@ spec: - name: name value: prefetch-dependencies-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:981dbd9ddecdbb716f321e65e645c6f74886352098d50d958f1195da550fac73 + value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:22290579c9fe0b5c1689bb9023b3eddec73c285b680226d9f460346ae849a2cb - name: kind value: task resolver: bundles From 529911f8c0641d0dad581594ef2f16a135a7645c Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Mon, 1 Sep 2025 12:00:37 +0000 Subject: [PATCH 31/83] Red Hat Konflux update cert-manager-operator-bundle-1-17 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-17-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-17-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml index 735cb392b..8958e9374 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml @@ -177,7 +177,7 @@ spec: - name: name value: prefetch-dependencies-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:22290579c9fe0b5c1689bb9023b3eddec73c285b680226d9f460346ae849a2cb + value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:24230408f0353d339dc573aaa96d2cfee9e29b89ece931a90a7866bc772c79b7 - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-17-push.yaml b/.tekton/cert-manager-operator-bundle-1-17-push.yaml index f7d96de82..ef54325bd 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-push.yaml @@ -174,7 +174,7 @@ spec: - name: name value: prefetch-dependencies-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:22290579c9fe0b5c1689bb9023b3eddec73c285b680226d9f460346ae849a2cb + value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:24230408f0353d339dc573aaa96d2cfee9e29b89ece931a90a7866bc772c79b7 - name: kind value: task resolver: bundles From 2e64688c06cab78f3c1807e28fab0f0c29bc848d Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Mon, 1 Sep 2025 20:48:58 +0000 Subject: [PATCH 32/83] Red Hat Konflux update cert-manager-operator-bundle-1-17 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-17-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-17-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml index 8958e9374..b7b6e8d07 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml @@ -220,7 +220,7 @@ spec: - name: name value: buildah-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:db496b9f7072fb9d1c4b749db6bab8c19c0b647a8a4d2589833dcec979876657 + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:c9ef8d723f5c3d65ec910d6fdb74607332620289ab083d6c97c602226fe7a8d2 - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-17-push.yaml b/.tekton/cert-manager-operator-bundle-1-17-push.yaml index ef54325bd..724ac6133 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-push.yaml @@ -217,7 +217,7 @@ spec: - name: name value: buildah-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:db496b9f7072fb9d1c4b749db6bab8c19c0b647a8a4d2589833dcec979876657 + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:c9ef8d723f5c3d65ec910d6fdb74607332620289ab083d6c97c602226fe7a8d2 - name: kind value: task resolver: bundles From 0c699f5a8014cc827ce8af5f9fbd9d346186bbf1 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Tue, 2 Sep 2025 19:23:41 +0000 Subject: [PATCH 33/83] Red Hat Konflux update cert-manager-operator-bundle-1-17 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-17-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-17-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml index b7b6e8d07..9062a9c43 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml @@ -177,7 +177,7 @@ spec: - name: name value: prefetch-dependencies-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:24230408f0353d339dc573aaa96d2cfee9e29b89ece931a90a7866bc772c79b7 + value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:05551e144d090844903d61893a383fa4dc69ab563797f03ffaab0f8624bf530d - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-17-push.yaml b/.tekton/cert-manager-operator-bundle-1-17-push.yaml index 724ac6133..ff111d494 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-push.yaml @@ -174,7 +174,7 @@ spec: - name: name value: prefetch-dependencies-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:24230408f0353d339dc573aaa96d2cfee9e29b89ece931a90a7866bc772c79b7 + value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:05551e144d090844903d61893a383fa4dc69ab563797f03ffaab0f8624bf530d - name: kind value: task resolver: bundles From 5d1e8d7a043ef873273a656af87a2368abd6eb7d Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Wed, 3 Sep 2025 05:02:32 +0000 Subject: [PATCH 34/83] Red Hat Konflux update cert-manager-operator-bundle-1-17 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-17-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-17-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml index 9062a9c43..e583af210 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml @@ -369,7 +369,7 @@ spec: - name: name value: sast-snyk-check-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-sast-snyk-check-oci-ta:0.4@sha256:322c86ad5ee252c04440184d9f5046d276415148cb6bfaf571be1b102101786b + value: quay.io/konflux-ci/tekton-catalog/task-sast-snyk-check-oci-ta:0.4@sha256:e371aa09c65ab309138b4aeae9ea4dd93f83119c5cc61e9f2057fe5bb518fbe9 - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-17-push.yaml b/.tekton/cert-manager-operator-bundle-1-17-push.yaml index ff111d494..c280eb5af 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-push.yaml @@ -366,7 +366,7 @@ spec: - name: name value: sast-snyk-check-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-sast-snyk-check-oci-ta:0.4@sha256:322c86ad5ee252c04440184d9f5046d276415148cb6bfaf571be1b102101786b + value: quay.io/konflux-ci/tekton-catalog/task-sast-snyk-check-oci-ta:0.4@sha256:e371aa09c65ab309138b4aeae9ea4dd93f83119c5cc61e9f2057fe5bb518fbe9 - name: kind value: task resolver: bundles From fb341a0f8225dcdab9401ab43ce8d2fbf1ccbf1d Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Fri, 5 Sep 2025 05:24:42 +0000 Subject: [PATCH 35/83] Red Hat Konflux update cert-manager-operator-bundle-1-17 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-17-pull-request.yaml | 4 ++-- .tekton/cert-manager-operator-bundle-1-17-push.yaml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml index e583af210..2985008f4 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml @@ -177,7 +177,7 @@ spec: - name: name value: prefetch-dependencies-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:05551e144d090844903d61893a383fa4dc69ab563797f03ffaab0f8624bf530d + value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:0b58e5132333dd3b710ef9c18ecebe0d5e5b22066ba56481d34431c989cb21dd - name: kind value: task resolver: bundles @@ -343,7 +343,7 @@ spec: - name: name value: ecosystem-cert-preflight-checks - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.2@sha256:e106b6182e72c8f34ceae3f56b0b1aa2b4dc60f573877d9e51c3791029a7acb6 + value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.2@sha256:51ee3ca7b8142f39a2861ed0f94f67e02c538e3b7e57de56ed301fbb9774aa12 - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-17-push.yaml b/.tekton/cert-manager-operator-bundle-1-17-push.yaml index c280eb5af..2a75b1ddb 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-push.yaml @@ -174,7 +174,7 @@ spec: - name: name value: prefetch-dependencies-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:05551e144d090844903d61893a383fa4dc69ab563797f03ffaab0f8624bf530d + value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:0b58e5132333dd3b710ef9c18ecebe0d5e5b22066ba56481d34431c989cb21dd - name: kind value: task resolver: bundles @@ -340,7 +340,7 @@ spec: - name: name value: ecosystem-cert-preflight-checks - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.2@sha256:e106b6182e72c8f34ceae3f56b0b1aa2b4dc60f573877d9e51c3791029a7acb6 + value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.2@sha256:51ee3ca7b8142f39a2861ed0f94f67e02c538e3b7e57de56ed301fbb9774aa12 - name: kind value: task resolver: bundles From 450256f3672abe5844a4d8a99d7775e2f1a51d24 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Fri, 5 Sep 2025 14:35:54 +0000 Subject: [PATCH 36/83] Red Hat Konflux update cert-manager-operator-bundle-1-17 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-17-pull-request.yaml | 4 ++-- .tekton/cert-manager-operator-bundle-1-17-push.yaml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml index 2985008f4..50057e24d 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml @@ -275,7 +275,7 @@ spec: - name: name value: source-build-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-source-build-oci-ta:0.3@sha256:7a36cc284c5932c18e117fe5995f3246b5dcc11ec742b66a2f9ae710034b064f + value: quay.io/konflux-ci/tekton-catalog/task-source-build-oci-ta:0.3@sha256:a48c950350c5e9945cc4ad6bfad7fc653aa437c9eff74a25fd1d42fda4fe344d - name: kind value: task resolver: bundles @@ -343,7 +343,7 @@ spec: - name: name value: ecosystem-cert-preflight-checks - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.2@sha256:51ee3ca7b8142f39a2861ed0f94f67e02c538e3b7e57de56ed301fbb9774aa12 + value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.2@sha256:365c65ed8dfbd83c4a49300dcb9c74c5c3f027efec0be1a1f0baa9633c29b249 - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-17-push.yaml b/.tekton/cert-manager-operator-bundle-1-17-push.yaml index 2a75b1ddb..93c7a03b2 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-push.yaml @@ -272,7 +272,7 @@ spec: - name: name value: source-build-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-source-build-oci-ta:0.3@sha256:7a36cc284c5932c18e117fe5995f3246b5dcc11ec742b66a2f9ae710034b064f + value: quay.io/konflux-ci/tekton-catalog/task-source-build-oci-ta:0.3@sha256:a48c950350c5e9945cc4ad6bfad7fc653aa437c9eff74a25fd1d42fda4fe344d - name: kind value: task resolver: bundles @@ -340,7 +340,7 @@ spec: - name: name value: ecosystem-cert-preflight-checks - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.2@sha256:51ee3ca7b8142f39a2861ed0f94f67e02c538e3b7e57de56ed301fbb9774aa12 + value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.2@sha256:365c65ed8dfbd83c4a49300dcb9c74c5c3f027efec0be1a1f0baa9633c29b249 - name: kind value: task resolver: bundles From 2a09e7c624972ce0920cb96c88c3a96f16db5d45 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Sun, 7 Sep 2025 12:00:00 +0000 Subject: [PATCH 37/83] Red Hat Konflux update cert-manager-operator-bundle-1-17 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-17-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-17-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml index 50057e24d..34329c685 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml @@ -571,7 +571,7 @@ spec: - name: name value: rpms-signature-scan - name: bundle - value: quay.io/konflux-ci/konflux-vanguard/task-rpms-signature-scan:0.2@sha256:e127e0e0a5aab1364b560436594fe7ed67abcd5f8d6dd3ef14ac1f35cf81078c + value: quay.io/konflux-ci/konflux-vanguard/task-rpms-signature-scan:0.2@sha256:49ff6d117c3e9dc3966d1244e118e168b3501742ec14c3a4161a276ff48d04d5 - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-17-push.yaml b/.tekton/cert-manager-operator-bundle-1-17-push.yaml index 93c7a03b2..58c0219f2 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-push.yaml @@ -568,7 +568,7 @@ spec: - name: name value: rpms-signature-scan - name: bundle - value: quay.io/konflux-ci/konflux-vanguard/task-rpms-signature-scan:0.2@sha256:e127e0e0a5aab1364b560436594fe7ed67abcd5f8d6dd3ef14ac1f35cf81078c + value: quay.io/konflux-ci/konflux-vanguard/task-rpms-signature-scan:0.2@sha256:49ff6d117c3e9dc3966d1244e118e168b3501742ec14c3a4161a276ff48d04d5 - name: kind value: task resolver: bundles From 48e68a1cd3ba845cd1456395d78e92b746f37948 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Tue, 9 Sep 2025 18:27:36 +0000 Subject: [PATCH 38/83] Red Hat Konflux update cert-manager-operator-bundle-1-17 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-17-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-17-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml index 34329c685..2b7a374ef 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml @@ -343,7 +343,7 @@ spec: - name: name value: ecosystem-cert-preflight-checks - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.2@sha256:365c65ed8dfbd83c4a49300dcb9c74c5c3f027efec0be1a1f0baa9633c29b249 + value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.2@sha256:9f93749cfc4f665d0c1b8cd99d16ed90514e795d18d5d27b43d504bddeed3690 - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-17-push.yaml b/.tekton/cert-manager-operator-bundle-1-17-push.yaml index 58c0219f2..804b24c07 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-push.yaml @@ -340,7 +340,7 @@ spec: - name: name value: ecosystem-cert-preflight-checks - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.2@sha256:365c65ed8dfbd83c4a49300dcb9c74c5c3f027efec0be1a1f0baa9633c29b249 + value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.2@sha256:9f93749cfc4f665d0c1b8cd99d16ed90514e795d18d5d27b43d504bddeed3690 - name: kind value: task resolver: bundles From e29ec88001b6bc628a9dc6206b609b26f1a47731 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Wed, 10 Sep 2025 07:22:36 +0000 Subject: [PATCH 39/83] Red Hat Konflux update cert-manager-operator-bundle-1-17 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-17-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-17-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml index 2b7a374ef..27cfadc0f 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml @@ -531,7 +531,7 @@ spec: - name: name value: apply-tags - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-apply-tags:0.2@sha256:e0de426d492e195f59c99d2ea1ca0df7bfb8c689f5d1468fe7f70eb8684b8d02 + value: quay.io/konflux-ci/tekton-catalog/task-apply-tags:0.2@sha256:f44be1bf0262471f2f503f5e19da5f0628dcaf968c86272a2ad6b4871e708448 - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-17-push.yaml b/.tekton/cert-manager-operator-bundle-1-17-push.yaml index 804b24c07..bd5a93cd4 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-push.yaml @@ -528,7 +528,7 @@ spec: - name: name value: apply-tags - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-apply-tags:0.2@sha256:e0de426d492e195f59c99d2ea1ca0df7bfb8c689f5d1468fe7f70eb8684b8d02 + value: quay.io/konflux-ci/tekton-catalog/task-apply-tags:0.2@sha256:f44be1bf0262471f2f503f5e19da5f0628dcaf968c86272a2ad6b4871e708448 - name: kind value: task resolver: bundles From 18f7960237f40b437b51b936ab8476f46c274ac0 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Wed, 10 Sep 2025 17:33:14 +0000 Subject: [PATCH 40/83] Red Hat Konflux update cert-manager-operator-bundle-1-17 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-17-pull-request.yaml | 4 ++-- .tekton/cert-manager-operator-bundle-1-17-push.yaml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml index 27cfadc0f..c5832bc34 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml @@ -177,7 +177,7 @@ spec: - name: name value: prefetch-dependencies-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:0b58e5132333dd3b710ef9c18ecebe0d5e5b22066ba56481d34431c989cb21dd + value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:b89fb66464d0069dd72ef070c8c2c16d79c4200702d8f91e20bfe46e0aa0ae8d - name: kind value: task resolver: bundles @@ -323,7 +323,7 @@ spec: - name: name value: clair-scan - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-clair-scan:0.2@sha256:893ffa3ce26b061e21bb4d8db9ef7ed4ddd4044fe7aa5451ef391034da3ff759 + value: quay.io/konflux-ci/tekton-catalog/task-clair-scan:0.3@sha256:a7cc183967f89c4ac100d04ab8f81e54733beee60a0528208107c9a22d3c43af - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-17-push.yaml b/.tekton/cert-manager-operator-bundle-1-17-push.yaml index bd5a93cd4..4adf6fc40 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-push.yaml @@ -174,7 +174,7 @@ spec: - name: name value: prefetch-dependencies-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:0b58e5132333dd3b710ef9c18ecebe0d5e5b22066ba56481d34431c989cb21dd + value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:b89fb66464d0069dd72ef070c8c2c16d79c4200702d8f91e20bfe46e0aa0ae8d - name: kind value: task resolver: bundles @@ -320,7 +320,7 @@ spec: - name: name value: clair-scan - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-clair-scan:0.2@sha256:893ffa3ce26b061e21bb4d8db9ef7ed4ddd4044fe7aa5451ef391034da3ff759 + value: quay.io/konflux-ci/tekton-catalog/task-clair-scan:0.3@sha256:a7cc183967f89c4ac100d04ab8f81e54733beee60a0528208107c9a22d3c43af - name: kind value: task resolver: bundles From 5ecb6a942b9b355aff9c831a1b98eec7d98501ce Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Wed, 10 Sep 2025 22:25:37 +0000 Subject: [PATCH 41/83] Red Hat Konflux update cert-manager-operator-bundle-1-17 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-17-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-17-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml index c5832bc34..98fbda40e 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml @@ -343,7 +343,7 @@ spec: - name: name value: ecosystem-cert-preflight-checks - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.2@sha256:9f93749cfc4f665d0c1b8cd99d16ed90514e795d18d5d27b43d504bddeed3690 + value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.2@sha256:dae8e28761cee4ab0baf04ab9f8f1a4b3cee3c7decf461fda2bacc5c01652a60 - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-17-push.yaml b/.tekton/cert-manager-operator-bundle-1-17-push.yaml index 4adf6fc40..0446593f3 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-push.yaml @@ -340,7 +340,7 @@ spec: - name: name value: ecosystem-cert-preflight-checks - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.2@sha256:9f93749cfc4f665d0c1b8cd99d16ed90514e795d18d5d27b43d504bddeed3690 + value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.2@sha256:dae8e28761cee4ab0baf04ab9f8f1a4b3cee3c7decf461fda2bacc5c01652a60 - name: kind value: task resolver: bundles From 4467f573db040471daff49f6dc86f8bfc2979301 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Thu, 11 Sep 2025 13:50:07 +0000 Subject: [PATCH 42/83] Red Hat Konflux update cert-manager-operator-bundle-1-17 Signed-off-by: red-hat-konflux --- ...rt-manager-operator-bundle-1-17-pull-request.yaml | 12 ++++++------ .tekton/cert-manager-operator-bundle-1-17-push.yaml | 12 ++++++------ 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml index 98fbda40e..9f1401403 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml @@ -127,7 +127,7 @@ spec: - name: name value: init - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-init:0.2@sha256:ded314206f09712b2116deb050b774ae7efef9ab243794334c8e616871a3ffa5 + value: quay.io/konflux-ci/tekton-catalog/task-init:0.2@sha256:ec962d0be18f36ca7d331c99bf243800f569fc0a2ea6f8c8c3d3a574b71c44dc - name: kind value: task resolver: bundles @@ -148,7 +148,7 @@ spec: - name: name value: git-clone-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-git-clone-oci-ta:0.1@sha256:4a601aeec58a1dd89c271e728fd8f0d84777825b46940c3aec27f15bab3edacf + value: quay.io/konflux-ci/tekton-catalog/task-git-clone-oci-ta:0.1@sha256:efcce59f226b1426f7685917e41a50b73478f38fe9ac56c98f1e961effd4b6f0 - name: kind value: task resolver: bundles @@ -220,7 +220,7 @@ spec: - name: name value: buildah-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:c9ef8d723f5c3d65ec910d6fdb74607332620289ab083d6c97c602226fe7a8d2 + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:820e397596f9816c953e16328afa496337a2ede6b457fe600a40d44ebca5a16f - name: kind value: task resolver: bundles @@ -275,7 +275,7 @@ spec: - name: name value: source-build-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-source-build-oci-ta:0.3@sha256:a48c950350c5e9945cc4ad6bfad7fc653aa437c9eff74a25fd1d42fda4fe344d + value: quay.io/konflux-ci/tekton-catalog/task-source-build-oci-ta:0.3@sha256:a54c27a0d8f913c787755422a09c4561971b506a043d872b5b07af8123ef0f41 - name: kind value: task resolver: bundles @@ -369,7 +369,7 @@ spec: - name: name value: sast-snyk-check-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-sast-snyk-check-oci-ta:0.4@sha256:e371aa09c65ab309138b4aeae9ea4dd93f83119c5cc61e9f2057fe5bb518fbe9 + value: quay.io/konflux-ci/tekton-catalog/task-sast-snyk-check-oci-ta:0.4@sha256:783f5de1b4def2fb3fad20b914f4b3afee46ffb8f652114946e321ef3fa86449 - name: kind value: task resolver: bundles @@ -554,7 +554,7 @@ spec: - name: name value: push-dockerfile-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-push-dockerfile-oci-ta:0.1@sha256:235ef6e835de8171c07b8a7f8947d0b40bfcff999e1ff3cb6ddd9acc65c48430 + value: quay.io/konflux-ci/tekton-catalog/task-push-dockerfile-oci-ta:0.1@sha256:06529ba66b37bdc1f55590359aa849bc570b4e9c110c983e27f07081dc09a12b - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-17-push.yaml b/.tekton/cert-manager-operator-bundle-1-17-push.yaml index 0446593f3..689eb05cb 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-push.yaml @@ -124,7 +124,7 @@ spec: - name: name value: init - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-init:0.2@sha256:ded314206f09712b2116deb050b774ae7efef9ab243794334c8e616871a3ffa5 + value: quay.io/konflux-ci/tekton-catalog/task-init:0.2@sha256:ec962d0be18f36ca7d331c99bf243800f569fc0a2ea6f8c8c3d3a574b71c44dc - name: kind value: task resolver: bundles @@ -145,7 +145,7 @@ spec: - name: name value: git-clone-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-git-clone-oci-ta:0.1@sha256:4a601aeec58a1dd89c271e728fd8f0d84777825b46940c3aec27f15bab3edacf + value: quay.io/konflux-ci/tekton-catalog/task-git-clone-oci-ta:0.1@sha256:efcce59f226b1426f7685917e41a50b73478f38fe9ac56c98f1e961effd4b6f0 - name: kind value: task resolver: bundles @@ -217,7 +217,7 @@ spec: - name: name value: buildah-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:c9ef8d723f5c3d65ec910d6fdb74607332620289ab083d6c97c602226fe7a8d2 + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:820e397596f9816c953e16328afa496337a2ede6b457fe600a40d44ebca5a16f - name: kind value: task resolver: bundles @@ -272,7 +272,7 @@ spec: - name: name value: source-build-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-source-build-oci-ta:0.3@sha256:a48c950350c5e9945cc4ad6bfad7fc653aa437c9eff74a25fd1d42fda4fe344d + value: quay.io/konflux-ci/tekton-catalog/task-source-build-oci-ta:0.3@sha256:a54c27a0d8f913c787755422a09c4561971b506a043d872b5b07af8123ef0f41 - name: kind value: task resolver: bundles @@ -366,7 +366,7 @@ spec: - name: name value: sast-snyk-check-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-sast-snyk-check-oci-ta:0.4@sha256:e371aa09c65ab309138b4aeae9ea4dd93f83119c5cc61e9f2057fe5bb518fbe9 + value: quay.io/konflux-ci/tekton-catalog/task-sast-snyk-check-oci-ta:0.4@sha256:783f5de1b4def2fb3fad20b914f4b3afee46ffb8f652114946e321ef3fa86449 - name: kind value: task resolver: bundles @@ -551,7 +551,7 @@ spec: - name: name value: push-dockerfile-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-push-dockerfile-oci-ta:0.1@sha256:235ef6e835de8171c07b8a7f8947d0b40bfcff999e1ff3cb6ddd9acc65c48430 + value: quay.io/konflux-ci/tekton-catalog/task-push-dockerfile-oci-ta:0.1@sha256:06529ba66b37bdc1f55590359aa849bc570b4e9c110c983e27f07081dc09a12b - name: kind value: task resolver: bundles From d871e5aee00b11ced24c04db1f1869db4d79ae36 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Fri, 12 Sep 2025 00:12:36 +0000 Subject: [PATCH 43/83] Red Hat Konflux update cert-manager-operator-bundle-1-17 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-17-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-17-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml index 9f1401403..27a3e41bd 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml @@ -177,7 +177,7 @@ spec: - name: name value: prefetch-dependencies-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:b89fb66464d0069dd72ef070c8c2c16d79c4200702d8f91e20bfe46e0aa0ae8d + value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:d08e349032c57367d543c0bbd070386709614ade1db8e5eddeab29b1338f6653 - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-17-push.yaml b/.tekton/cert-manager-operator-bundle-1-17-push.yaml index 689eb05cb..110d892c1 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-push.yaml @@ -174,7 +174,7 @@ spec: - name: name value: prefetch-dependencies-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:b89fb66464d0069dd72ef070c8c2c16d79c4200702d8f91e20bfe46e0aa0ae8d + value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:d08e349032c57367d543c0bbd070386709614ade1db8e5eddeab29b1338f6653 - name: kind value: task resolver: bundles From 1b4a859f58adddc7f3f25bf6f01b41134bea9c8e Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Fri, 12 Sep 2025 20:35:04 +0000 Subject: [PATCH 44/83] Red Hat Konflux update cert-manager-operator-bundle-1-17 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-17-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-17-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml index 27a3e41bd..e90f69b2b 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml @@ -275,7 +275,7 @@ spec: - name: name value: source-build-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-source-build-oci-ta:0.3@sha256:a54c27a0d8f913c787755422a09c4561971b506a043d872b5b07af8123ef0f41 + value: quay.io/konflux-ci/tekton-catalog/task-source-build-oci-ta:0.3@sha256:21d33596cf7ff61cab38b68caf578e55509748962bf6f4030bf1dfb8cd68a257 - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-17-push.yaml b/.tekton/cert-manager-operator-bundle-1-17-push.yaml index 110d892c1..12ebc0ea0 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-push.yaml @@ -272,7 +272,7 @@ spec: - name: name value: source-build-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-source-build-oci-ta:0.3@sha256:a54c27a0d8f913c787755422a09c4561971b506a043d872b5b07af8123ef0f41 + value: quay.io/konflux-ci/tekton-catalog/task-source-build-oci-ta:0.3@sha256:21d33596cf7ff61cab38b68caf578e55509748962bf6f4030bf1dfb8cd68a257 - name: kind value: task resolver: bundles From 6c289386a5b4ef3c663b0a45ae0cc4363ef0e613 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Mon, 15 Sep 2025 09:48:37 +0000 Subject: [PATCH 45/83] Red Hat Konflux update cert-manager-operator-bundle-1-17 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-17-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-17-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml index e90f69b2b..117e6de06 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml @@ -177,7 +177,7 @@ spec: - name: name value: prefetch-dependencies-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:d08e349032c57367d543c0bbd070386709614ade1db8e5eddeab29b1338f6653 + value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:098322d6b789824f716f2d9caca1862d4afdc083ebaaee61aadd22a8c179480a - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-17-push.yaml b/.tekton/cert-manager-operator-bundle-1-17-push.yaml index 12ebc0ea0..d556a6eac 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-push.yaml @@ -174,7 +174,7 @@ spec: - name: name value: prefetch-dependencies-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:d08e349032c57367d543c0bbd070386709614ade1db8e5eddeab29b1338f6653 + value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:098322d6b789824f716f2d9caca1862d4afdc083ebaaee61aadd22a8c179480a - name: kind value: task resolver: bundles From fe0b2c3cf4d65ebc1f07ff218ec223696da826fd Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Tue, 16 Sep 2025 16:21:40 +0000 Subject: [PATCH 46/83] Red Hat Konflux update cert-manager-operator-bundle-1-17 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-17-pull-request.yaml | 4 +++- .tekton/cert-manager-operator-bundle-1-17-push.yaml | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml index 117e6de06..90edfcd7b 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml @@ -209,6 +209,8 @@ spec: value: $(params.build-args-file) - name: PRIVILEGED_NESTED value: $(params.privileged-nested) + - name: SOURCE_URL + value: $(tasks.clone-repository.results.url) - name: SOURCE_ARTIFACT value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) - name: CACHI2_ARTIFACT @@ -220,7 +222,7 @@ spec: - name: name value: buildah-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:820e397596f9816c953e16328afa496337a2ede6b457fe600a40d44ebca5a16f + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.5@sha256:4ad78f1a19fbc06e06e85fa492c7765a47bb8d2a2bf17269fe4d85ba2ebdcd71 - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-17-push.yaml b/.tekton/cert-manager-operator-bundle-1-17-push.yaml index d556a6eac..68014daef 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-push.yaml @@ -206,6 +206,8 @@ spec: value: $(params.build-args-file) - name: PRIVILEGED_NESTED value: $(params.privileged-nested) + - name: SOURCE_URL + value: $(tasks.clone-repository.results.url) - name: SOURCE_ARTIFACT value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) - name: CACHI2_ARTIFACT @@ -217,7 +219,7 @@ spec: - name: name value: buildah-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:820e397596f9816c953e16328afa496337a2ede6b457fe600a40d44ebca5a16f + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.5@sha256:4ad78f1a19fbc06e06e85fa492c7765a47bb8d2a2bf17269fe4d85ba2ebdcd71 - name: kind value: task resolver: bundles From ad476d9affdcbdb6c49e50889d2d5bcc77cfe08c Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Tue, 16 Sep 2025 18:01:06 +0000 Subject: [PATCH 47/83] Red Hat Konflux update cert-manager-operator-bundle-1-17 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-17-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-17-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml index 90edfcd7b..ce8365d9f 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml @@ -222,7 +222,7 @@ spec: - name: name value: buildah-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.5@sha256:4ad78f1a19fbc06e06e85fa492c7765a47bb8d2a2bf17269fe4d85ba2ebdcd71 + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.5@sha256:e24c062961fd8c200e2d1e08393e0c347f1b42141f2b76f28b5145b6c5bbb27a - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-17-push.yaml b/.tekton/cert-manager-operator-bundle-1-17-push.yaml index 68014daef..f91daa6f4 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-push.yaml @@ -219,7 +219,7 @@ spec: - name: name value: buildah-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.5@sha256:4ad78f1a19fbc06e06e85fa492c7765a47bb8d2a2bf17269fe4d85ba2ebdcd71 + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.5@sha256:e24c062961fd8c200e2d1e08393e0c347f1b42141f2b76f28b5145b6c5bbb27a - name: kind value: task resolver: bundles From 8b79332eada36da7246a1cbf3751d362cfecb0f0 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Thu, 18 Sep 2025 10:53:10 +0000 Subject: [PATCH 48/83] Red Hat Konflux update cert-manager-operator-bundle-1-17 Signed-off-by: red-hat-konflux --- ...cert-manager-operator-bundle-1-17-pull-request.yaml | 10 +++++----- .tekton/cert-manager-operator-bundle-1-17-push.yaml | 10 +++++----- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml index ce8365d9f..506e67f65 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml @@ -148,7 +148,7 @@ spec: - name: name value: git-clone-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-git-clone-oci-ta:0.1@sha256:efcce59f226b1426f7685917e41a50b73478f38fe9ac56c98f1e961effd4b6f0 + value: quay.io/konflux-ci/tekton-catalog/task-git-clone-oci-ta:0.1@sha256:3f1b468066b301083d8550e036f5a654fcb064810bd29eb06fec6d8ad3e35b9c - name: kind value: task resolver: bundles @@ -222,7 +222,7 @@ spec: - name: name value: buildah-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.5@sha256:e24c062961fd8c200e2d1e08393e0c347f1b42141f2b76f28b5145b6c5bbb27a + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.5@sha256:0db65d23353eb809554eb41719a1a626a3fcb3b6f99f38a127bc2952f9cf40ec - name: kind value: task resolver: bundles @@ -251,7 +251,7 @@ spec: - name: name value: build-image-index - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:ba7fbed5c4862968c1a77d6b90d5bdd497925ab1de41b859c027dd5c3069cd3e + value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:8e5dfb2fac011148f8715bbe0b99415f88297683d269eae0dfcad52562195d45 - name: kind value: task resolver: bundles @@ -277,7 +277,7 @@ spec: - name: name value: source-build-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-source-build-oci-ta:0.3@sha256:21d33596cf7ff61cab38b68caf578e55509748962bf6f4030bf1dfb8cd68a257 + value: quay.io/konflux-ci/tekton-catalog/task-source-build-oci-ta:0.3@sha256:b0d6cb28a23f20db4f5cf78ed78ae3a91b9a5adfe989696ed0bbc63840a485b6 - name: kind value: task resolver: bundles @@ -556,7 +556,7 @@ spec: - name: name value: push-dockerfile-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-push-dockerfile-oci-ta:0.1@sha256:06529ba66b37bdc1f55590359aa849bc570b4e9c110c983e27f07081dc09a12b + value: quay.io/konflux-ci/tekton-catalog/task-push-dockerfile-oci-ta:0.1@sha256:49f778479f468e71c2cfef722e96aa813d7ef98bde8a612e1bf1a13cd70849ec - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-17-push.yaml b/.tekton/cert-manager-operator-bundle-1-17-push.yaml index f91daa6f4..3d228748c 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-push.yaml @@ -145,7 +145,7 @@ spec: - name: name value: git-clone-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-git-clone-oci-ta:0.1@sha256:efcce59f226b1426f7685917e41a50b73478f38fe9ac56c98f1e961effd4b6f0 + value: quay.io/konflux-ci/tekton-catalog/task-git-clone-oci-ta:0.1@sha256:3f1b468066b301083d8550e036f5a654fcb064810bd29eb06fec6d8ad3e35b9c - name: kind value: task resolver: bundles @@ -219,7 +219,7 @@ spec: - name: name value: buildah-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.5@sha256:e24c062961fd8c200e2d1e08393e0c347f1b42141f2b76f28b5145b6c5bbb27a + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.5@sha256:0db65d23353eb809554eb41719a1a626a3fcb3b6f99f38a127bc2952f9cf40ec - name: kind value: task resolver: bundles @@ -248,7 +248,7 @@ spec: - name: name value: build-image-index - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:ba7fbed5c4862968c1a77d6b90d5bdd497925ab1de41b859c027dd5c3069cd3e + value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:8e5dfb2fac011148f8715bbe0b99415f88297683d269eae0dfcad52562195d45 - name: kind value: task resolver: bundles @@ -274,7 +274,7 @@ spec: - name: name value: source-build-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-source-build-oci-ta:0.3@sha256:21d33596cf7ff61cab38b68caf578e55509748962bf6f4030bf1dfb8cd68a257 + value: quay.io/konflux-ci/tekton-catalog/task-source-build-oci-ta:0.3@sha256:b0d6cb28a23f20db4f5cf78ed78ae3a91b9a5adfe989696ed0bbc63840a485b6 - name: kind value: task resolver: bundles @@ -553,7 +553,7 @@ spec: - name: name value: push-dockerfile-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-push-dockerfile-oci-ta:0.1@sha256:06529ba66b37bdc1f55590359aa849bc570b4e9c110c983e27f07081dc09a12b + value: quay.io/konflux-ci/tekton-catalog/task-push-dockerfile-oci-ta:0.1@sha256:49f778479f468e71c2cfef722e96aa813d7ef98bde8a612e1bf1a13cd70849ec - name: kind value: task resolver: bundles From da6db863f8167d3f1aaf83fbdeb97ea6274eb780 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Thu, 18 Sep 2025 20:31:16 +0000 Subject: [PATCH 49/83] Red Hat Konflux update cert-manager-operator-bundle-1-17 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-17-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-17-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml index 506e67f65..baef953c1 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml @@ -222,7 +222,7 @@ spec: - name: name value: buildah-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.5@sha256:0db65d23353eb809554eb41719a1a626a3fcb3b6f99f38a127bc2952f9cf40ec + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.5@sha256:83a505fe13bcb1898ed51e92794af8b18fd8ea5e1e916a8ba5d21e9fdc0a9706 - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-17-push.yaml b/.tekton/cert-manager-operator-bundle-1-17-push.yaml index 3d228748c..387a653cb 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-push.yaml @@ -219,7 +219,7 @@ spec: - name: name value: buildah-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.5@sha256:0db65d23353eb809554eb41719a1a626a3fcb3b6f99f38a127bc2952f9cf40ec + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.5@sha256:83a505fe13bcb1898ed51e92794af8b18fd8ea5e1e916a8ba5d21e9fdc0a9706 - name: kind value: task resolver: bundles From 481917977acec60e8e7f5cb338a0326dd323de15 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Fri, 19 Sep 2025 12:28:57 +0000 Subject: [PATCH 50/83] Red Hat Konflux update cert-manager-operator-bundle-1-17 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-17-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-17-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml index baef953c1..35fc7a056 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml @@ -222,7 +222,7 @@ spec: - name: name value: buildah-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.5@sha256:83a505fe13bcb1898ed51e92794af8b18fd8ea5e1e916a8ba5d21e9fdc0a9706 + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.5@sha256:203b7a3d8c04c1f3b5327db3f31a19647f8d46304e7ced1dd5dcbba19445ac10 - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-17-push.yaml b/.tekton/cert-manager-operator-bundle-1-17-push.yaml index 387a653cb..3cf6a29b2 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-push.yaml @@ -219,7 +219,7 @@ spec: - name: name value: buildah-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.5@sha256:83a505fe13bcb1898ed51e92794af8b18fd8ea5e1e916a8ba5d21e9fdc0a9706 + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.5@sha256:203b7a3d8c04c1f3b5327db3f31a19647f8d46304e7ced1dd5dcbba19445ac10 - name: kind value: task resolver: bundles From 07eaad7868a61f6a626562e0e765ce8a465f6146 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Tue, 23 Sep 2025 15:56:35 +0000 Subject: [PATCH 51/83] Red Hat Konflux update cert-manager-operator-bundle-1-17 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-17-pull-request.yaml | 4 ++-- .tekton/cert-manager-operator-bundle-1-17-push.yaml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml index 35fc7a056..b1b669159 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml @@ -222,7 +222,7 @@ spec: - name: name value: buildah-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.5@sha256:203b7a3d8c04c1f3b5327db3f31a19647f8d46304e7ced1dd5dcbba19445ac10 + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.5@sha256:fdd3f39c8ea97de0d77bcde160704dbd33fdcb9cd235836927bbb170aaefb80f - name: kind value: task resolver: bundles @@ -251,7 +251,7 @@ spec: - name: name value: build-image-index - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:8e5dfb2fac011148f8715bbe0b99415f88297683d269eae0dfcad52562195d45 + value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:79784d53749584bc5a8de32142ec4e2f01cdbf42c20d94e59280e0b927c8597d - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-17-push.yaml b/.tekton/cert-manager-operator-bundle-1-17-push.yaml index 3cf6a29b2..1bed4dcd5 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-push.yaml @@ -219,7 +219,7 @@ spec: - name: name value: buildah-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.5@sha256:203b7a3d8c04c1f3b5327db3f31a19647f8d46304e7ced1dd5dcbba19445ac10 + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.5@sha256:fdd3f39c8ea97de0d77bcde160704dbd33fdcb9cd235836927bbb170aaefb80f - name: kind value: task resolver: bundles @@ -248,7 +248,7 @@ spec: - name: name value: build-image-index - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:8e5dfb2fac011148f8715bbe0b99415f88297683d269eae0dfcad52562195d45 + value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:79784d53749584bc5a8de32142ec4e2f01cdbf42c20d94e59280e0b927c8597d - name: kind value: task resolver: bundles From c08e6d30f5355e27da16df0ee5a7beee190ac6cd Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Wed, 24 Sep 2025 10:28:30 +0000 Subject: [PATCH 52/83] Red Hat Konflux update cert-manager-operator-bundle-1-17 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-17-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-17-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml index b1b669159..05664ef01 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml @@ -177,7 +177,7 @@ spec: - name: name value: prefetch-dependencies-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:098322d6b789824f716f2d9caca1862d4afdc083ebaaee61aadd22a8c179480a + value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:dc82a7270aace9b1c26f7e96f8ccab2752e53d32980c41a45e1733baad76cde6 - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-17-push.yaml b/.tekton/cert-manager-operator-bundle-1-17-push.yaml index 1bed4dcd5..266b81b58 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-push.yaml @@ -174,7 +174,7 @@ spec: - name: name value: prefetch-dependencies-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:098322d6b789824f716f2d9caca1862d4afdc083ebaaee61aadd22a8c179480a + value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:dc82a7270aace9b1c26f7e96f8ccab2752e53d32980c41a45e1733baad76cde6 - name: kind value: task resolver: bundles From 644b873c0770bb74dd552e860fc72d5196b81c82 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Thu, 25 Sep 2025 21:58:42 +0000 Subject: [PATCH 53/83] Red Hat Konflux update cert-manager-operator-bundle-1-17 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-17-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-17-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml index 05664ef01..b1ad809d9 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml @@ -222,7 +222,7 @@ spec: - name: name value: buildah-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.5@sha256:fdd3f39c8ea97de0d77bcde160704dbd33fdcb9cd235836927bbb170aaefb80f + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.5@sha256:6ec006242975a17388bfe813e2afd0ae721dd013247580c0d988e3c4a9c7f867 - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-17-push.yaml b/.tekton/cert-manager-operator-bundle-1-17-push.yaml index 266b81b58..cf970a50a 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-push.yaml @@ -219,7 +219,7 @@ spec: - name: name value: buildah-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.5@sha256:fdd3f39c8ea97de0d77bcde160704dbd33fdcb9cd235836927bbb170aaefb80f + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.5@sha256:6ec006242975a17388bfe813e2afd0ae721dd013247580c0d988e3c4a9c7f867 - name: kind value: task resolver: bundles From 455684c89df08a849d0f8efc67615b3f0d58e077 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Fri, 26 Sep 2025 13:47:27 +0000 Subject: [PATCH 54/83] Red Hat Konflux update cert-manager-operator-bundle-1-17 Signed-off-by: red-hat-konflux --- ...ert-manager-operator-bundle-1-17-pull-request.yaml | 11 ++++++++++- .tekton/cert-manager-operator-bundle-1-17-push.yaml | 11 ++++++++++- 2 files changed, 20 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml index b1ad809d9..6c53c4a81 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml @@ -87,6 +87,11 @@ spec: description: Add built image into an OCI image index name: build-image-index type: string + - default: docker + description: The format for the resulting image's mediaType. Valid values are + oci or docker. + name: buildah-format + type: string - default: [] description: Array of --build-arg values ("arg=value" strings) for buildah name: build-args @@ -127,7 +132,7 @@ spec: - name: name value: init - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-init:0.2@sha256:ec962d0be18f36ca7d331c99bf243800f569fc0a2ea6f8c8c3d3a574b71c44dc + value: quay.io/konflux-ci/tekton-catalog/task-init:0.2@sha256:abf231cfc5a68b56f68a8ac9bb26dca3c3e434c88dd9627c72bdec0b8c335c67 - name: kind value: task resolver: bundles @@ -211,6 +216,8 @@ spec: value: $(params.privileged-nested) - name: SOURCE_URL value: $(tasks.clone-repository.results.url) + - name: BUILDAH_FORMAT + value: $(params.buildah-format) - name: SOURCE_ARTIFACT value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) - name: CACHI2_ARTIFACT @@ -244,6 +251,8 @@ spec: - name: IMAGES value: - $(tasks.build-container.results.IMAGE_URL)@$(tasks.build-container.results.IMAGE_DIGEST) + - name: BUILDAH_FORMAT + value: $(params.buildah-format) runAfter: - build-container taskRef: diff --git a/.tekton/cert-manager-operator-bundle-1-17-push.yaml b/.tekton/cert-manager-operator-bundle-1-17-push.yaml index cf970a50a..7634000ad 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-push.yaml @@ -84,6 +84,11 @@ spec: description: Add built image into an OCI image index name: build-image-index type: string + - default: docker + description: The format for the resulting image's mediaType. Valid values are + oci or docker. + name: buildah-format + type: string - default: [] description: Array of --build-arg values ("arg=value" strings) for buildah name: build-args @@ -124,7 +129,7 @@ spec: - name: name value: init - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-init:0.2@sha256:ec962d0be18f36ca7d331c99bf243800f569fc0a2ea6f8c8c3d3a574b71c44dc + value: quay.io/konflux-ci/tekton-catalog/task-init:0.2@sha256:abf231cfc5a68b56f68a8ac9bb26dca3c3e434c88dd9627c72bdec0b8c335c67 - name: kind value: task resolver: bundles @@ -208,6 +213,8 @@ spec: value: $(params.privileged-nested) - name: SOURCE_URL value: $(tasks.clone-repository.results.url) + - name: BUILDAH_FORMAT + value: $(params.buildah-format) - name: SOURCE_ARTIFACT value: $(tasks.prefetch-dependencies.results.SOURCE_ARTIFACT) - name: CACHI2_ARTIFACT @@ -241,6 +248,8 @@ spec: - name: IMAGES value: - $(tasks.build-container.results.IMAGE_URL)@$(tasks.build-container.results.IMAGE_DIGEST) + - name: BUILDAH_FORMAT + value: $(params.buildah-format) runAfter: - build-container taskRef: From 865e8e8d54a4ffd42160a295e73b5eb6d7077d60 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Mon, 29 Sep 2025 17:35:00 +0000 Subject: [PATCH 55/83] Red Hat Konflux update cert-manager-operator-bundle-1-17 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-17-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-17-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml index 6c53c4a81..4d9b960fc 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml @@ -132,7 +132,7 @@ spec: - name: name value: init - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-init:0.2@sha256:abf231cfc5a68b56f68a8ac9bb26dca3c3e434c88dd9627c72bdec0b8c335c67 + value: quay.io/konflux-ci/tekton-catalog/task-init:0.2@sha256:afc8d0af71c24285599120946b29eea2ab56663c5f49c6ca80ba12bf56ef2371 - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-17-push.yaml b/.tekton/cert-manager-operator-bundle-1-17-push.yaml index 7634000ad..53aac29cc 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-push.yaml @@ -129,7 +129,7 @@ spec: - name: name value: init - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-init:0.2@sha256:abf231cfc5a68b56f68a8ac9bb26dca3c3e434c88dd9627c72bdec0b8c335c67 + value: quay.io/konflux-ci/tekton-catalog/task-init:0.2@sha256:afc8d0af71c24285599120946b29eea2ab56663c5f49c6ca80ba12bf56ef2371 - name: kind value: task resolver: bundles From 19cd314d6ef7520f42dbae931b1fcdb41c5895ed Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Tue, 30 Sep 2025 15:34:17 +0000 Subject: [PATCH 56/83] Red Hat Konflux update cert-manager-operator-bundle-1-17 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-17-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-17-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml index 4d9b960fc..59e0c9c43 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml @@ -132,7 +132,7 @@ spec: - name: name value: init - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-init:0.2@sha256:afc8d0af71c24285599120946b29eea2ab56663c5f49c6ca80ba12bf56ef2371 + value: quay.io/konflux-ci/tekton-catalog/task-init:0.2@sha256:526a104a3342e36dad5c5e7f98c647da6b2a33897e458f772ff4afe523e0690a - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-17-push.yaml b/.tekton/cert-manager-operator-bundle-1-17-push.yaml index 53aac29cc..42e142eca 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-push.yaml @@ -129,7 +129,7 @@ spec: - name: name value: init - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-init:0.2@sha256:afc8d0af71c24285599120946b29eea2ab56663c5f49c6ca80ba12bf56ef2371 + value: quay.io/konflux-ci/tekton-catalog/task-init:0.2@sha256:526a104a3342e36dad5c5e7f98c647da6b2a33897e458f772ff4afe523e0690a - name: kind value: task resolver: bundles From a747b860998fea591f3fbbf041f844a5966bd2c8 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Wed, 1 Oct 2025 23:38:11 +0000 Subject: [PATCH 57/83] Red Hat Konflux update cert-manager-operator-bundle-1-17 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-17-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-17-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml index 59e0c9c43..a10e21824 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml @@ -380,7 +380,7 @@ spec: - name: name value: sast-snyk-check-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-sast-snyk-check-oci-ta:0.4@sha256:783f5de1b4def2fb3fad20b914f4b3afee46ffb8f652114946e321ef3fa86449 + value: quay.io/konflux-ci/tekton-catalog/task-sast-snyk-check-oci-ta:0.4@sha256:181d63c126e3119a9d57b8feed4eb66a875b5208c3e90724c22758e65dca8733 - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-17-push.yaml b/.tekton/cert-manager-operator-bundle-1-17-push.yaml index 42e142eca..1024cebbf 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-push.yaml @@ -377,7 +377,7 @@ spec: - name: name value: sast-snyk-check-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-sast-snyk-check-oci-ta:0.4@sha256:783f5de1b4def2fb3fad20b914f4b3afee46ffb8f652114946e321ef3fa86449 + value: quay.io/konflux-ci/tekton-catalog/task-sast-snyk-check-oci-ta:0.4@sha256:181d63c126e3119a9d57b8feed4eb66a875b5208c3e90724c22758e65dca8733 - name: kind value: task resolver: bundles From fdeec54bbde29be1251f1da185a65cf4f680ea70 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Fri, 3 Oct 2025 09:06:57 +0000 Subject: [PATCH 58/83] Red Hat Konflux update cert-manager-operator-bundle-1-17 Signed-off-by: red-hat-konflux --- ...cert-manager-operator-bundle-1-17-pull-request.yaml | 10 +++++----- .tekton/cert-manager-operator-bundle-1-17-push.yaml | 10 +++++----- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml index a10e21824..347fccbbc 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml @@ -132,7 +132,7 @@ spec: - name: name value: init - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-init:0.2@sha256:526a104a3342e36dad5c5e7f98c647da6b2a33897e458f772ff4afe523e0690a + value: quay.io/konflux-ci/tekton-catalog/task-init:0.2@sha256:bbf313b09740fb39b3343bc69ee94b2a2c21d16a9304f9b7c111c305558fc346 - name: kind value: task resolver: bundles @@ -153,7 +153,7 @@ spec: - name: name value: git-clone-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-git-clone-oci-ta:0.1@sha256:3f1b468066b301083d8550e036f5a654fcb064810bd29eb06fec6d8ad3e35b9c + value: quay.io/konflux-ci/tekton-catalog/task-git-clone-oci-ta:0.1@sha256:1144353cf608f0a44a6416a70db6408727733ff40070d382158d6f6984096d8e - name: kind value: task resolver: bundles @@ -229,7 +229,7 @@ spec: - name: name value: buildah-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.5@sha256:6ec006242975a17388bfe813e2afd0ae721dd013247580c0d988e3c4a9c7f867 + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.5@sha256:38d08ea58511a67f8754dc025feebdec8ae342fb4e25bc67a3726ec84f7cb7d1 - name: kind value: task resolver: bundles @@ -286,7 +286,7 @@ spec: - name: name value: source-build-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-source-build-oci-ta:0.3@sha256:b0d6cb28a23f20db4f5cf78ed78ae3a91b9a5adfe989696ed0bbc63840a485b6 + value: quay.io/konflux-ci/tekton-catalog/task-source-build-oci-ta:0.3@sha256:36d44f2924f60da00a079a9ab7ce25ad8b2ad593c16d90509203c125ff0ccd46 - name: kind value: task resolver: bundles @@ -565,7 +565,7 @@ spec: - name: name value: push-dockerfile-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-push-dockerfile-oci-ta:0.1@sha256:49f778479f468e71c2cfef722e96aa813d7ef98bde8a612e1bf1a13cd70849ec + value: quay.io/konflux-ci/tekton-catalog/task-push-dockerfile-oci-ta:0.1@sha256:2bc5b3afc5de56da0f06eac60b65e86f6b861b16a63f48579fc0bac7d657e14c - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-17-push.yaml b/.tekton/cert-manager-operator-bundle-1-17-push.yaml index 1024cebbf..a6c2559ba 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-push.yaml @@ -129,7 +129,7 @@ spec: - name: name value: init - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-init:0.2@sha256:526a104a3342e36dad5c5e7f98c647da6b2a33897e458f772ff4afe523e0690a + value: quay.io/konflux-ci/tekton-catalog/task-init:0.2@sha256:bbf313b09740fb39b3343bc69ee94b2a2c21d16a9304f9b7c111c305558fc346 - name: kind value: task resolver: bundles @@ -150,7 +150,7 @@ spec: - name: name value: git-clone-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-git-clone-oci-ta:0.1@sha256:3f1b468066b301083d8550e036f5a654fcb064810bd29eb06fec6d8ad3e35b9c + value: quay.io/konflux-ci/tekton-catalog/task-git-clone-oci-ta:0.1@sha256:1144353cf608f0a44a6416a70db6408727733ff40070d382158d6f6984096d8e - name: kind value: task resolver: bundles @@ -226,7 +226,7 @@ spec: - name: name value: buildah-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.5@sha256:6ec006242975a17388bfe813e2afd0ae721dd013247580c0d988e3c4a9c7f867 + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.5@sha256:38d08ea58511a67f8754dc025feebdec8ae342fb4e25bc67a3726ec84f7cb7d1 - name: kind value: task resolver: bundles @@ -283,7 +283,7 @@ spec: - name: name value: source-build-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-source-build-oci-ta:0.3@sha256:b0d6cb28a23f20db4f5cf78ed78ae3a91b9a5adfe989696ed0bbc63840a485b6 + value: quay.io/konflux-ci/tekton-catalog/task-source-build-oci-ta:0.3@sha256:36d44f2924f60da00a079a9ab7ce25ad8b2ad593c16d90509203c125ff0ccd46 - name: kind value: task resolver: bundles @@ -562,7 +562,7 @@ spec: - name: name value: push-dockerfile-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-push-dockerfile-oci-ta:0.1@sha256:49f778479f468e71c2cfef722e96aa813d7ef98bde8a612e1bf1a13cd70849ec + value: quay.io/konflux-ci/tekton-catalog/task-push-dockerfile-oci-ta:0.1@sha256:2bc5b3afc5de56da0f06eac60b65e86f6b861b16a63f48579fc0bac7d657e14c - name: kind value: task resolver: bundles From cc31209be142b9d0619e5cbaab759051e5cb5f5f Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Fri, 3 Oct 2025 17:11:49 +0000 Subject: [PATCH 59/83] Red Hat Konflux update cert-manager-operator-bundle-1-17 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-17-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-17-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml index 347fccbbc..eb8c0ae5c 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml @@ -153,7 +153,7 @@ spec: - name: name value: git-clone-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-git-clone-oci-ta:0.1@sha256:1144353cf608f0a44a6416a70db6408727733ff40070d382158d6f6984096d8e + value: quay.io/konflux-ci/tekton-catalog/task-git-clone-oci-ta:0.1@sha256:0d80f66610efd1f957700f61dcd5080689321b10ad544e136d58fc4673290d1b - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-17-push.yaml b/.tekton/cert-manager-operator-bundle-1-17-push.yaml index a6c2559ba..32dffd77a 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-push.yaml @@ -150,7 +150,7 @@ spec: - name: name value: git-clone-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-git-clone-oci-ta:0.1@sha256:1144353cf608f0a44a6416a70db6408727733ff40070d382158d6f6984096d8e + value: quay.io/konflux-ci/tekton-catalog/task-git-clone-oci-ta:0.1@sha256:0d80f66610efd1f957700f61dcd5080689321b10ad544e136d58fc4673290d1b - name: kind value: task resolver: bundles From d1ddce68b28f422796561cab5e2ffd993d7bb633 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Sun, 5 Oct 2025 16:03:56 +0000 Subject: [PATCH 60/83] Red Hat Konflux update cert-manager-operator-bundle-1-17 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-17-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-17-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml index eb8c0ae5c..50ab104c1 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml @@ -582,7 +582,7 @@ spec: - name: name value: rpms-signature-scan - name: bundle - value: quay.io/konflux-ci/konflux-vanguard/task-rpms-signature-scan:0.2@sha256:49ff6d117c3e9dc3966d1244e118e168b3501742ec14c3a4161a276ff48d04d5 + value: quay.io/konflux-ci/konflux-vanguard/task-rpms-signature-scan:0.2@sha256:06977232e67509e5540528ff6c3b081b23fc5bf3e40fb3e2d09a086d5c3243fc - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-17-push.yaml b/.tekton/cert-manager-operator-bundle-1-17-push.yaml index 32dffd77a..f5c5cc582 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-push.yaml @@ -579,7 +579,7 @@ spec: - name: name value: rpms-signature-scan - name: bundle - value: quay.io/konflux-ci/konflux-vanguard/task-rpms-signature-scan:0.2@sha256:49ff6d117c3e9dc3966d1244e118e168b3501742ec14c3a4161a276ff48d04d5 + value: quay.io/konflux-ci/konflux-vanguard/task-rpms-signature-scan:0.2@sha256:06977232e67509e5540528ff6c3b081b23fc5bf3e40fb3e2d09a086d5c3243fc - name: kind value: task resolver: bundles From 4c089a6dd4349d7bdb6e8b42d1dad760f0e35cd2 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Mon, 6 Oct 2025 18:01:01 +0000 Subject: [PATCH 61/83] Red Hat Konflux update cert-manager-operator-bundle-1-17 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-17-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-17-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml index 50ab104c1..126d23e78 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml @@ -153,7 +153,7 @@ spec: - name: name value: git-clone-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-git-clone-oci-ta:0.1@sha256:0d80f66610efd1f957700f61dcd5080689321b10ad544e136d58fc4673290d1b + value: quay.io/konflux-ci/tekton-catalog/task-git-clone-oci-ta:0.1@sha256:f21c34e50500edc84e4889d85fd71a80d79182b16c044adc7f5ecda021c6dfc7 - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-17-push.yaml b/.tekton/cert-manager-operator-bundle-1-17-push.yaml index f5c5cc582..185f454a6 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-push.yaml @@ -150,7 +150,7 @@ spec: - name: name value: git-clone-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-git-clone-oci-ta:0.1@sha256:0d80f66610efd1f957700f61dcd5080689321b10ad544e136d58fc4673290d1b + value: quay.io/konflux-ci/tekton-catalog/task-git-clone-oci-ta:0.1@sha256:f21c34e50500edc84e4889d85fd71a80d79182b16c044adc7f5ecda021c6dfc7 - name: kind value: task resolver: bundles From 3b2e393c36834264f4e0ed73a631587d60688b1c Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Mon, 6 Oct 2025 22:09:52 +0000 Subject: [PATCH 62/83] Red Hat Konflux update cert-manager-operator-bundle-1-17 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-17-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-17-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml index 126d23e78..c96f716a6 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml @@ -354,7 +354,7 @@ spec: - name: name value: ecosystem-cert-preflight-checks - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.2@sha256:dae8e28761cee4ab0baf04ab9f8f1a4b3cee3c7decf461fda2bacc5c01652a60 + value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.2@sha256:7db70c6cf23f39b9aad8b75285df31ed2c1213d87842cd4502ffc268808c96c6 - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-17-push.yaml b/.tekton/cert-manager-operator-bundle-1-17-push.yaml index 185f454a6..db7106b1b 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-push.yaml @@ -351,7 +351,7 @@ spec: - name: name value: ecosystem-cert-preflight-checks - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.2@sha256:dae8e28761cee4ab0baf04ab9f8f1a4b3cee3c7decf461fda2bacc5c01652a60 + value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.2@sha256:7db70c6cf23f39b9aad8b75285df31ed2c1213d87842cd4502ffc268808c96c6 - name: kind value: task resolver: bundles From 397d9281d757084ac323e69466cd6497e0d2bd6b Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Wed, 8 Oct 2025 20:53:25 +0000 Subject: [PATCH 63/83] Red Hat Konflux update cert-manager-operator-bundle-1-17 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-17-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-17-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml index c96f716a6..27f7e124c 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml @@ -354,7 +354,7 @@ spec: - name: name value: ecosystem-cert-preflight-checks - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.2@sha256:7db70c6cf23f39b9aad8b75285df31ed2c1213d87842cd4502ffc268808c96c6 + value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.2@sha256:9568c51a5158d534248908b9b561cf67d2826ed4ea164ffd95628bb42380e6ec - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-17-push.yaml b/.tekton/cert-manager-operator-bundle-1-17-push.yaml index db7106b1b..a2e5d5f4a 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-push.yaml @@ -351,7 +351,7 @@ spec: - name: name value: ecosystem-cert-preflight-checks - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.2@sha256:7db70c6cf23f39b9aad8b75285df31ed2c1213d87842cd4502ffc268808c96c6 + value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.2@sha256:9568c51a5158d534248908b9b561cf67d2826ed4ea164ffd95628bb42380e6ec - name: kind value: task resolver: bundles From 82375f0b0a37964610ca0b62e2bb312be7e66b30 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Thu, 9 Oct 2025 15:56:04 +0000 Subject: [PATCH 64/83] Red Hat Konflux update cert-manager-operator-bundle-1-17 Signed-off-by: red-hat-konflux --- ...rt-manager-operator-bundle-1-17-pull-request.yaml | 12 ++++++------ .tekton/cert-manager-operator-bundle-1-17-push.yaml | 12 ++++++------ 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml index 27f7e124c..9285e52e9 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml @@ -153,7 +153,7 @@ spec: - name: name value: git-clone-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-git-clone-oci-ta:0.1@sha256:f21c34e50500edc84e4889d85fd71a80d79182b16c044adc7f5ecda021c6dfc7 + value: quay.io/konflux-ci/tekton-catalog/task-git-clone-oci-ta:0.1@sha256:3a920a83fc0135aaae2730fe9d446eb2da2ffc9d63a34bceea04afd24653bdee - name: kind value: task resolver: bundles @@ -182,7 +182,7 @@ spec: - name: name value: prefetch-dependencies-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:dc82a7270aace9b1c26f7e96f8ccab2752e53d32980c41a45e1733baad76cde6 + value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:970285e3b0495961199523b566e0dd92ec2e29bedbcf61d8fc67106b06d0f923 - name: kind value: task resolver: bundles @@ -229,7 +229,7 @@ spec: - name: name value: buildah-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.5@sha256:38d08ea58511a67f8754dc025feebdec8ae342fb4e25bc67a3726ec84f7cb7d1 + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.5@sha256:fb3b36f1f800960dd3eb6291c9f8802b7305608a61b27310a541f53a716844a3 - name: kind value: task resolver: bundles @@ -286,7 +286,7 @@ spec: - name: name value: source-build-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-source-build-oci-ta:0.3@sha256:36d44f2924f60da00a079a9ab7ce25ad8b2ad593c16d90509203c125ff0ccd46 + value: quay.io/konflux-ci/tekton-catalog/task-source-build-oci-ta:0.3@sha256:2a290f91fdccf4c9ef726a1605163bc14904e1dbf9837ac6d2621caddd10f98e - name: kind value: task resolver: bundles @@ -312,7 +312,7 @@ spec: - name: name value: deprecated-image-check - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-deprecated-image-check:0.5@sha256:1d07d16810c26713f3d875083924d93697900147364360587ccb5a63f2c31012 + value: quay.io/konflux-ci/tekton-catalog/task-deprecated-image-check:0.5@sha256:f59175d9a0a60411738228dfe568af4684af4aa5e7e05c832927cb917801d489 - name: kind value: task resolver: bundles @@ -565,7 +565,7 @@ spec: - name: name value: push-dockerfile-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-push-dockerfile-oci-ta:0.1@sha256:2bc5b3afc5de56da0f06eac60b65e86f6b861b16a63f48579fc0bac7d657e14c + value: quay.io/konflux-ci/tekton-catalog/task-push-dockerfile-oci-ta:0.1@sha256:14fba04580b236e4206a904b86ee2fd8eeaa4163f7619a9c2602d361e4f74c51 - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-17-push.yaml b/.tekton/cert-manager-operator-bundle-1-17-push.yaml index a2e5d5f4a..74d4e61ce 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-push.yaml @@ -150,7 +150,7 @@ spec: - name: name value: git-clone-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-git-clone-oci-ta:0.1@sha256:f21c34e50500edc84e4889d85fd71a80d79182b16c044adc7f5ecda021c6dfc7 + value: quay.io/konflux-ci/tekton-catalog/task-git-clone-oci-ta:0.1@sha256:3a920a83fc0135aaae2730fe9d446eb2da2ffc9d63a34bceea04afd24653bdee - name: kind value: task resolver: bundles @@ -179,7 +179,7 @@ spec: - name: name value: prefetch-dependencies-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:dc82a7270aace9b1c26f7e96f8ccab2752e53d32980c41a45e1733baad76cde6 + value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:970285e3b0495961199523b566e0dd92ec2e29bedbcf61d8fc67106b06d0f923 - name: kind value: task resolver: bundles @@ -226,7 +226,7 @@ spec: - name: name value: buildah-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.5@sha256:38d08ea58511a67f8754dc025feebdec8ae342fb4e25bc67a3726ec84f7cb7d1 + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.5@sha256:fb3b36f1f800960dd3eb6291c9f8802b7305608a61b27310a541f53a716844a3 - name: kind value: task resolver: bundles @@ -283,7 +283,7 @@ spec: - name: name value: source-build-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-source-build-oci-ta:0.3@sha256:36d44f2924f60da00a079a9ab7ce25ad8b2ad593c16d90509203c125ff0ccd46 + value: quay.io/konflux-ci/tekton-catalog/task-source-build-oci-ta:0.3@sha256:2a290f91fdccf4c9ef726a1605163bc14904e1dbf9837ac6d2621caddd10f98e - name: kind value: task resolver: bundles @@ -309,7 +309,7 @@ spec: - name: name value: deprecated-image-check - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-deprecated-image-check:0.5@sha256:1d07d16810c26713f3d875083924d93697900147364360587ccb5a63f2c31012 + value: quay.io/konflux-ci/tekton-catalog/task-deprecated-image-check:0.5@sha256:f59175d9a0a60411738228dfe568af4684af4aa5e7e05c832927cb917801d489 - name: kind value: task resolver: bundles @@ -562,7 +562,7 @@ spec: - name: name value: push-dockerfile-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-push-dockerfile-oci-ta:0.1@sha256:2bc5b3afc5de56da0f06eac60b65e86f6b861b16a63f48579fc0bac7d657e14c + value: quay.io/konflux-ci/tekton-catalog/task-push-dockerfile-oci-ta:0.1@sha256:14fba04580b236e4206a904b86ee2fd8eeaa4163f7619a9c2602d361e4f74c51 - name: kind value: task resolver: bundles From 6f1b367a5e4a5d238bb54287265157eece25ca79 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Fri, 10 Oct 2025 15:39:42 +0000 Subject: [PATCH 65/83] Red Hat Konflux update cert-manager-operator-bundle-1-17 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-17-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-17-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml index 9285e52e9..955e081de 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml @@ -229,7 +229,7 @@ spec: - name: name value: buildah-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.5@sha256:fb3b36f1f800960dd3eb6291c9f8802b7305608a61b27310a541f53a716844a3 + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.6@sha256:7b4c101b71e48b267079a5b6331d22de0b25e008c9e1dcaca1c41c4312391e39 - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-17-push.yaml b/.tekton/cert-manager-operator-bundle-1-17-push.yaml index 74d4e61ce..74ad69d4a 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-push.yaml @@ -226,7 +226,7 @@ spec: - name: name value: buildah-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.5@sha256:fb3b36f1f800960dd3eb6291c9f8802b7305608a61b27310a541f53a716844a3 + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.6@sha256:7b4c101b71e48b267079a5b6331d22de0b25e008c9e1dcaca1c41c4312391e39 - name: kind value: task resolver: bundles From 6ebb5a1cd5388f2525aa4c1e87dd2429a37be608 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Thu, 16 Oct 2025 11:31:45 +0000 Subject: [PATCH 66/83] Red Hat Konflux update cert-manager-operator-bundle-1-17 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-17-pull-request.yaml | 6 +++--- .tekton/cert-manager-operator-bundle-1-17-push.yaml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml index 955e081de..71f9fbc84 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml @@ -260,7 +260,7 @@ spec: - name: name value: build-image-index - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:79784d53749584bc5a8de32142ec4e2f01cdbf42c20d94e59280e0b927c8597d + value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:d94cad7f41be61074dd21c7dff26dab9217c3435a16f62813c1cb8382dd9aae6 - name: kind value: task resolver: bundles @@ -494,7 +494,7 @@ spec: - name: name value: sast-shell-check-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-sast-shell-check-oci-ta:0.1@sha256:bf7bdde00b7212f730c1356672290af6f38d070da2c8a316987b5c32fd49e0b9 + value: quay.io/konflux-ci/tekton-catalog/task-sast-shell-check-oci-ta:0.1@sha256:f950c3cefcff91de751f4d24a297c3312a2b265dd54478193ba1330791976c35 - name: kind value: task resolver: bundles @@ -520,7 +520,7 @@ spec: - name: name value: sast-unicode-check-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-sast-unicode-check-oci-ta:0.3@sha256:a2bde66f6b4164620298c7d709b8f08515409404000fa1dc2260d2508b135651 + value: quay.io/konflux-ci/tekton-catalog/task-sast-unicode-check-oci-ta:0.3@sha256:1cf8f6f6e991e1820cbebddaf9f38442a2ea5669956c9ffc2b7e4698ae7e99be - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-17-push.yaml b/.tekton/cert-manager-operator-bundle-1-17-push.yaml index 74ad69d4a..94c603809 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-push.yaml @@ -257,7 +257,7 @@ spec: - name: name value: build-image-index - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:79784d53749584bc5a8de32142ec4e2f01cdbf42c20d94e59280e0b927c8597d + value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:d94cad7f41be61074dd21c7dff26dab9217c3435a16f62813c1cb8382dd9aae6 - name: kind value: task resolver: bundles @@ -491,7 +491,7 @@ spec: - name: name value: sast-shell-check-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-sast-shell-check-oci-ta:0.1@sha256:bf7bdde00b7212f730c1356672290af6f38d070da2c8a316987b5c32fd49e0b9 + value: quay.io/konflux-ci/tekton-catalog/task-sast-shell-check-oci-ta:0.1@sha256:f950c3cefcff91de751f4d24a297c3312a2b265dd54478193ba1330791976c35 - name: kind value: task resolver: bundles @@ -517,7 +517,7 @@ spec: - name: name value: sast-unicode-check-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-sast-unicode-check-oci-ta:0.3@sha256:a2bde66f6b4164620298c7d709b8f08515409404000fa1dc2260d2508b135651 + value: quay.io/konflux-ci/tekton-catalog/task-sast-unicode-check-oci-ta:0.3@sha256:1cf8f6f6e991e1820cbebddaf9f38442a2ea5669956c9ffc2b7e4698ae7e99be - name: kind value: task resolver: bundles From 966d8a09234d97dac1d7179c3850278d4d7eebfc Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Tue, 21 Oct 2025 15:59:57 +0000 Subject: [PATCH 67/83] Red Hat Konflux update cert-manager-operator-bundle-1-17 Signed-off-by: red-hat-konflux --- ...-manager-operator-bundle-1-17-pull-request.yaml | 14 +++++++------- .../cert-manager-operator-bundle-1-17-push.yaml | 14 +++++++------- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml index 71f9fbc84..36394cc74 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml @@ -334,7 +334,7 @@ spec: - name: name value: clair-scan - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-clair-scan:0.3@sha256:a7cc183967f89c4ac100d04ab8f81e54733beee60a0528208107c9a22d3c43af + value: quay.io/konflux-ci/tekton-catalog/task-clair-scan:0.3@sha256:8ec7d7b9438ace5ef3fb03a533d9440d0fd81e51c73b0dc1eb51602fb7cd044e - name: kind value: task resolver: bundles @@ -380,7 +380,7 @@ spec: - name: name value: sast-snyk-check-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-sast-snyk-check-oci-ta:0.4@sha256:181d63c126e3119a9d57b8feed4eb66a875b5208c3e90724c22758e65dca8733 + value: quay.io/konflux-ci/tekton-catalog/task-sast-snyk-check-oci-ta:0.4@sha256:60f2dac41844d222086ff7f477e51f3563716b183d87db89f603d6f604c21760 - name: kind value: task resolver: bundles @@ -402,7 +402,7 @@ spec: - name: name value: clamav-scan - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-clamav-scan:0.3@sha256:b0bd59748cda4a7abf311e4f448e6c1d00c6b6d8c0ecc1c2eb33e08dc0e0b802 + value: quay.io/konflux-ci/tekton-catalog/task-clamav-scan:0.3@sha256:f3d2d179cddcc07d0228d9f52959a233037a3afa2619d0a8b2effbb467db80c3 - name: kind value: task resolver: bundles @@ -447,7 +447,7 @@ spec: - name: name value: sast-coverity-check-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-sast-coverity-check-oci-ta:0.3@sha256:cdbe1a968676e4f5519b082bf1e27a4cdcf66dd60af66dbc26b3e604f957f7e9 + value: quay.io/konflux-ci/tekton-catalog/task-sast-coverity-check-oci-ta:0.3@sha256:ae62d14c999fd93246fef4e57d28570fa5200c3266b9a3263a39965e5a5b02d7 - name: kind value: task resolver: bundles @@ -468,7 +468,7 @@ spec: - name: name value: coverity-availability-check - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-coverity-availability-check:0.2@sha256:db2b267dc15e4ed17f704ee91b8e9b38068e1a35b1018a328fdca621819d74c6 + value: quay.io/konflux-ci/tekton-catalog/task-coverity-availability-check:0.2@sha256:36bcf1531b85c2c7d7b4382bc0a9c61b0501e2e54e84991b11b225bdec0e5928 - name: kind value: task resolver: bundles @@ -494,7 +494,7 @@ spec: - name: name value: sast-shell-check-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-sast-shell-check-oci-ta:0.1@sha256:f950c3cefcff91de751f4d24a297c3312a2b265dd54478193ba1330791976c35 + value: quay.io/konflux-ci/tekton-catalog/task-sast-shell-check-oci-ta:0.1@sha256:1f0fcba24ebc447d9f8a2ea2e8f262fa435d6c523ca6b0346cd67261551fc9ed - name: kind value: task resolver: bundles @@ -520,7 +520,7 @@ spec: - name: name value: sast-unicode-check-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-sast-unicode-check-oci-ta:0.3@sha256:1cf8f6f6e991e1820cbebddaf9f38442a2ea5669956c9ffc2b7e4698ae7e99be + value: quay.io/konflux-ci/tekton-catalog/task-sast-unicode-check-oci-ta:0.3@sha256:1833c618170ab9deb8455667f220df8e88d16ccd630a2361366f594e2bdcb712 - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-17-push.yaml b/.tekton/cert-manager-operator-bundle-1-17-push.yaml index 94c603809..d5b04eac2 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-push.yaml @@ -331,7 +331,7 @@ spec: - name: name value: clair-scan - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-clair-scan:0.3@sha256:a7cc183967f89c4ac100d04ab8f81e54733beee60a0528208107c9a22d3c43af + value: quay.io/konflux-ci/tekton-catalog/task-clair-scan:0.3@sha256:8ec7d7b9438ace5ef3fb03a533d9440d0fd81e51c73b0dc1eb51602fb7cd044e - name: kind value: task resolver: bundles @@ -377,7 +377,7 @@ spec: - name: name value: sast-snyk-check-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-sast-snyk-check-oci-ta:0.4@sha256:181d63c126e3119a9d57b8feed4eb66a875b5208c3e90724c22758e65dca8733 + value: quay.io/konflux-ci/tekton-catalog/task-sast-snyk-check-oci-ta:0.4@sha256:60f2dac41844d222086ff7f477e51f3563716b183d87db89f603d6f604c21760 - name: kind value: task resolver: bundles @@ -399,7 +399,7 @@ spec: - name: name value: clamav-scan - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-clamav-scan:0.3@sha256:b0bd59748cda4a7abf311e4f448e6c1d00c6b6d8c0ecc1c2eb33e08dc0e0b802 + value: quay.io/konflux-ci/tekton-catalog/task-clamav-scan:0.3@sha256:f3d2d179cddcc07d0228d9f52959a233037a3afa2619d0a8b2effbb467db80c3 - name: kind value: task resolver: bundles @@ -444,7 +444,7 @@ spec: - name: name value: sast-coverity-check-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-sast-coverity-check-oci-ta:0.3@sha256:cdbe1a968676e4f5519b082bf1e27a4cdcf66dd60af66dbc26b3e604f957f7e9 + value: quay.io/konflux-ci/tekton-catalog/task-sast-coverity-check-oci-ta:0.3@sha256:ae62d14c999fd93246fef4e57d28570fa5200c3266b9a3263a39965e5a5b02d7 - name: kind value: task resolver: bundles @@ -465,7 +465,7 @@ spec: - name: name value: coverity-availability-check - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-coverity-availability-check:0.2@sha256:db2b267dc15e4ed17f704ee91b8e9b38068e1a35b1018a328fdca621819d74c6 + value: quay.io/konflux-ci/tekton-catalog/task-coverity-availability-check:0.2@sha256:36bcf1531b85c2c7d7b4382bc0a9c61b0501e2e54e84991b11b225bdec0e5928 - name: kind value: task resolver: bundles @@ -491,7 +491,7 @@ spec: - name: name value: sast-shell-check-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-sast-shell-check-oci-ta:0.1@sha256:f950c3cefcff91de751f4d24a297c3312a2b265dd54478193ba1330791976c35 + value: quay.io/konflux-ci/tekton-catalog/task-sast-shell-check-oci-ta:0.1@sha256:1f0fcba24ebc447d9f8a2ea2e8f262fa435d6c523ca6b0346cd67261551fc9ed - name: kind value: task resolver: bundles @@ -517,7 +517,7 @@ spec: - name: name value: sast-unicode-check-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-sast-unicode-check-oci-ta:0.3@sha256:1cf8f6f6e991e1820cbebddaf9f38442a2ea5669956c9ffc2b7e4698ae7e99be + value: quay.io/konflux-ci/tekton-catalog/task-sast-unicode-check-oci-ta:0.3@sha256:1833c618170ab9deb8455667f220df8e88d16ccd630a2361366f594e2bdcb712 - name: kind value: task resolver: bundles From 5229ffb91f9f05ca8fc592ca89d9ed2b5842e635 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Wed, 22 Oct 2025 12:59:20 +0000 Subject: [PATCH 68/83] Red Hat Konflux update cert-manager-operator-bundle-1-17 Signed-off-by: red-hat-konflux --- ...rt-manager-operator-bundle-1-17-pull-request.yaml | 12 ++++++------ .tekton/cert-manager-operator-bundle-1-17-push.yaml | 12 ++++++------ 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml index 36394cc74..887f974f8 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml @@ -132,7 +132,7 @@ spec: - name: name value: init - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-init:0.2@sha256:bbf313b09740fb39b3343bc69ee94b2a2c21d16a9304f9b7c111c305558fc346 + value: quay.io/konflux-ci/tekton-catalog/task-init:0.2@sha256:3ca52e1d8885fc229bd9067275f44d5b21a9a609981d0324b525ddeca909bf10 - name: kind value: task resolver: bundles @@ -153,7 +153,7 @@ spec: - name: name value: git-clone-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-git-clone-oci-ta:0.1@sha256:3a920a83fc0135aaae2730fe9d446eb2da2ffc9d63a34bceea04afd24653bdee + value: quay.io/konflux-ci/tekton-catalog/task-git-clone-oci-ta:0.1@sha256:bb2f8f1edec47faa08c1929f2ffc6748f3a96af9644e6c40000081c6ff3ec894 - name: kind value: task resolver: bundles @@ -182,7 +182,7 @@ spec: - name: name value: prefetch-dependencies-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:970285e3b0495961199523b566e0dd92ec2e29bedbcf61d8fc67106b06d0f923 + value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:0503f9313dfe70e4defda88a7226ec91a74af42198dccfa3280397d965aa16d6 - name: kind value: task resolver: bundles @@ -229,7 +229,7 @@ spec: - name: name value: buildah-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.6@sha256:7b4c101b71e48b267079a5b6331d22de0b25e008c9e1dcaca1c41c4312391e39 + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.6@sha256:80c6d4217aab2344511e4cf18ae7570878e411b1c40e5369a26263cf4adcef30 - name: kind value: task resolver: bundles @@ -286,7 +286,7 @@ spec: - name: name value: source-build-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-source-build-oci-ta:0.3@sha256:2a290f91fdccf4c9ef726a1605163bc14904e1dbf9837ac6d2621caddd10f98e + value: quay.io/konflux-ci/tekton-catalog/task-source-build-oci-ta:0.3@sha256:5f9069a07a6dc16aae7a05adf49d2b6792815f3fabd116377578860743f4e0ec - name: kind value: task resolver: bundles @@ -565,7 +565,7 @@ spec: - name: name value: push-dockerfile-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-push-dockerfile-oci-ta:0.1@sha256:14fba04580b236e4206a904b86ee2fd8eeaa4163f7619a9c2602d361e4f74c51 + value: quay.io/konflux-ci/tekton-catalog/task-push-dockerfile-oci-ta:0.1@sha256:738e6e2108bee5b50309a37b54bc1adf8433ac63598dbb6830d6cb4ac65d9de6 - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-17-push.yaml b/.tekton/cert-manager-operator-bundle-1-17-push.yaml index d5b04eac2..7510f0b46 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-push.yaml @@ -129,7 +129,7 @@ spec: - name: name value: init - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-init:0.2@sha256:bbf313b09740fb39b3343bc69ee94b2a2c21d16a9304f9b7c111c305558fc346 + value: quay.io/konflux-ci/tekton-catalog/task-init:0.2@sha256:3ca52e1d8885fc229bd9067275f44d5b21a9a609981d0324b525ddeca909bf10 - name: kind value: task resolver: bundles @@ -150,7 +150,7 @@ spec: - name: name value: git-clone-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-git-clone-oci-ta:0.1@sha256:3a920a83fc0135aaae2730fe9d446eb2da2ffc9d63a34bceea04afd24653bdee + value: quay.io/konflux-ci/tekton-catalog/task-git-clone-oci-ta:0.1@sha256:bb2f8f1edec47faa08c1929f2ffc6748f3a96af9644e6c40000081c6ff3ec894 - name: kind value: task resolver: bundles @@ -179,7 +179,7 @@ spec: - name: name value: prefetch-dependencies-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:970285e3b0495961199523b566e0dd92ec2e29bedbcf61d8fc67106b06d0f923 + value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:0503f9313dfe70e4defda88a7226ec91a74af42198dccfa3280397d965aa16d6 - name: kind value: task resolver: bundles @@ -226,7 +226,7 @@ spec: - name: name value: buildah-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.6@sha256:7b4c101b71e48b267079a5b6331d22de0b25e008c9e1dcaca1c41c4312391e39 + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.6@sha256:80c6d4217aab2344511e4cf18ae7570878e411b1c40e5369a26263cf4adcef30 - name: kind value: task resolver: bundles @@ -283,7 +283,7 @@ spec: - name: name value: source-build-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-source-build-oci-ta:0.3@sha256:2a290f91fdccf4c9ef726a1605163bc14904e1dbf9837ac6d2621caddd10f98e + value: quay.io/konflux-ci/tekton-catalog/task-source-build-oci-ta:0.3@sha256:5f9069a07a6dc16aae7a05adf49d2b6792815f3fabd116377578860743f4e0ec - name: kind value: task resolver: bundles @@ -562,7 +562,7 @@ spec: - name: name value: push-dockerfile-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-push-dockerfile-oci-ta:0.1@sha256:14fba04580b236e4206a904b86ee2fd8eeaa4163f7619a9c2602d361e4f74c51 + value: quay.io/konflux-ci/tekton-catalog/task-push-dockerfile-oci-ta:0.1@sha256:738e6e2108bee5b50309a37b54bc1adf8433ac63598dbb6830d6cb4ac65d9de6 - name: kind value: task resolver: bundles From dc256d3cef35d387c6e5cee65141bb1d0f061e38 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Fri, 24 Oct 2025 20:02:58 +0000 Subject: [PATCH 69/83] Red Hat Konflux update cert-manager-operator-bundle-1-17 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-17-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-17-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml index 887f974f8..6fd0f1d8d 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml @@ -229,7 +229,7 @@ spec: - name: name value: buildah-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.6@sha256:80c6d4217aab2344511e4cf18ae7570878e411b1c40e5369a26263cf4adcef30 + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.6@sha256:b990178b6bf21c353e1567fe1a66d1472f7f4a862f003cf8d5b31d1caa3c43d6 - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-17-push.yaml b/.tekton/cert-manager-operator-bundle-1-17-push.yaml index 7510f0b46..fee04825f 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-push.yaml @@ -226,7 +226,7 @@ spec: - name: name value: buildah-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.6@sha256:80c6d4217aab2344511e4cf18ae7570878e411b1c40e5369a26263cf4adcef30 + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.6@sha256:b990178b6bf21c353e1567fe1a66d1472f7f4a862f003cf8d5b31d1caa3c43d6 - name: kind value: task resolver: bundles From c994c217a831ba55681ab7d82bb5a1318989fe73 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Sun, 26 Oct 2025 18:09:21 +0000 Subject: [PATCH 70/83] Red Hat Konflux update cert-manager-operator-bundle-1-17 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-17-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-17-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml index 6fd0f1d8d..4b3833380 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml @@ -582,7 +582,7 @@ spec: - name: name value: rpms-signature-scan - name: bundle - value: quay.io/konflux-ci/konflux-vanguard/task-rpms-signature-scan:0.2@sha256:06977232e67509e5540528ff6c3b081b23fc5bf3e40fb3e2d09a086d5c3243fc + value: quay.io/konflux-ci/konflux-vanguard/task-rpms-signature-scan:0.2@sha256:57d9107fe4708b503f494cf4362fef770623fdb300641811f23a975cd597b024 - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-17-push.yaml b/.tekton/cert-manager-operator-bundle-1-17-push.yaml index fee04825f..a068edf7b 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-push.yaml @@ -579,7 +579,7 @@ spec: - name: name value: rpms-signature-scan - name: bundle - value: quay.io/konflux-ci/konflux-vanguard/task-rpms-signature-scan:0.2@sha256:06977232e67509e5540528ff6c3b081b23fc5bf3e40fb3e2d09a086d5c3243fc + value: quay.io/konflux-ci/konflux-vanguard/task-rpms-signature-scan:0.2@sha256:57d9107fe4708b503f494cf4362fef770623fdb300641811f23a975cd597b024 - name: kind value: task resolver: bundles From 94c71ba2d4a94a8ed7674ea7441b60ab3517e602 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Mon, 27 Oct 2025 14:23:58 +0000 Subject: [PATCH 71/83] Red Hat Konflux update cert-manager-operator-bundle-1-17 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-17-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-17-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml index 4b3833380..f0efab75c 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml @@ -582,7 +582,7 @@ spec: - name: name value: rpms-signature-scan - name: bundle - value: quay.io/konflux-ci/konflux-vanguard/task-rpms-signature-scan:0.2@sha256:57d9107fe4708b503f494cf4362fef770623fdb300641811f23a975cd597b024 + value: quay.io/konflux-ci/konflux-vanguard/task-rpms-signature-scan:0.2@sha256:3d9fbf2c0a732f736b050c293380b63c8c72ab38d0ef79fcf9d1b7d8fcd25efb - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-17-push.yaml b/.tekton/cert-manager-operator-bundle-1-17-push.yaml index a068edf7b..535bdb14b 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-push.yaml @@ -579,7 +579,7 @@ spec: - name: name value: rpms-signature-scan - name: bundle - value: quay.io/konflux-ci/konflux-vanguard/task-rpms-signature-scan:0.2@sha256:57d9107fe4708b503f494cf4362fef770623fdb300641811f23a975cd597b024 + value: quay.io/konflux-ci/konflux-vanguard/task-rpms-signature-scan:0.2@sha256:3d9fbf2c0a732f736b050c293380b63c8c72ab38d0ef79fcf9d1b7d8fcd25efb - name: kind value: task resolver: bundles From 883404d4e3cb5dfb94617f18f7f7b14c21d41690 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Wed, 29 Oct 2025 13:51:20 +0000 Subject: [PATCH 72/83] Red Hat Konflux update cert-manager-operator-bundle-1-17 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-17-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-17-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml index f0efab75c..040350b57 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml @@ -153,7 +153,7 @@ spec: - name: name value: git-clone-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-git-clone-oci-ta:0.1@sha256:bb2f8f1edec47faa08c1929f2ffc6748f3a96af9644e6c40000081c6ff3ec894 + value: quay.io/konflux-ci/tekton-catalog/task-git-clone-oci-ta:0.1@sha256:8e6a06fcdd13bc3e1733070df3ea98a9498ee7596a60c7386ed4577779d79c42 - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-17-push.yaml b/.tekton/cert-manager-operator-bundle-1-17-push.yaml index 535bdb14b..5f632760f 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-push.yaml @@ -150,7 +150,7 @@ spec: - name: name value: git-clone-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-git-clone-oci-ta:0.1@sha256:bb2f8f1edec47faa08c1929f2ffc6748f3a96af9644e6c40000081c6ff3ec894 + value: quay.io/konflux-ci/tekton-catalog/task-git-clone-oci-ta:0.1@sha256:8e6a06fcdd13bc3e1733070df3ea98a9498ee7596a60c7386ed4577779d79c42 - name: kind value: task resolver: bundles From 2bdb43acbf804252550a9a44c7f165b0b391d163 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Wed, 29 Oct 2025 23:24:04 +0000 Subject: [PATCH 73/83] Red Hat Konflux update cert-manager-operator-bundle-1-17 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-17-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-17-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml index 040350b57..d70f052b3 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml @@ -229,7 +229,7 @@ spec: - name: name value: buildah-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.6@sha256:b990178b6bf21c353e1567fe1a66d1472f7f4a862f003cf8d5b31d1caa3c43d6 + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.6@sha256:439aa5083446dcf8900ac477f899e657d85af1fd95f30a5f59d0f849dbdb1d7e - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-17-push.yaml b/.tekton/cert-manager-operator-bundle-1-17-push.yaml index 5f632760f..7cc178a88 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-push.yaml @@ -226,7 +226,7 @@ spec: - name: name value: buildah-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.6@sha256:b990178b6bf21c353e1567fe1a66d1472f7f4a862f003cf8d5b31d1caa3c43d6 + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.6@sha256:439aa5083446dcf8900ac477f899e657d85af1fd95f30a5f59d0f849dbdb1d7e - name: kind value: task resolver: bundles From 5c97914eeeb24914a8b5b5ad607cbfc706674924 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Thu, 30 Oct 2025 12:47:15 +0000 Subject: [PATCH 74/83] Red Hat Konflux update cert-manager-operator-bundle-1-17 Signed-off-by: red-hat-konflux --- ...rt-manager-operator-bundle-1-17-pull-request.yaml | 12 ++++++------ .tekton/cert-manager-operator-bundle-1-17-push.yaml | 12 ++++++------ 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml index d70f052b3..104f632b1 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml @@ -153,7 +153,7 @@ spec: - name: name value: git-clone-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-git-clone-oci-ta:0.1@sha256:8e6a06fcdd13bc3e1733070df3ea98a9498ee7596a60c7386ed4577779d79c42 + value: quay.io/konflux-ci/tekton-catalog/task-git-clone-oci-ta:0.1@sha256:3dc39eae48745a96097c07c577b944d6203a91c35d3f71d9ed5feab41d327a6a - name: kind value: task resolver: bundles @@ -229,7 +229,7 @@ spec: - name: name value: buildah-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.6@sha256:439aa5083446dcf8900ac477f899e657d85af1fd95f30a5f59d0f849dbdb1d7e + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.6@sha256:acf743a3caec54be0f7d29f0f40e10d64255aa1cf0d22e2c363c1ad0e5206434 - name: kind value: task resolver: bundles @@ -260,7 +260,7 @@ spec: - name: name value: build-image-index - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:d94cad7f41be61074dd21c7dff26dab9217c3435a16f62813c1cb8382dd9aae6 + value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:5da3230a9ecfc5aa58f3e2224327d38d7b4556bda98ea77c6e7b0e80ac1353ad - name: kind value: task resolver: bundles @@ -286,7 +286,7 @@ spec: - name: name value: source-build-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-source-build-oci-ta:0.3@sha256:5f9069a07a6dc16aae7a05adf49d2b6792815f3fabd116377578860743f4e0ec + value: quay.io/konflux-ci/tekton-catalog/task-source-build-oci-ta:0.3@sha256:282cb5a9119a87e88559444feff67d76d6f356d03654b4845632c049b2314735 - name: kind value: task resolver: bundles @@ -565,7 +565,7 @@ spec: - name: name value: push-dockerfile-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-push-dockerfile-oci-ta:0.1@sha256:738e6e2108bee5b50309a37b54bc1adf8433ac63598dbb6830d6cb4ac65d9de6 + value: quay.io/konflux-ci/tekton-catalog/task-push-dockerfile-oci-ta:0.1@sha256:13633d5ba8445c0f732a0a5d1b33ffbb708398e45ef1647542b0ab22fee25a6a - name: kind value: task resolver: bundles @@ -582,7 +582,7 @@ spec: - name: name value: rpms-signature-scan - name: bundle - value: quay.io/konflux-ci/konflux-vanguard/task-rpms-signature-scan:0.2@sha256:3d9fbf2c0a732f736b050c293380b63c8c72ab38d0ef79fcf9d1b7d8fcd25efb + value: quay.io/konflux-ci/konflux-vanguard/task-rpms-signature-scan:0.2@sha256:3d016c63bcab64ab82da762a52b013c0bcb534e9523b8c0e073cc3a0c02f0cac - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-17-push.yaml b/.tekton/cert-manager-operator-bundle-1-17-push.yaml index 7cc178a88..a72a169e9 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-push.yaml @@ -150,7 +150,7 @@ spec: - name: name value: git-clone-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-git-clone-oci-ta:0.1@sha256:8e6a06fcdd13bc3e1733070df3ea98a9498ee7596a60c7386ed4577779d79c42 + value: quay.io/konflux-ci/tekton-catalog/task-git-clone-oci-ta:0.1@sha256:3dc39eae48745a96097c07c577b944d6203a91c35d3f71d9ed5feab41d327a6a - name: kind value: task resolver: bundles @@ -226,7 +226,7 @@ spec: - name: name value: buildah-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.6@sha256:439aa5083446dcf8900ac477f899e657d85af1fd95f30a5f59d0f849dbdb1d7e + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.6@sha256:acf743a3caec54be0f7d29f0f40e10d64255aa1cf0d22e2c363c1ad0e5206434 - name: kind value: task resolver: bundles @@ -257,7 +257,7 @@ spec: - name: name value: build-image-index - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:d94cad7f41be61074dd21c7dff26dab9217c3435a16f62813c1cb8382dd9aae6 + value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:5da3230a9ecfc5aa58f3e2224327d38d7b4556bda98ea77c6e7b0e80ac1353ad - name: kind value: task resolver: bundles @@ -283,7 +283,7 @@ spec: - name: name value: source-build-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-source-build-oci-ta:0.3@sha256:5f9069a07a6dc16aae7a05adf49d2b6792815f3fabd116377578860743f4e0ec + value: quay.io/konflux-ci/tekton-catalog/task-source-build-oci-ta:0.3@sha256:282cb5a9119a87e88559444feff67d76d6f356d03654b4845632c049b2314735 - name: kind value: task resolver: bundles @@ -562,7 +562,7 @@ spec: - name: name value: push-dockerfile-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-push-dockerfile-oci-ta:0.1@sha256:738e6e2108bee5b50309a37b54bc1adf8433ac63598dbb6830d6cb4ac65d9de6 + value: quay.io/konflux-ci/tekton-catalog/task-push-dockerfile-oci-ta:0.1@sha256:13633d5ba8445c0f732a0a5d1b33ffbb708398e45ef1647542b0ab22fee25a6a - name: kind value: task resolver: bundles @@ -579,7 +579,7 @@ spec: - name: name value: rpms-signature-scan - name: bundle - value: quay.io/konflux-ci/konflux-vanguard/task-rpms-signature-scan:0.2@sha256:3d9fbf2c0a732f736b050c293380b63c8c72ab38d0ef79fcf9d1b7d8fcd25efb + value: quay.io/konflux-ci/konflux-vanguard/task-rpms-signature-scan:0.2@sha256:3d016c63bcab64ab82da762a52b013c0bcb534e9523b8c0e073cc3a0c02f0cac - name: kind value: task resolver: bundles From 47ecae1b6fba21e023b10ab0d8c710e2d520d980 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Fri, 31 Oct 2025 21:16:39 +0000 Subject: [PATCH 75/83] Red Hat Konflux update cert-manager-operator-bundle-1-17 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-17-pull-request.yaml | 4 ++-- .tekton/cert-manager-operator-bundle-1-17-push.yaml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml index 104f632b1..d57506c05 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml @@ -229,7 +229,7 @@ spec: - name: name value: buildah-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.6@sha256:acf743a3caec54be0f7d29f0f40e10d64255aa1cf0d22e2c363c1ad0e5206434 + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.6@sha256:220bb6f39de7ab7d0ee0606c84623889e4141f2d216f519ffafc7252355bd174 - name: kind value: task resolver: bundles @@ -260,7 +260,7 @@ spec: - name: name value: build-image-index - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:5da3230a9ecfc5aa58f3e2224327d38d7b4556bda98ea77c6e7b0e80ac1353ad + value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:d4c07e29fbd9a7bdcec58b2ad15b656316f935a9009ea387adcb413aa3cd8ecd - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-17-push.yaml b/.tekton/cert-manager-operator-bundle-1-17-push.yaml index a72a169e9..42792f08d 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-push.yaml @@ -226,7 +226,7 @@ spec: - name: name value: buildah-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.6@sha256:acf743a3caec54be0f7d29f0f40e10d64255aa1cf0d22e2c363c1ad0e5206434 + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.6@sha256:220bb6f39de7ab7d0ee0606c84623889e4141f2d216f519ffafc7252355bd174 - name: kind value: task resolver: bundles @@ -257,7 +257,7 @@ spec: - name: name value: build-image-index - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:5da3230a9ecfc5aa58f3e2224327d38d7b4556bda98ea77c6e7b0e80ac1353ad + value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:d4c07e29fbd9a7bdcec58b2ad15b656316f935a9009ea387adcb413aa3cd8ecd - name: kind value: task resolver: bundles From aec6eb7ea530b7323fb309e0a10bd3540f0eff17 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Mon, 3 Nov 2025 13:22:46 +0000 Subject: [PATCH 76/83] Red Hat Konflux update cert-manager-operator-bundle-1-17 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-17-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-17-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml index d57506c05..2aee10a49 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml @@ -229,7 +229,7 @@ spec: - name: name value: buildah-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.6@sha256:220bb6f39de7ab7d0ee0606c84623889e4141f2d216f519ffafc7252355bd174 + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.6@sha256:1e80f0991c3605be4e56ebbabb5934b203140147faed8350dd9f8182ec765c0d - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-17-push.yaml b/.tekton/cert-manager-operator-bundle-1-17-push.yaml index 42792f08d..19a746508 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-push.yaml @@ -226,7 +226,7 @@ spec: - name: name value: buildah-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.6@sha256:220bb6f39de7ab7d0ee0606c84623889e4141f2d216f519ffafc7252355bd174 + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.6@sha256:1e80f0991c3605be4e56ebbabb5934b203140147faed8350dd9f8182ec765c0d - name: kind value: task resolver: bundles From 756122d8ceb4439c695a8e65ba68cdb8b92219ad Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Tue, 4 Nov 2025 01:08:47 +0000 Subject: [PATCH 77/83] Red Hat Konflux update cert-manager-operator-bundle-1-17 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-17-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-17-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml index 2aee10a49..72ed19836 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml @@ -468,7 +468,7 @@ spec: - name: name value: coverity-availability-check - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-coverity-availability-check:0.2@sha256:36bcf1531b85c2c7d7b4382bc0a9c61b0501e2e54e84991b11b225bdec0e5928 + value: quay.io/konflux-ci/tekton-catalog/task-coverity-availability-check:0.2@sha256:5623e48314ffd583e9cab383011dc0763b6c92b09c4f427b8bfcca885394a21c - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-17-push.yaml b/.tekton/cert-manager-operator-bundle-1-17-push.yaml index 19a746508..e932a870a 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-push.yaml @@ -465,7 +465,7 @@ spec: - name: name value: coverity-availability-check - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-coverity-availability-check:0.2@sha256:36bcf1531b85c2c7d7b4382bc0a9c61b0501e2e54e84991b11b225bdec0e5928 + value: quay.io/konflux-ci/tekton-catalog/task-coverity-availability-check:0.2@sha256:5623e48314ffd583e9cab383011dc0763b6c92b09c4f427b8bfcca885394a21c - name: kind value: task resolver: bundles From 014335ae74d6d8df5a7299e0af8b93b370a4846e Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Wed, 5 Nov 2025 20:36:33 +0000 Subject: [PATCH 78/83] Red Hat Konflux update cert-manager-operator-bundle-1-17 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-17-pull-request.yaml | 6 +++--- .tekton/cert-manager-operator-bundle-1-17-push.yaml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml index 72ed19836..32fe6fbc3 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml @@ -229,7 +229,7 @@ spec: - name: name value: buildah-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.6@sha256:1e80f0991c3605be4e56ebbabb5934b203140147faed8350dd9f8182ec765c0d + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.6@sha256:104b14564927e973ae1dae2a8be8d35088dcbced7ba9fbde539e09e78fec142d - name: kind value: task resolver: bundles @@ -260,7 +260,7 @@ spec: - name: name value: build-image-index - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:d4c07e29fbd9a7bdcec58b2ad15b656316f935a9009ea387adcb413aa3cd8ecd + value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:6978c3abadd6d86010b6fbb376cd6b69356bf6d4415a9a88af2d55e720ffa3ce - name: kind value: task resolver: bundles @@ -542,7 +542,7 @@ spec: - name: name value: apply-tags - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-apply-tags:0.2@sha256:f44be1bf0262471f2f503f5e19da5f0628dcaf968c86272a2ad6b4871e708448 + value: quay.io/konflux-ci/tekton-catalog/task-apply-tags:0.2@sha256:55fc1eded400e29ff47eccd212ca42461c7e614b8ce3448d6482f9ae84b0e6cd - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-17-push.yaml b/.tekton/cert-manager-operator-bundle-1-17-push.yaml index e932a870a..4929ca6e2 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-push.yaml @@ -226,7 +226,7 @@ spec: - name: name value: buildah-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.6@sha256:1e80f0991c3605be4e56ebbabb5934b203140147faed8350dd9f8182ec765c0d + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.6@sha256:104b14564927e973ae1dae2a8be8d35088dcbced7ba9fbde539e09e78fec142d - name: kind value: task resolver: bundles @@ -257,7 +257,7 @@ spec: - name: name value: build-image-index - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:d4c07e29fbd9a7bdcec58b2ad15b656316f935a9009ea387adcb413aa3cd8ecd + value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:6978c3abadd6d86010b6fbb376cd6b69356bf6d4415a9a88af2d55e720ffa3ce - name: kind value: task resolver: bundles @@ -539,7 +539,7 @@ spec: - name: name value: apply-tags - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-apply-tags:0.2@sha256:f44be1bf0262471f2f503f5e19da5f0628dcaf968c86272a2ad6b4871e708448 + value: quay.io/konflux-ci/tekton-catalog/task-apply-tags:0.2@sha256:55fc1eded400e29ff47eccd212ca42461c7e614b8ce3448d6482f9ae84b0e6cd - name: kind value: task resolver: bundles From ffba9ffb0e358a620eda27a72f2009296d4206d8 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Thu, 6 Nov 2025 11:37:48 +0000 Subject: [PATCH 79/83] Red Hat Konflux update cert-manager-operator-bundle-1-17 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-17-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-17-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml index 32fe6fbc3..a4528b99b 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml @@ -582,7 +582,7 @@ spec: - name: name value: rpms-signature-scan - name: bundle - value: quay.io/konflux-ci/konflux-vanguard/task-rpms-signature-scan:0.2@sha256:3d016c63bcab64ab82da762a52b013c0bcb534e9523b8c0e073cc3a0c02f0cac + value: quay.io/konflux-ci/konflux-vanguard/task-rpms-signature-scan:0.2@sha256:9c3a523814410046412abc09beb6f10082fecc56eb6d3386f6a6df305e5e011e - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-17-push.yaml b/.tekton/cert-manager-operator-bundle-1-17-push.yaml index 4929ca6e2..21a5513c5 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-push.yaml @@ -579,7 +579,7 @@ spec: - name: name value: rpms-signature-scan - name: bundle - value: quay.io/konflux-ci/konflux-vanguard/task-rpms-signature-scan:0.2@sha256:3d016c63bcab64ab82da762a52b013c0bcb534e9523b8c0e073cc3a0c02f0cac + value: quay.io/konflux-ci/konflux-vanguard/task-rpms-signature-scan:0.2@sha256:9c3a523814410046412abc09beb6f10082fecc56eb6d3386f6a6df305e5e011e - name: kind value: task resolver: bundles From a3b8fa9f2890358c3c78364a229e5bf3d554fcad Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Thu, 6 Nov 2025 14:13:55 +0000 Subject: [PATCH 80/83] Red Hat Konflux update cert-manager-operator-bundle-1-17 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-17-pull-request.yaml | 6 +++--- .tekton/cert-manager-operator-bundle-1-17-push.yaml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml index a4528b99b..55f19427c 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml @@ -229,7 +229,7 @@ spec: - name: name value: buildah-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.6@sha256:104b14564927e973ae1dae2a8be8d35088dcbced7ba9fbde539e09e78fec142d + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.6@sha256:5d78db97364d865e3e5549daca83c7130bb53a25ca3b5fbd1290a054ef66f138 - name: kind value: task resolver: bundles @@ -260,7 +260,7 @@ spec: - name: name value: build-image-index - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:6978c3abadd6d86010b6fbb376cd6b69356bf6d4415a9a88af2d55e720ffa3ce + value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:60ca793e71ba7abdf024278d6ffe12f35f292ddca3031e3ef2a3f2711203448d - name: kind value: task resolver: bundles @@ -542,7 +542,7 @@ spec: - name: name value: apply-tags - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-apply-tags:0.2@sha256:55fc1eded400e29ff47eccd212ca42461c7e614b8ce3448d6482f9ae84b0e6cd + value: quay.io/konflux-ci/tekton-catalog/task-apply-tags:0.2@sha256:4c2b0a2d2904108f8d19edfa878df6cd49ed19aab73ab6fc6a435fba0265f771 - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-17-push.yaml b/.tekton/cert-manager-operator-bundle-1-17-push.yaml index 21a5513c5..ff9b554e9 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-push.yaml @@ -226,7 +226,7 @@ spec: - name: name value: buildah-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.6@sha256:104b14564927e973ae1dae2a8be8d35088dcbced7ba9fbde539e09e78fec142d + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.6@sha256:5d78db97364d865e3e5549daca83c7130bb53a25ca3b5fbd1290a054ef66f138 - name: kind value: task resolver: bundles @@ -257,7 +257,7 @@ spec: - name: name value: build-image-index - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:6978c3abadd6d86010b6fbb376cd6b69356bf6d4415a9a88af2d55e720ffa3ce + value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:60ca793e71ba7abdf024278d6ffe12f35f292ddca3031e3ef2a3f2711203448d - name: kind value: task resolver: bundles @@ -539,7 +539,7 @@ spec: - name: name value: apply-tags - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-apply-tags:0.2@sha256:55fc1eded400e29ff47eccd212ca42461c7e614b8ce3448d6482f9ae84b0e6cd + value: quay.io/konflux-ci/tekton-catalog/task-apply-tags:0.2@sha256:4c2b0a2d2904108f8d19edfa878df6cd49ed19aab73ab6fc6a435fba0265f771 - name: kind value: task resolver: bundles From 2a3ed53faa47df5238116ef038f84c50c0809339 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Thu, 6 Nov 2025 18:13:48 +0000 Subject: [PATCH 81/83] Red Hat Konflux update cert-manager-operator-bundle-1-17 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-17-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-17-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml index 55f19427c..03ef2c4a6 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml @@ -229,7 +229,7 @@ spec: - name: name value: buildah-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.6@sha256:5d78db97364d865e3e5549daca83c7130bb53a25ca3b5fbd1290a054ef66f138 + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.6@sha256:13118df28376af6be87e0be92ee5e43877887e3123b9ef2ecac6af12e0ed3a4b - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-17-push.yaml b/.tekton/cert-manager-operator-bundle-1-17-push.yaml index ff9b554e9..3a6fb9a09 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-push.yaml @@ -226,7 +226,7 @@ spec: - name: name value: buildah-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.6@sha256:5d78db97364d865e3e5549daca83c7130bb53a25ca3b5fbd1290a054ef66f138 + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.6@sha256:13118df28376af6be87e0be92ee5e43877887e3123b9ef2ecac6af12e0ed3a4b - name: kind value: task resolver: bundles From b0831b43b3b19dc3f8c3823e112382f5468a1551 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Fri, 7 Nov 2025 15:53:14 +0000 Subject: [PATCH 82/83] Red Hat Konflux update cert-manager-operator-bundle-1-17 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-17-pull-request.yaml | 6 +++--- .tekton/cert-manager-operator-bundle-1-17-push.yaml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml index 03ef2c4a6..445ec1779 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml @@ -182,7 +182,7 @@ spec: - name: name value: prefetch-dependencies-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:0503f9313dfe70e4defda88a7226ec91a74af42198dccfa3280397d965aa16d6 + value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:569165278e3c85e3b897abad9f6d714d76be4b061f44f5f7614ed1c83ad117b4 - name: kind value: task resolver: bundles @@ -229,7 +229,7 @@ spec: - name: name value: buildah-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.6@sha256:13118df28376af6be87e0be92ee5e43877887e3123b9ef2ecac6af12e0ed3a4b + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.6@sha256:27d5644c496e889680422ee4383d4653d7a52972e42de2d9f9fd63cdcf94d998 - name: kind value: task resolver: bundles @@ -260,7 +260,7 @@ spec: - name: name value: build-image-index - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:60ca793e71ba7abdf024278d6ffe12f35f292ddca3031e3ef2a3f2711203448d + value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:3411aeecdf045f8e61532abb88c28b7479cb8372420ac713f1f6756aa8fa843a - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-17-push.yaml b/.tekton/cert-manager-operator-bundle-1-17-push.yaml index 3a6fb9a09..54595c829 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-push.yaml @@ -179,7 +179,7 @@ spec: - name: name value: prefetch-dependencies-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:0503f9313dfe70e4defda88a7226ec91a74af42198dccfa3280397d965aa16d6 + value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:569165278e3c85e3b897abad9f6d714d76be4b061f44f5f7614ed1c83ad117b4 - name: kind value: task resolver: bundles @@ -226,7 +226,7 @@ spec: - name: name value: buildah-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.6@sha256:13118df28376af6be87e0be92ee5e43877887e3123b9ef2ecac6af12e0ed3a4b + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.6@sha256:27d5644c496e889680422ee4383d4653d7a52972e42de2d9f9fd63cdcf94d998 - name: kind value: task resolver: bundles @@ -257,7 +257,7 @@ spec: - name: name value: build-image-index - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:60ca793e71ba7abdf024278d6ffe12f35f292ddca3031e3ef2a3f2711203448d + value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:3411aeecdf045f8e61532abb88c28b7479cb8372420ac713f1f6756aa8fa843a - name: kind value: task resolver: bundles From 92841f945fd3d73242bb5da023be7f914c4fe373 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Sun, 9 Nov 2025 11:13:47 +0000 Subject: [PATCH 83/83] Red Hat Konflux update cert-manager-operator-bundle-1-17 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-17-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-17-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml index 445ec1779..4e4376e38 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-pull-request.yaml @@ -582,7 +582,7 @@ spec: - name: name value: rpms-signature-scan - name: bundle - value: quay.io/konflux-ci/konflux-vanguard/task-rpms-signature-scan:0.2@sha256:9c3a523814410046412abc09beb6f10082fecc56eb6d3386f6a6df305e5e011e + value: quay.io/konflux-ci/konflux-vanguard/task-rpms-signature-scan:0.2@sha256:da66f14b1a3f2c2ec1e02a3183941ee4230ea4ac4a36515342c97bdb2fe905e0 - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-17-push.yaml b/.tekton/cert-manager-operator-bundle-1-17-push.yaml index 54595c829..80043ee3a 100644 --- a/.tekton/cert-manager-operator-bundle-1-17-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-17-push.yaml @@ -579,7 +579,7 @@ spec: - name: name value: rpms-signature-scan - name: bundle - value: quay.io/konflux-ci/konflux-vanguard/task-rpms-signature-scan:0.2@sha256:9c3a523814410046412abc09beb6f10082fecc56eb6d3386f6a6df305e5e011e + value: quay.io/konflux-ci/konflux-vanguard/task-rpms-signature-scan:0.2@sha256:da66f14b1a3f2c2ec1e02a3183941ee4230ea4ac4a36515342c97bdb2fe905e0 - name: kind value: task resolver: bundles