From 6eb6d5b23e2c3903f9e2a2e1a92cf48845047e9a Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Fri, 9 May 2025 12:33:23 +0000 Subject: [PATCH 01/93] Red Hat Konflux update cert-manager-operator-bundle-1-14 Signed-off-by: red-hat-konflux --- ...ger-operator-bundle-1-14-pull-request.yaml | 584 +++++++++++++++++- ...ert-manager-operator-bundle-1-14-push.yaml | 584 +++++++++++++++++- 2 files changed, 1136 insertions(+), 32 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml index f83ca3fc..768ceffa 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml @@ -3,16 +3,13 @@ kind: PipelineRun metadata: annotations: build.appstudio.openshift.io/repo: https://github.com/openshift/cert-manager-operator-release?rev={{revision}} - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-oci-ta","bundle":"latest"}' - build.appstudio.openshift.io/request: "configure-pac" build.appstudio.redhat.com/commit_sha: '{{revision}}' build.appstudio.redhat.com/pull_request_number: '{{pull_request_number}}' build.appstudio.redhat.com/target_branch: '{{target_branch}}' + 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.14" && - (".tekton/cert-manager-operator-bundle-1-14-pull-request.yaml".pathChanged() || - "Containerfile.cert-manager-operator.bundle".pathChanged() || "hack/bundle/render_templates.sh".pathChanged() || - "cert-manager-operator/***".pathChanged()) + pipelinesascode.tekton.dev/on-cel-expression: event == "pull_request" && target_branch + == "release-1.14" creationTimestamp: null labels: appstudio.openshift.io/application: cert-manager-operator-1-14 @@ -34,16 +31,571 @@ spec: value: Containerfile.cert-manager-operator.bundle - name: path-context value: . - - name: build-args - value: - - "RELEASE_VERSION=v1.14.2" - - "COMMIT_SHA={{revision}}" - - "SOURCE_URL={{source_url}}" - - name: prefetch-input - value: '{"type": "gomod", "path": "."}' - pipelineRef: - name: single-arch-build-pipeline - taskRunTemplate: {} + 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://enterprisecontract.dev/docs/ec-policies/release_policy.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:002f7c8c1d2f9e09904035da414aba1188ae091df0ea9532cd997be05e73d594 + - 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 + - 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:7a24924417260b7094541caaedd2853dc8da08d4bb0968f710a400d3e8062063 + - 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:8ecf57d5a6697ce709bee65b62781efe79a10b0c2b95e05576442b67fbd61744 + - 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:d48c621ae828a3cbca162e12ec166210d2d77a7ba23b0e5d60c4a1b94491adeb + - 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:b91b634c32b7fd98dbfc4cdbc0a97d7694997fd49ceebabf34c2535fd47f84a2 + - 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:462ecbf94ec44a8b770d6ef8838955f91f57ee79795e5c18bdc0fcb0df593742 + - 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: $(params.output-image) + - 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.2@sha256:56fa2cbfc04bad4765b7fe1fa8022587f4042d4e8533bb5f65311d46b43226ee + - 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:eb8136b543147b4a3e88ca3cc661ca6a11e303f35f0db44059f69151beea8496 + - 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:7c73e2beca9b8306387efeaf775831440ec799b05a5f5c008a65bb941a1e91f6 + - 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:dea8d9b4bec3e99d612d799798acf132df48276164b5193ea68f9f3c25ae425b + - 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:89aead32dc21404e4e0913be9668bdd2eea795db3e4caa762fb619044e479cb8 + - 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:59094118aa07d5b0199565c4e0b2d0f4feb9a4741877c8716877572e2c4804f9 + - 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:c8eb622d59019582f6f11ed656c0f04f388737f7dd6e47cd780ad0f34bb38bb2 + - 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:8b58c4fae00c0dfe3937abfb8a9a61aa3c408cca4278b817db53d518428d944e + - 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:57b3262138eb06186ae7375f84ca53788bba2a66cfd03d39cb82c78df050aba5 + - 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:df185dbe4e2852668f9c46f938dd752e90ea9c79696363378435a6499596c319 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: apply-tags + params: + - name: IMAGE + value: $(tasks.build-image-index.results.IMAGE_URL) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: apply-tags + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-apply-tags:0.1@sha256:3f89ba89cacf8547261b5ce064acce81bfe470c8ace127794d0e90aebc8c347d + - 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:278f84550844c1c050a65536799f4b54e7c203e0ac51393aa75379dd974c82e9 + - 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/tekton-catalog/task-rpms-signature-scan:0.2@sha256:2366b2f394610192736dd8edac1a702964daeb961603dfc9ceb6b8188e39a009 + - 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-14 workspaces: - name: git-auth secret: diff --git a/.tekton/cert-manager-operator-bundle-1-14-push.yaml b/.tekton/cert-manager-operator-bundle-1-14-push.yaml index 14b944ee..be1aad0a 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-push.yaml @@ -3,15 +3,12 @@ kind: PipelineRun metadata: annotations: build.appstudio.openshift.io/repo: https://github.com/openshift/cert-manager-operator-release?rev={{revision}} - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-oci-ta","bundle":"latest"}' - build.appstudio.openshift.io/request: "configure-pac" build.appstudio.redhat.com/commit_sha: '{{revision}}' build.appstudio.redhat.com/target_branch: '{{target_branch}}' + 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.14" && - (".tekton/cert-manager-operator-bundle-1-14-push.yaml".pathChanged() || - "Containerfile.cert-manager-operator.bundle".pathChanged() || "hack/bundle/render_templates.sh".pathChanged() || - "cert-manager-operator/***".pathChanged()) + pipelinesascode.tekton.dev/on-cel-expression: event == "push" && target_branch + == "release-1.14" creationTimestamp: null labels: appstudio.openshift.io/application: cert-manager-operator-1-14 @@ -31,16 +28,571 @@ spec: value: Containerfile.cert-manager-operator.bundle - name: path-context value: . - - name: build-args - value: - - "RELEASE_VERSION=v1.14.2" - - "COMMIT_SHA={{revision}}" - - "SOURCE_URL={{source_url}}" - - name: prefetch-input - value: '{"type": "gomod", "path": "."}' - pipelineRef: - name: single-arch-build-pipeline - taskRunTemplate: {} + 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://enterprisecontract.dev/docs/ec-policies/release_policy.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:002f7c8c1d2f9e09904035da414aba1188ae091df0ea9532cd997be05e73d594 + - 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 + - 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:7a24924417260b7094541caaedd2853dc8da08d4bb0968f710a400d3e8062063 + - 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:8ecf57d5a6697ce709bee65b62781efe79a10b0c2b95e05576442b67fbd61744 + - 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:d48c621ae828a3cbca162e12ec166210d2d77a7ba23b0e5d60c4a1b94491adeb + - 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:b91b634c32b7fd98dbfc4cdbc0a97d7694997fd49ceebabf34c2535fd47f84a2 + - 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:462ecbf94ec44a8b770d6ef8838955f91f57ee79795e5c18bdc0fcb0df593742 + - 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: $(params.output-image) + - 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.2@sha256:56fa2cbfc04bad4765b7fe1fa8022587f4042d4e8533bb5f65311d46b43226ee + - 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:eb8136b543147b4a3e88ca3cc661ca6a11e303f35f0db44059f69151beea8496 + - 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:7c73e2beca9b8306387efeaf775831440ec799b05a5f5c008a65bb941a1e91f6 + - 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:dea8d9b4bec3e99d612d799798acf132df48276164b5193ea68f9f3c25ae425b + - 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:89aead32dc21404e4e0913be9668bdd2eea795db3e4caa762fb619044e479cb8 + - 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:59094118aa07d5b0199565c4e0b2d0f4feb9a4741877c8716877572e2c4804f9 + - 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:c8eb622d59019582f6f11ed656c0f04f388737f7dd6e47cd780ad0f34bb38bb2 + - 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:8b58c4fae00c0dfe3937abfb8a9a61aa3c408cca4278b817db53d518428d944e + - 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:57b3262138eb06186ae7375f84ca53788bba2a66cfd03d39cb82c78df050aba5 + - 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:df185dbe4e2852668f9c46f938dd752e90ea9c79696363378435a6499596c319 + - name: kind + value: task + resolver: bundles + when: + - input: $(params.skip-checks) + operator: in + values: + - "false" + - name: apply-tags + params: + - name: IMAGE + value: $(tasks.build-image-index.results.IMAGE_URL) + runAfter: + - build-image-index + taskRef: + params: + - name: name + value: apply-tags + - name: bundle + value: quay.io/konflux-ci/tekton-catalog/task-apply-tags:0.1@sha256:3f89ba89cacf8547261b5ce064acce81bfe470c8ace127794d0e90aebc8c347d + - 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:278f84550844c1c050a65536799f4b54e7c203e0ac51393aa75379dd974c82e9 + - 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/tekton-catalog/task-rpms-signature-scan:0.2@sha256:2366b2f394610192736dd8edac1a702964daeb961603dfc9ceb6b8188e39a009 + - 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-14 workspaces: - name: git-auth secret: From bdf69cb3391a16c29fd42030238be511593a3572 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Fri, 9 May 2025 20:57:42 +0000 Subject: [PATCH 02/93] Red Hat Konflux update cert-manager-operator-bundle-1-14 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-14-pull-request.yaml | 4 ++-- .tekton/cert-manager-operator-bundle-1-14-push.yaml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml index 768ceffa..2f84ea0f 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml @@ -233,7 +233,7 @@ spec: - name: name value: buildah-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:b91b634c32b7fd98dbfc4cdbc0a97d7694997fd49ceebabf34c2535fd47f84a2 + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:6ac9d16f598c14a4b56e662eccda0a438e94aa8f87dd27a3ea0ff1abc6e00c66 - 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:c8eb622d59019582f6f11ed656c0f04f388737f7dd6e47cd780ad0f34bb38bb2 + value: quay.io/konflux-ci/tekton-catalog/task-sast-coverity-check-oci-ta:0.3@sha256:a9a3c472624d0598c28aaa67319e74a807ac1948946002dd7b181d200e672b8b - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-14-push.yaml b/.tekton/cert-manager-operator-bundle-1-14-push.yaml index be1aad0a..7776bb21 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-push.yaml @@ -230,7 +230,7 @@ spec: - name: name value: buildah-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:b91b634c32b7fd98dbfc4cdbc0a97d7694997fd49ceebabf34c2535fd47f84a2 + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:6ac9d16f598c14a4b56e662eccda0a438e94aa8f87dd27a3ea0ff1abc6e00c66 - 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:c8eb622d59019582f6f11ed656c0f04f388737f7dd6e47cd780ad0f34bb38bb2 + value: quay.io/konflux-ci/tekton-catalog/task-sast-coverity-check-oci-ta:0.3@sha256:a9a3c472624d0598c28aaa67319e74a807ac1948946002dd7b181d200e672b8b - name: kind value: task resolver: bundles From 370387dfcef54e0f0e24e9a46cd27f736063b5de Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Sun, 11 May 2025 14:01:52 +0000 Subject: [PATCH 03/93] Red Hat Konflux update cert-manager-operator-bundle-1-14 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-14-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-14-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml index 2f84ea0f..000fa019 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml @@ -580,7 +580,7 @@ spec: - name: name value: rpms-signature-scan - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-rpms-signature-scan:0.2@sha256:2366b2f394610192736dd8edac1a702964daeb961603dfc9ceb6b8188e39a009 + value: quay.io/konflux-ci/tekton-catalog/task-rpms-signature-scan:0.2@sha256:b32c66b96d911c657d54e0b4370fb861ce1d7e3719d98540eba65d942c0bf99e - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-14-push.yaml b/.tekton/cert-manager-operator-bundle-1-14-push.yaml index 7776bb21..8f9777e8 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-push.yaml @@ -577,7 +577,7 @@ spec: - name: name value: rpms-signature-scan - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-rpms-signature-scan:0.2@sha256:2366b2f394610192736dd8edac1a702964daeb961603dfc9ceb6b8188e39a009 + value: quay.io/konflux-ci/tekton-catalog/task-rpms-signature-scan:0.2@sha256:b32c66b96d911c657d54e0b4370fb861ce1d7e3719d98540eba65d942c0bf99e - name: kind value: task resolver: bundles From 4c8a1006f139f73e7468093e50e5a9796cef850d Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Mon, 12 May 2025 10:03:34 +0000 Subject: [PATCH 04/93] Red Hat Konflux update cert-manager-operator-bundle-1-14 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-14-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-14-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml index 000fa019..d1feafcc 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml @@ -580,7 +580,7 @@ spec: - name: name value: rpms-signature-scan - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-rpms-signature-scan:0.2@sha256:b32c66b96d911c657d54e0b4370fb861ce1d7e3719d98540eba65d942c0bf99e + value: quay.io/konflux-ci/tekton-catalog/task-rpms-signature-scan:0.2@sha256:297c2d8928aa3b114fcb1ba5d9da8b10226b68fed30706e78a6a5089c6cd30e3 - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-14-push.yaml b/.tekton/cert-manager-operator-bundle-1-14-push.yaml index 8f9777e8..18d916ce 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-push.yaml @@ -577,7 +577,7 @@ spec: - name: name value: rpms-signature-scan - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-rpms-signature-scan:0.2@sha256:b32c66b96d911c657d54e0b4370fb861ce1d7e3719d98540eba65d942c0bf99e + value: quay.io/konflux-ci/tekton-catalog/task-rpms-signature-scan:0.2@sha256:297c2d8928aa3b114fcb1ba5d9da8b10226b68fed30706e78a6a5089c6cd30e3 - name: kind value: task resolver: bundles From cb8957b2d35611c6d14ba983a5cee9f33cd9b628 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Mon, 12 May 2025 16:12:25 +0000 Subject: [PATCH 05/93] Red Hat Konflux update cert-manager-operator-bundle-1-14 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-14-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-14-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml index d1feafcc..04fe2055 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-pull-request.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:a9a3c472624d0598c28aaa67319e74a807ac1948946002dd7b181d200e672b8b + value: quay.io/konflux-ci/tekton-catalog/task-sast-coverity-check-oci-ta:0.3@sha256:87af64576088ba68f2a5b89998b7ae9e92d7e4f039274e4be6000eff6ce0d95d - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-14-push.yaml b/.tekton/cert-manager-operator-bundle-1-14-push.yaml index 18d916ce..e0195897 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-push.yaml @@ -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:a9a3c472624d0598c28aaa67319e74a807ac1948946002dd7b181d200e672b8b + value: quay.io/konflux-ci/tekton-catalog/task-sast-coverity-check-oci-ta:0.3@sha256:87af64576088ba68f2a5b89998b7ae9e92d7e4f039274e4be6000eff6ce0d95d - name: kind value: task resolver: bundles From 1bf55315dfdff69e39d4e195b09a9adbad6c3de9 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Wed, 14 May 2025 15:16:23 +0000 Subject: [PATCH 06/93] Red Hat Konflux update cert-manager-operator-bundle-1-14 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-14-pull-request.yaml | 6 +++--- .tekton/cert-manager-operator-bundle-1-14-push.yaml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml index 04fe2055..7fa1e4b6 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-pull-request.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:eb8136b543147b4a3e88ca3cc661ca6a11e303f35f0db44059f69151beea8496 + value: quay.io/konflux-ci/tekton-catalog/task-deprecated-image-check:0.5@sha256:ecd33669676b3a193ff4c2c6223cb912cc1b0cf5cc36e080eaec7718500272cf - 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:7c73e2beca9b8306387efeaf775831440ec799b05a5f5c008a65bb941a1e91f6 + value: quay.io/konflux-ci/tekton-catalog/task-clair-scan:0.2@sha256:878ae247ffc58d95a9ac68e4d658ef91ef039363e03e65a386bc0ead02d9d7d8 - 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:59094118aa07d5b0199565c4e0b2d0f4feb9a4741877c8716877572e2c4804f9 + value: quay.io/konflux-ci/tekton-catalog/task-clamav-scan:0.2@sha256:24182598bf5161c4007988a7236e240f361c77a0a9b6973a6712dbae50d296bc - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-14-push.yaml b/.tekton/cert-manager-operator-bundle-1-14-push.yaml index e0195897..d7efa0d8 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-push.yaml @@ -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:eb8136b543147b4a3e88ca3cc661ca6a11e303f35f0db44059f69151beea8496 + value: quay.io/konflux-ci/tekton-catalog/task-deprecated-image-check:0.5@sha256:ecd33669676b3a193ff4c2c6223cb912cc1b0cf5cc36e080eaec7718500272cf - name: kind value: task resolver: bundles @@ -331,7 +331,7 @@ spec: - name: name value: clair-scan - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-clair-scan:0.2@sha256:7c73e2beca9b8306387efeaf775831440ec799b05a5f5c008a65bb941a1e91f6 + value: quay.io/konflux-ci/tekton-catalog/task-clair-scan:0.2@sha256:878ae247ffc58d95a9ac68e4d658ef91ef039363e03e65a386bc0ead02d9d7d8 - 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.2@sha256:59094118aa07d5b0199565c4e0b2d0f4feb9a4741877c8716877572e2c4804f9 + value: quay.io/konflux-ci/tekton-catalog/task-clamav-scan:0.2@sha256:24182598bf5161c4007988a7236e240f361c77a0a9b6973a6712dbae50d296bc - name: kind value: task resolver: bundles From 2ee0385767837b451e8078677d6bf6ae962e7b07 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Fri, 16 May 2025 08:51:49 +0000 Subject: [PATCH 07/93] Red Hat Konflux update cert-manager-operator-bundle-1-14 Signed-off-by: red-hat-konflux From 5fda9f66e8d02ec61c58dd8dd8d348cc1e38775d Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Fri, 16 May 2025 13:56:53 +0000 Subject: [PATCH 08/93] Red Hat Konflux update cert-manager-operator-bundle-1-14 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-14-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-14-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml index 7fa1e4b6..2b94c655 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml @@ -563,7 +563,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:278f84550844c1c050a65536799f4b54e7c203e0ac51393aa75379dd974c82e9 + value: quay.io/konflux-ci/tekton-catalog/task-push-dockerfile-oci-ta:0.1@sha256:d0ee13ab3d9564f7ee806a8ceaced934db493a3a40e11ff6db3a912b8bbace95 - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-14-push.yaml b/.tekton/cert-manager-operator-bundle-1-14-push.yaml index d7efa0d8..0fa4e546 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-push.yaml @@ -560,7 +560,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:278f84550844c1c050a65536799f4b54e7c203e0ac51393aa75379dd974c82e9 + value: quay.io/konflux-ci/tekton-catalog/task-push-dockerfile-oci-ta:0.1@sha256:d0ee13ab3d9564f7ee806a8ceaced934db493a3a40e11ff6db3a912b8bbace95 - name: kind value: task resolver: bundles From 557d38ddfc2c1c473b6443de44e15047109c1c6f Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Fri, 16 May 2025 17:03:12 +0000 Subject: [PATCH 09/93] Red Hat Konflux update cert-manager-operator-bundle-1-14 Signed-off-by: red-hat-konflux From 3b025b924a4bb63a56d23dfb5aaac89b4ce0d830 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Fri, 16 May 2025 20:16:52 +0000 Subject: [PATCH 10/93] Red Hat Konflux update cert-manager-operator-bundle-1-14 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-14-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-14-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml index 2b94c655..d1d74e18 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-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:dea8d9b4bec3e99d612d799798acf132df48276164b5193ea68f9f3c25ae425b + value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.2@sha256:1157c6ac9805af8b8874e4b8d68d2403d99e1c007f63623566b5d848b27c1826 - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-14-push.yaml b/.tekton/cert-manager-operator-bundle-1-14-push.yaml index 0fa4e546..e2bc672f 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-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:dea8d9b4bec3e99d612d799798acf132df48276164b5193ea68f9f3c25ae425b + value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.2@sha256:1157c6ac9805af8b8874e4b8d68d2403d99e1c007f63623566b5d848b27c1826 - name: kind value: task resolver: bundles From 14c991face9dfd512d30ec1e146aeef697cc90ad Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Mon, 19 May 2025 00:04:55 +0000 Subject: [PATCH 11/93] Red Hat Konflux update cert-manager-operator-bundle-1-14 Signed-off-by: red-hat-konflux From 13777bb677eae2ac0ef006ab5e9a87b943130bd8 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Mon, 19 May 2025 18:41:19 +0000 Subject: [PATCH 12/93] Red Hat Konflux update cert-manager-operator-bundle-1-14 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-14-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-14-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml index d1d74e18..65f77a40 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml @@ -190,7 +190,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:d48c621ae828a3cbca162e12ec166210d2d77a7ba23b0e5d60c4a1b94491adeb + value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:3db5d3a02bcbbc034080474c06bec8388bd6abc71606503ac4832f6890e71503 - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-14-push.yaml b/.tekton/cert-manager-operator-bundle-1-14-push.yaml index e2bc672f..804c20e5 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-push.yaml @@ -187,7 +187,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:d48c621ae828a3cbca162e12ec166210d2d77a7ba23b0e5d60c4a1b94491adeb + value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:3db5d3a02bcbbc034080474c06bec8388bd6abc71606503ac4832f6890e71503 - name: kind value: task resolver: bundles From c35dff28cf9560617220c4d7f9382665746261b1 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Tue, 20 May 2025 08:56:56 +0000 Subject: [PATCH 13/93] Red Hat Konflux update cert-manager-operator-bundle-1-14 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-14-pull-request.yaml | 4 ++-- .tekton/cert-manager-operator-bundle-1-14-push.yaml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml index 65f77a40..3a044062 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml @@ -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:24182598bf5161c4007988a7236e240f361c77a0a9b6973a6712dbae50d296bc + value: quay.io/konflux-ci/tekton-catalog/task-clamav-scan:0.2@sha256:98d94290d6f21b6e231485326e3629bbcdec75c737b84e05ac9eac78f9a2c8b4 - name: kind value: task resolver: bundles @@ -540,7 +540,7 @@ spec: - name: name value: apply-tags - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-apply-tags:0.1@sha256:3f89ba89cacf8547261b5ce064acce81bfe470c8ace127794d0e90aebc8c347d + value: quay.io/konflux-ci/tekton-catalog/task-apply-tags:0.1@sha256:9d9871143ab3a818f681488be6074f5b2f892c1843795a46f6daf3f5487e72d1 - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-14-push.yaml b/.tekton/cert-manager-operator-bundle-1-14-push.yaml index 804c20e5..373e1689 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-push.yaml @@ -399,7 +399,7 @@ spec: - name: name value: clamav-scan - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-clamav-scan:0.2@sha256:24182598bf5161c4007988a7236e240f361c77a0a9b6973a6712dbae50d296bc + value: quay.io/konflux-ci/tekton-catalog/task-clamav-scan:0.2@sha256:98d94290d6f21b6e231485326e3629bbcdec75c737b84e05ac9eac78f9a2c8b4 - name: kind value: task resolver: bundles @@ -537,7 +537,7 @@ spec: - name: name value: apply-tags - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-apply-tags:0.1@sha256:3f89ba89cacf8547261b5ce064acce81bfe470c8ace127794d0e90aebc8c347d + value: quay.io/konflux-ci/tekton-catalog/task-apply-tags:0.1@sha256:9d9871143ab3a818f681488be6074f5b2f892c1843795a46f6daf3f5487e72d1 - name: kind value: task resolver: bundles From 7ab9a52053bef6c9e8913ad106e04502fde61b18 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Tue, 20 May 2025 11:15:48 +0000 Subject: [PATCH 14/93] Red Hat Konflux update cert-manager-operator-bundle-1-14 Signed-off-by: red-hat-konflux From 80295e3018257960cdb2b54150c44fff6d17ca1a Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Thu, 22 May 2025 11:48:09 +0000 Subject: [PATCH 15/93] Red Hat Konflux update cert-manager-operator-bundle-1-14 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-14-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-14-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml index 3a044062..71c71e88 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-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:89aead32dc21404e4e0913be9668bdd2eea795db3e4caa762fb619044e479cb8 + value: quay.io/konflux-ci/tekton-catalog/task-sast-snyk-check-oci-ta:0.4@sha256:6078ec8ec7caacbb8203138fcaa63db24e88dbf838544340bb0752d5b69f20ae - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-14-push.yaml b/.tekton/cert-manager-operator-bundle-1-14-push.yaml index 373e1689..1445d07d 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-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:89aead32dc21404e4e0913be9668bdd2eea795db3e4caa762fb619044e479cb8 + value: quay.io/konflux-ci/tekton-catalog/task-sast-snyk-check-oci-ta:0.4@sha256:6078ec8ec7caacbb8203138fcaa63db24e88dbf838544340bb0752d5b69f20ae - name: kind value: task resolver: bundles From 0e3acbf08b24e32bc1cf1395e69bb937e6b420ba Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Thu, 22 May 2025 14:29:37 +0000 Subject: [PATCH 16/93] Red Hat Konflux update cert-manager-operator-bundle-1-14 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-14-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-14-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml index 71c71e88..abf10b08 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml @@ -262,7 +262,7 @@ spec: - name: name value: build-image-index - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:462ecbf94ec44a8b770d6ef8838955f91f57ee79795e5c18bdc0fcb0df593742 + value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:1b357f2ed430d18a009740a1783dd15af70ce1e23dc6254da1a83e9ec595d5be - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-14-push.yaml b/.tekton/cert-manager-operator-bundle-1-14-push.yaml index 1445d07d..461f89c8 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-push.yaml @@ -259,7 +259,7 @@ spec: - name: name value: build-image-index - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:462ecbf94ec44a8b770d6ef8838955f91f57ee79795e5c18bdc0fcb0df593742 + value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:1b357f2ed430d18a009740a1783dd15af70ce1e23dc6254da1a83e9ec595d5be - name: kind value: task resolver: bundles From d355391e02592c49f000ead0419ed6551bb80225 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Fri, 23 May 2025 10:19:45 +0000 Subject: [PATCH 17/93] Red Hat Konflux update cert-manager-operator-bundle-1-14 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-14-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-14-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml index abf10b08..c34a7578 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-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:1157c6ac9805af8b8874e4b8d68d2403d99e1c007f63623566b5d848b27c1826 + value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.2@sha256:302828e9d7abc72b8a44fb2b9be068f86c982d8e5f4550b8bf654571d6361ee8 - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-14-push.yaml b/.tekton/cert-manager-operator-bundle-1-14-push.yaml index 461f89c8..4bd14377 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-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:1157c6ac9805af8b8874e4b8d68d2403d99e1c007f63623566b5d848b27c1826 + value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.2@sha256:302828e9d7abc72b8a44fb2b9be068f86c982d8e5f4550b8bf654571d6361ee8 - name: kind value: task resolver: bundles From 573825ff1809c7ce4a2fa94ca4070f747cfb5443 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Mon, 26 May 2025 14:22:59 +0000 Subject: [PATCH 18/93] Red Hat Konflux update cert-manager-operator-bundle-1-14 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-14-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-14-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml index c34a7578..1d268c06 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml @@ -262,7 +262,7 @@ spec: - name: name value: build-image-index - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:1b357f2ed430d18a009740a1783dd15af70ce1e23dc6254da1a83e9ec595d5be + value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:3e90dde3edfeb7db874e0ef0e29890d826a1ccd114b37eedda50ce625d0344a7 - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-14-push.yaml b/.tekton/cert-manager-operator-bundle-1-14-push.yaml index 4bd14377..65d9c1e1 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-push.yaml @@ -259,7 +259,7 @@ spec: - name: name value: build-image-index - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:1b357f2ed430d18a009740a1783dd15af70ce1e23dc6254da1a83e9ec595d5be + value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:3e90dde3edfeb7db874e0ef0e29890d826a1ccd114b37eedda50ce625d0344a7 - name: kind value: task resolver: bundles From af28d83d18f94b199aa900d83c3b5949a99f41b2 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Tue, 27 May 2025 10:24:07 +0000 Subject: [PATCH 19/93] Red Hat Konflux update cert-manager-operator-bundle-1-14 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-14-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-14-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml index 1d268c06..dfdb5be4 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml @@ -580,7 +580,7 @@ spec: - name: name value: rpms-signature-scan - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-rpms-signature-scan:0.2@sha256:297c2d8928aa3b114fcb1ba5d9da8b10226b68fed30706e78a6a5089c6cd30e3 + value: quay.io/konflux-ci/tekton-catalog/task-rpms-signature-scan:0.2@sha256:1bac33bd516072d5f4432efafd9dc4d86cdbb8eea8112cea5662984a0ef80e27 - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-14-push.yaml b/.tekton/cert-manager-operator-bundle-1-14-push.yaml index 65d9c1e1..7848a305 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-push.yaml @@ -577,7 +577,7 @@ spec: - name: name value: rpms-signature-scan - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-rpms-signature-scan:0.2@sha256:297c2d8928aa3b114fcb1ba5d9da8b10226b68fed30706e78a6a5089c6cd30e3 + value: quay.io/konflux-ci/tekton-catalog/task-rpms-signature-scan:0.2@sha256:1bac33bd516072d5f4432efafd9dc4d86cdbb8eea8112cea5662984a0ef80e27 - name: kind value: task resolver: bundles From a12032fdd79ba0de8f164887651b56a01a5e3954 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Wed, 28 May 2025 10:05:13 +0000 Subject: [PATCH 20/93] Red Hat Konflux update cert-manager-operator-bundle-1-14 Signed-off-by: red-hat-konflux --- ...-manager-operator-bundle-1-14-pull-request.yaml | 14 +++++++------- .../cert-manager-operator-bundle-1-14-push.yaml | 14 +++++++------- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml index dfdb5be4..1eeb65f2 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml @@ -140,7 +140,7 @@ spec: - name: name value: init - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-init:0.2@sha256:7a24924417260b7094541caaedd2853dc8da08d4bb0968f710a400d3e8062063 + value: quay.io/konflux-ci/tekton-catalog/task-init:0.2@sha256:66e90d31e1386bf516fb548cd3e3f0082b5d0234b8b90dbf9e0d4684b70dbe1a - name: kind value: task resolver: bundles @@ -190,7 +190,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:3db5d3a02bcbbc034080474c06bec8388bd6abc71606503ac4832f6890e71503 + value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:1f6e2c9beba52d21c562ba1dea55f579f67e33b80099615bfd2043864896284d - name: kind value: task resolver: bundles @@ -233,7 +233,7 @@ spec: - name: name value: buildah-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:6ac9d16f598c14a4b56e662eccda0a438e94aa8f87dd27a3ea0ff1abc6e00c66 + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:cfd711876f21a55bb12c3c5745ecccf4429f2a33ba634f80d8c1eedce7fe2d26 - name: kind value: task resolver: bundles @@ -262,7 +262,7 @@ spec: - name: name value: build-image-index - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:3e90dde3edfeb7db874e0ef0e29890d826a1ccd114b37eedda50ce625d0344a7 + value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:08abb8b12d69b8a33d5ce465304934c6f78e6850613c1c91eb6bf7e1c27d8319 - 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.2@sha256:56fa2cbfc04bad4765b7fe1fa8022587f4042d4e8533bb5f65311d46b43226ee + value: quay.io/konflux-ci/tekton-catalog/task-source-build-oci-ta:0.2@sha256:c5e56643c0f5e19409e86c8fd4de4348413b6f10456aa0875498d5c63bf6ef0e - 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.2@sha256:df185dbe4e2852668f9c46f938dd752e90ea9c79696363378435a6499596c319 + value: quay.io/konflux-ci/tekton-catalog/task-sast-unicode-check-oci-ta:0.2@sha256:54d50169b4860b90d38d41b00a973489b1db83612ae4aa40f1bdf0a151bff80d - name: kind value: task resolver: bundles @@ -540,7 +540,7 @@ spec: - name: name value: apply-tags - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-apply-tags:0.1@sha256:9d9871143ab3a818f681488be6074f5b2f892c1843795a46f6daf3f5487e72d1 + value: quay.io/konflux-ci/tekton-catalog/task-apply-tags:0.1@sha256:1c6f673fe100a49f58aaef62580c8adf0c397790964f4e7bac7fcd3f4d07c92e - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-14-push.yaml b/.tekton/cert-manager-operator-bundle-1-14-push.yaml index 7848a305..66bd7ea6 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-push.yaml @@ -137,7 +137,7 @@ spec: - name: name value: init - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-init:0.2@sha256:7a24924417260b7094541caaedd2853dc8da08d4bb0968f710a400d3e8062063 + value: quay.io/konflux-ci/tekton-catalog/task-init:0.2@sha256:66e90d31e1386bf516fb548cd3e3f0082b5d0234b8b90dbf9e0d4684b70dbe1a - name: kind value: task resolver: bundles @@ -187,7 +187,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:3db5d3a02bcbbc034080474c06bec8388bd6abc71606503ac4832f6890e71503 + value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:1f6e2c9beba52d21c562ba1dea55f579f67e33b80099615bfd2043864896284d - name: kind value: task resolver: bundles @@ -230,7 +230,7 @@ spec: - name: name value: buildah-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:6ac9d16f598c14a4b56e662eccda0a438e94aa8f87dd27a3ea0ff1abc6e00c66 + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:cfd711876f21a55bb12c3c5745ecccf4429f2a33ba634f80d8c1eedce7fe2d26 - name: kind value: task resolver: bundles @@ -259,7 +259,7 @@ spec: - name: name value: build-image-index - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:3e90dde3edfeb7db874e0ef0e29890d826a1ccd114b37eedda50ce625d0344a7 + value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:08abb8b12d69b8a33d5ce465304934c6f78e6850613c1c91eb6bf7e1c27d8319 - 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.2@sha256:56fa2cbfc04bad4765b7fe1fa8022587f4042d4e8533bb5f65311d46b43226ee + value: quay.io/konflux-ci/tekton-catalog/task-source-build-oci-ta:0.2@sha256:c5e56643c0f5e19409e86c8fd4de4348413b6f10456aa0875498d5c63bf6ef0e - 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.2@sha256:df185dbe4e2852668f9c46f938dd752e90ea9c79696363378435a6499596c319 + value: quay.io/konflux-ci/tekton-catalog/task-sast-unicode-check-oci-ta:0.2@sha256:54d50169b4860b90d38d41b00a973489b1db83612ae4aa40f1bdf0a151bff80d - name: kind value: task resolver: bundles @@ -537,7 +537,7 @@ spec: - name: name value: apply-tags - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-apply-tags:0.1@sha256:9d9871143ab3a818f681488be6074f5b2f892c1843795a46f6daf3f5487e72d1 + value: quay.io/konflux-ci/tekton-catalog/task-apply-tags:0.1@sha256:1c6f673fe100a49f58aaef62580c8adf0c397790964f4e7bac7fcd3f4d07c92e - name: kind value: task resolver: bundles From 3d85cb3130d02cec05ab48edee0a4849b9127300 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Tue, 3 Jun 2025 08:13:47 +0000 Subject: [PATCH 21/93] Red Hat Konflux update cert-manager-operator-bundle-1-14 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-14-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-14-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml index 1eeb65f2..32f36572 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml @@ -580,7 +580,7 @@ spec: - name: name value: rpms-signature-scan - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-rpms-signature-scan:0.2@sha256:1bac33bd516072d5f4432efafd9dc4d86cdbb8eea8112cea5662984a0ef80e27 + value: quay.io/konflux-ci/tekton-catalog/task-rpms-signature-scan:0.2@sha256:eac914b82152b4003fcb593fa6aaa7c3c895bf5081113ffe56a15e39d84f00e5 - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-14-push.yaml b/.tekton/cert-manager-operator-bundle-1-14-push.yaml index 66bd7ea6..95c289e0 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-push.yaml @@ -577,7 +577,7 @@ spec: - name: name value: rpms-signature-scan - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-rpms-signature-scan:0.2@sha256:1bac33bd516072d5f4432efafd9dc4d86cdbb8eea8112cea5662984a0ef80e27 + value: quay.io/konflux-ci/tekton-catalog/task-rpms-signature-scan:0.2@sha256:eac914b82152b4003fcb593fa6aaa7c3c895bf5081113ffe56a15e39d84f00e5 - name: kind value: task resolver: bundles From e4dd4d5d64b8719bc643c706a12099de6782f643 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Tue, 3 Jun 2025 08:30:42 +0000 Subject: [PATCH 22/93] Red Hat Konflux update cert-manager-operator-bundle-1-14 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-14-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-14-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml index 32f36572..db31d294 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml @@ -233,7 +233,7 @@ spec: - name: name value: buildah-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:cfd711876f21a55bb12c3c5745ecccf4429f2a33ba634f80d8c1eedce7fe2d26 + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:09f012a6c726c66922703f28846a3cfa196e8a391729192cda0d8f8a757b6ff5 - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-14-push.yaml b/.tekton/cert-manager-operator-bundle-1-14-push.yaml index 95c289e0..19f900d1 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-push.yaml @@ -230,7 +230,7 @@ spec: - name: name value: buildah-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:cfd711876f21a55bb12c3c5745ecccf4429f2a33ba634f80d8c1eedce7fe2d26 + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:09f012a6c726c66922703f28846a3cfa196e8a391729192cda0d8f8a757b6ff5 - name: kind value: task resolver: bundles From 361d17c1ae627a4fcd4a8db852fc9baa7bd8df1b Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Tue, 3 Jun 2025 14:10:15 +0000 Subject: [PATCH 23/93] Red Hat Konflux update cert-manager-operator-bundle-1-14 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-14-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-14-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml index db31d294..2bd006e6 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-pull-request.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:87af64576088ba68f2a5b89998b7ae9e92d7e4f039274e4be6000eff6ce0d95d + value: quay.io/konflux-ci/tekton-catalog/task-sast-coverity-check-oci-ta:0.3@sha256:59ec4ceef382b45c4301d6c83fd68fa07961b0de12e78496b0a458fc09c60202 - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-14-push.yaml b/.tekton/cert-manager-operator-bundle-1-14-push.yaml index 19f900d1..aa970d67 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-push.yaml @@ -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:87af64576088ba68f2a5b89998b7ae9e92d7e4f039274e4be6000eff6ce0d95d + value: quay.io/konflux-ci/tekton-catalog/task-sast-coverity-check-oci-ta:0.3@sha256:59ec4ceef382b45c4301d6c83fd68fa07961b0de12e78496b0a458fc09c60202 - name: kind value: task resolver: bundles From 36c38e11389eda97b0e438a77470a7a656df6d85 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Wed, 4 Jun 2025 08:43:21 +0000 Subject: [PATCH 24/93] Red Hat Konflux update cert-manager-operator-bundle-1-14 Signed-off-by: red-hat-konflux --- ...-manager-operator-bundle-1-14-pull-request.yaml | 14 +++++++------- .../cert-manager-operator-bundle-1-14-push.yaml | 14 +++++++------- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml index 2bd006e6..44078b9f 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-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.2@sha256:878ae247ffc58d95a9ac68e4d658ef91ef039363e03e65a386bc0ead02d9d7d8 + value: quay.io/konflux-ci/tekton-catalog/task-clair-scan:0.2@sha256:68a8fe28527c4469243119a449e2b3a6655f2acac589c069ea6433242da8ed4d - 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:6078ec8ec7caacbb8203138fcaa63db24e88dbf838544340bb0752d5b69f20ae + value: quay.io/konflux-ci/tekton-catalog/task-sast-snyk-check-oci-ta:0.4@sha256:9a6ec5575f80668552d861e64414e736c85af772c272ca653a6fd1ec841d2627 - 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:98d94290d6f21b6e231485326e3629bbcdec75c737b84e05ac9eac78f9a2c8b4 + value: quay.io/konflux-ci/tekton-catalog/task-clamav-scan:0.2@sha256:386c8c3395b44f6eb927dbad72382808b0ae42008f183064ca77cb4cad998442 - 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:59ec4ceef382b45c4301d6c83fd68fa07961b0de12e78496b0a458fc09c60202 + value: quay.io/konflux-ci/tekton-catalog/task-sast-coverity-check-oci-ta:0.3@sha256:7c845b10d257b874f645ea30deeff3c1ce2b38e7b6e331564f32c8684f41b520 - 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:57b3262138eb06186ae7375f84ca53788bba2a66cfd03d39cb82c78df050aba5 + value: quay.io/konflux-ci/tekton-catalog/task-sast-shell-check-oci-ta:0.1@sha256:a7766190229785bc5db9c62af92d46a83ea580a111b4b64a4e27f6caecae9489 - 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.2@sha256:54d50169b4860b90d38d41b00a973489b1db83612ae4aa40f1bdf0a151bff80d + value: quay.io/konflux-ci/tekton-catalog/task-sast-unicode-check-oci-ta:0.2@sha256:9613b9037e4199495800c2054c13d0479e3335ec94e0f15f031a5bce844003a9 - name: kind value: task resolver: bundles @@ -580,7 +580,7 @@ spec: - name: name value: rpms-signature-scan - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-rpms-signature-scan:0.2@sha256:eac914b82152b4003fcb593fa6aaa7c3c895bf5081113ffe56a15e39d84f00e5 + value: quay.io/konflux-ci/tekton-catalog/task-rpms-signature-scan:0.2@sha256:80a4562d5f86eb6812f00d4e30e94c1ad27ec937735dc29f5a63e9335676b3dc - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-14-push.yaml b/.tekton/cert-manager-operator-bundle-1-14-push.yaml index aa970d67..90a301ab 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-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.2@sha256:878ae247ffc58d95a9ac68e4d658ef91ef039363e03e65a386bc0ead02d9d7d8 + value: quay.io/konflux-ci/tekton-catalog/task-clair-scan:0.2@sha256:68a8fe28527c4469243119a449e2b3a6655f2acac589c069ea6433242da8ed4d - 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:6078ec8ec7caacbb8203138fcaa63db24e88dbf838544340bb0752d5b69f20ae + value: quay.io/konflux-ci/tekton-catalog/task-sast-snyk-check-oci-ta:0.4@sha256:9a6ec5575f80668552d861e64414e736c85af772c272ca653a6fd1ec841d2627 - 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.2@sha256:98d94290d6f21b6e231485326e3629bbcdec75c737b84e05ac9eac78f9a2c8b4 + value: quay.io/konflux-ci/tekton-catalog/task-clamav-scan:0.2@sha256:386c8c3395b44f6eb927dbad72382808b0ae42008f183064ca77cb4cad998442 - 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:59ec4ceef382b45c4301d6c83fd68fa07961b0de12e78496b0a458fc09c60202 + value: quay.io/konflux-ci/tekton-catalog/task-sast-coverity-check-oci-ta:0.3@sha256:7c845b10d257b874f645ea30deeff3c1ce2b38e7b6e331564f32c8684f41b520 - 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:57b3262138eb06186ae7375f84ca53788bba2a66cfd03d39cb82c78df050aba5 + value: quay.io/konflux-ci/tekton-catalog/task-sast-shell-check-oci-ta:0.1@sha256:a7766190229785bc5db9c62af92d46a83ea580a111b4b64a4e27f6caecae9489 - 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.2@sha256:54d50169b4860b90d38d41b00a973489b1db83612ae4aa40f1bdf0a151bff80d + value: quay.io/konflux-ci/tekton-catalog/task-sast-unicode-check-oci-ta:0.2@sha256:9613b9037e4199495800c2054c13d0479e3335ec94e0f15f031a5bce844003a9 - name: kind value: task resolver: bundles @@ -577,7 +577,7 @@ spec: - name: name value: rpms-signature-scan - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-rpms-signature-scan:0.2@sha256:eac914b82152b4003fcb593fa6aaa7c3c895bf5081113ffe56a15e39d84f00e5 + value: quay.io/konflux-ci/tekton-catalog/task-rpms-signature-scan:0.2@sha256:80a4562d5f86eb6812f00d4e30e94c1ad27ec937735dc29f5a63e9335676b3dc - name: kind value: task resolver: bundles From 43a44dd9a9bb9ac53fe7880dc04b1ccf36f05a12 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Wed, 4 Jun 2025 13:26:57 +0000 Subject: [PATCH 25/93] Red Hat Konflux update cert-manager-operator-bundle-1-14 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-14-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-14-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml index 44078b9f..53f78118 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml @@ -262,7 +262,7 @@ spec: - name: name value: build-image-index - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:08abb8b12d69b8a33d5ce465304934c6f78e6850613c1c91eb6bf7e1c27d8319 + value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:9c95b1fe17db091ae364344ba2006af46648e08486eef1f6fe1b9e3f10866875 - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-14-push.yaml b/.tekton/cert-manager-operator-bundle-1-14-push.yaml index 90a301ab..cb85a7ff 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-push.yaml @@ -259,7 +259,7 @@ spec: - name: name value: build-image-index - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:08abb8b12d69b8a33d5ce465304934c6f78e6850613c1c91eb6bf7e1c27d8319 + value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:9c95b1fe17db091ae364344ba2006af46648e08486eef1f6fe1b9e3f10866875 - name: kind value: task resolver: bundles From 1cf67b576df378174133eaeb77dcdbf2b9e53050 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Sun, 8 Jun 2025 09:23:38 +0000 Subject: [PATCH 26/93] Red Hat Konflux update cert-manager-operator-bundle-1-14 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-14-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-14-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml index 53f78118..58069bdb 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml @@ -580,7 +580,7 @@ spec: - name: name value: rpms-signature-scan - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-rpms-signature-scan:0.2@sha256:80a4562d5f86eb6812f00d4e30e94c1ad27ec937735dc29f5a63e9335676b3dc + value: quay.io/konflux-ci/tekton-catalog/task-rpms-signature-scan:0.2@sha256:db24b55cb4942bb8c139620322abbd19c8c45158fcbdfdecf2c24a39412bc852 - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-14-push.yaml b/.tekton/cert-manager-operator-bundle-1-14-push.yaml index cb85a7ff..8dc819f2 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-push.yaml @@ -577,7 +577,7 @@ spec: - name: name value: rpms-signature-scan - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-rpms-signature-scan:0.2@sha256:80a4562d5f86eb6812f00d4e30e94c1ad27ec937735dc29f5a63e9335676b3dc + value: quay.io/konflux-ci/tekton-catalog/task-rpms-signature-scan:0.2@sha256:db24b55cb4942bb8c139620322abbd19c8c45158fcbdfdecf2c24a39412bc852 - name: kind value: task resolver: bundles From 951c92f24ad914ebcb15464fe60ec0d16eaef721 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Mon, 9 Jun 2025 13:11:17 +0000 Subject: [PATCH 27/93] Red Hat Konflux update cert-manager-operator-bundle-1-14 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-14-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-14-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml index 58069bdb..0f8190e0 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml @@ -580,7 +580,7 @@ spec: - name: name value: rpms-signature-scan - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-rpms-signature-scan:0.2@sha256:db24b55cb4942bb8c139620322abbd19c8c45158fcbdfdecf2c24a39412bc852 + value: quay.io/konflux-ci/tekton-catalog/task-rpms-signature-scan:0.2@sha256:15f281bf0598c79e2c3468f55ef46f1d5dcca40245e8e7171e47a23aebf003e0 - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-14-push.yaml b/.tekton/cert-manager-operator-bundle-1-14-push.yaml index 8dc819f2..8b86d7b7 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-push.yaml @@ -577,7 +577,7 @@ spec: - name: name value: rpms-signature-scan - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-rpms-signature-scan:0.2@sha256:db24b55cb4942bb8c139620322abbd19c8c45158fcbdfdecf2c24a39412bc852 + value: quay.io/konflux-ci/tekton-catalog/task-rpms-signature-scan:0.2@sha256:15f281bf0598c79e2c3468f55ef46f1d5dcca40245e8e7171e47a23aebf003e0 - name: kind value: task resolver: bundles From 0422c3be0011d0936947ed691ddbf6ddb9f63d8b Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Tue, 10 Jun 2025 01:05:55 +0000 Subject: [PATCH 28/93] Red Hat Konflux update cert-manager-operator-bundle-1-14 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-14-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-14-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml index 0f8190e0..0d633cc0 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml @@ -161,7 +161,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:8ecf57d5a6697ce709bee65b62781efe79a10b0c2b95e05576442b67fbd61744 + value: quay.io/konflux-ci/tekton-catalog/task-git-clone-oci-ta:0.1@sha256:0fea1e4bd2fdde46c5b7786629f423a51e357f681c32ceddd744a6e3d48b8327 - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-14-push.yaml b/.tekton/cert-manager-operator-bundle-1-14-push.yaml index 8b86d7b7..fec3dde8 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-push.yaml @@ -158,7 +158,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:8ecf57d5a6697ce709bee65b62781efe79a10b0c2b95e05576442b67fbd61744 + value: quay.io/konflux-ci/tekton-catalog/task-git-clone-oci-ta:0.1@sha256:0fea1e4bd2fdde46c5b7786629f423a51e357f681c32ceddd744a6e3d48b8327 - name: kind value: task resolver: bundles From 5451cd0164a9cacc18537d28c8595e56c9d67e25 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Tue, 10 Jun 2025 08:25:57 +0000 Subject: [PATCH 29/93] Red Hat Konflux update cert-manager-operator-bundle-1-14 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-14-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-14-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml index 0d633cc0..78bf4ace 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml @@ -580,7 +580,7 @@ spec: - name: name value: rpms-signature-scan - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-rpms-signature-scan:0.2@sha256:15f281bf0598c79e2c3468f55ef46f1d5dcca40245e8e7171e47a23aebf003e0 + value: quay.io/konflux-ci/tekton-catalog/task-rpms-signature-scan:0.2@sha256:ec7f6de651458e4a5842b145e761b0d86b03b52bec1515d6d8a1b8cf107af95c - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-14-push.yaml b/.tekton/cert-manager-operator-bundle-1-14-push.yaml index fec3dde8..bfbb21f0 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-push.yaml @@ -577,7 +577,7 @@ spec: - name: name value: rpms-signature-scan - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-rpms-signature-scan:0.2@sha256:15f281bf0598c79e2c3468f55ef46f1d5dcca40245e8e7171e47a23aebf003e0 + value: quay.io/konflux-ci/tekton-catalog/task-rpms-signature-scan:0.2@sha256:ec7f6de651458e4a5842b145e761b0d86b03b52bec1515d6d8a1b8cf107af95c - name: kind value: task resolver: bundles From 7932e1a57bf2e69e18f28e1f186344b9b3c703d0 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Tue, 10 Jun 2025 14:23:33 +0000 Subject: [PATCH 30/93] Red Hat Konflux update cert-manager-operator-bundle-1-14 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-14-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-14-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml index 78bf4ace..1d8ae2e7 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml @@ -190,7 +190,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:1f6e2c9beba52d21c562ba1dea55f579f67e33b80099615bfd2043864896284d + value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:adbd819c6b727ac0c5519475d174dcad64cfa8df6ee50acd58f7fb562c59d4f7 - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-14-push.yaml b/.tekton/cert-manager-operator-bundle-1-14-push.yaml index bfbb21f0..28c5770a 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-push.yaml @@ -187,7 +187,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:1f6e2c9beba52d21c562ba1dea55f579f67e33b80099615bfd2043864896284d + value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:adbd819c6b727ac0c5519475d174dcad64cfa8df6ee50acd58f7fb562c59d4f7 - name: kind value: task resolver: bundles From 533adb049ff6bc25b7516b42fb95c3424f249a63 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Wed, 11 Jun 2025 02:45:46 +0000 Subject: [PATCH 31/93] Red Hat Konflux update cert-manager-operator-bundle-1-14 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-14-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-14-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml index 1d8ae2e7..4fd0e636 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml @@ -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:a7766190229785bc5db9c62af92d46a83ea580a111b4b64a4e27f6caecae9489 + value: quay.io/konflux-ci/tekton-catalog/task-sast-shell-check-oci-ta:0.1@sha256:60a7ee6ec5d00920389f03befd328cdaa159b7122a94ff3c87da287e0f32420f - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-14-push.yaml b/.tekton/cert-manager-operator-bundle-1-14-push.yaml index 28c5770a..99bd55a7 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-push.yaml @@ -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:a7766190229785bc5db9c62af92d46a83ea580a111b4b64a4e27f6caecae9489 + value: quay.io/konflux-ci/tekton-catalog/task-sast-shell-check-oci-ta:0.1@sha256:60a7ee6ec5d00920389f03befd328cdaa159b7122a94ff3c87da287e0f32420f - name: kind value: task resolver: bundles From 7d7831fc04273bdb99b119e08577c94cfbd72e22 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Thu, 12 Jun 2025 13:50:44 +0000 Subject: [PATCH 32/93] Red Hat Konflux update cert-manager-operator-bundle-1-14 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-14-pull-request.yaml | 6 ++++-- .tekton/cert-manager-operator-bundle-1-14-push.yaml | 6 ++++-- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml index 4fd0e636..2bf366c4 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml @@ -531,8 +531,10 @@ spec: - "false" - name: apply-tags params: - - name: IMAGE + - 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: @@ -540,7 +542,7 @@ spec: - name: name value: apply-tags - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-apply-tags:0.1@sha256:1c6f673fe100a49f58aaef62580c8adf0c397790964f4e7bac7fcd3f4d07c92e + value: quay.io/konflux-ci/tekton-catalog/task-apply-tags:0.2@sha256:0c411c27483849a936c0c420a57e477113e9fafc63077647200d6614d9ebb872 - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-14-push.yaml b/.tekton/cert-manager-operator-bundle-1-14-push.yaml index 99bd55a7..2c40791b 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-push.yaml @@ -528,8 +528,10 @@ spec: - "false" - name: apply-tags params: - - name: IMAGE + - 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: @@ -537,7 +539,7 @@ spec: - name: name value: apply-tags - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-apply-tags:0.1@sha256:1c6f673fe100a49f58aaef62580c8adf0c397790964f4e7bac7fcd3f4d07c92e + value: quay.io/konflux-ci/tekton-catalog/task-apply-tags:0.2@sha256:0c411c27483849a936c0c420a57e477113e9fafc63077647200d6614d9ebb872 - name: kind value: task resolver: bundles From c3029614415c6132d271686ceb9923ae047081f5 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Fri, 13 Jun 2025 16:54:34 +0000 Subject: [PATCH 33/93] Red Hat Konflux update cert-manager-operator-bundle-1-14 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-14-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-14-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml index 2bf366c4..b406723e 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-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:302828e9d7abc72b8a44fb2b9be068f86c982d8e5f4550b8bf654571d6361ee8 + value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.2@sha256:8a2d3ce9205df1f59f410529cb38134336e0a4b06ee1187b3229f26c80ecc5ba - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-14-push.yaml b/.tekton/cert-manager-operator-bundle-1-14-push.yaml index 2c40791b..53060a8d 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-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:302828e9d7abc72b8a44fb2b9be068f86c982d8e5f4550b8bf654571d6361ee8 + value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.2@sha256:8a2d3ce9205df1f59f410529cb38134336e0a4b06ee1187b3229f26c80ecc5ba - name: kind value: task resolver: bundles From efd5a2ba18eef2fbe8880224395687ba0eb11aaa Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Sun, 15 Jun 2025 09:53:21 +0000 Subject: [PATCH 34/93] Red Hat Konflux update cert-manager-operator-bundle-1-14 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-14-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-14-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml index b406723e..e89fd0c3 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml @@ -582,7 +582,7 @@ spec: - name: name value: rpms-signature-scan - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-rpms-signature-scan:0.2@sha256:ec7f6de651458e4a5842b145e761b0d86b03b52bec1515d6d8a1b8cf107af95c + value: quay.io/konflux-ci/tekton-catalog/task-rpms-signature-scan:0.2@sha256:66d0d695db7a12d0f05bff8b5c44b610539d781e5b50e031a099f9bf216d245e - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-14-push.yaml b/.tekton/cert-manager-operator-bundle-1-14-push.yaml index 53060a8d..147c565b 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-push.yaml @@ -579,7 +579,7 @@ spec: - name: name value: rpms-signature-scan - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-rpms-signature-scan:0.2@sha256:ec7f6de651458e4a5842b145e761b0d86b03b52bec1515d6d8a1b8cf107af95c + value: quay.io/konflux-ci/tekton-catalog/task-rpms-signature-scan:0.2@sha256:66d0d695db7a12d0f05bff8b5c44b610539d781e5b50e031a099f9bf216d245e - name: kind value: task resolver: bundles From 6aacfd49e4bb9aff94e59e6d832d03697924365f Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Mon, 16 Jun 2025 12:47:05 +0000 Subject: [PATCH 35/93] Red Hat Konflux update cert-manager-operator-bundle-1-14 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-14-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-14-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml index e89fd0c3..3d5cc8b3 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml @@ -262,7 +262,7 @@ spec: - name: name value: build-image-index - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:9c95b1fe17db091ae364344ba2006af46648e08486eef1f6fe1b9e3f10866875 + value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:fc55208a5967b42e1bec89f0ffed26fc4f18db92df2a4885a7d2b4d5cfd603e0 - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-14-push.yaml b/.tekton/cert-manager-operator-bundle-1-14-push.yaml index 147c565b..7939339e 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-push.yaml @@ -259,7 +259,7 @@ spec: - name: name value: build-image-index - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:9c95b1fe17db091ae364344ba2006af46648e08486eef1f6fe1b9e3f10866875 + value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:fc55208a5967b42e1bec89f0ffed26fc4f18db92df2a4885a7d2b4d5cfd603e0 - name: kind value: task resolver: bundles From 0f84270c0330e17d68b3866c31e63f9d9c10088e Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Mon, 16 Jun 2025 13:24:58 +0000 Subject: [PATCH 36/93] Red Hat Konflux update cert-manager-operator-bundle-1-14 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-14-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-14-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml index 3d5cc8b3..92590f1f 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml @@ -582,7 +582,7 @@ spec: - name: name value: rpms-signature-scan - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-rpms-signature-scan:0.2@sha256:66d0d695db7a12d0f05bff8b5c44b610539d781e5b50e031a099f9bf216d245e + value: quay.io/konflux-ci/tekton-catalog/task-rpms-signature-scan:0.2@sha256:2a5e357cd7f4b5634474de14dfc09aec48acca3995cbb3bb5d532025923322c2 - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-14-push.yaml b/.tekton/cert-manager-operator-bundle-1-14-push.yaml index 7939339e..de0b07f5 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-push.yaml @@ -579,7 +579,7 @@ spec: - name: name value: rpms-signature-scan - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-rpms-signature-scan:0.2@sha256:66d0d695db7a12d0f05bff8b5c44b610539d781e5b50e031a099f9bf216d245e + value: quay.io/konflux-ci/tekton-catalog/task-rpms-signature-scan:0.2@sha256:2a5e357cd7f4b5634474de14dfc09aec48acca3995cbb3bb5d532025923322c2 - name: kind value: task resolver: bundles From 4041d93edcfb2f8fa50e3d3fe2e6c3ccff5cca80 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Tue, 17 Jun 2025 08:01:40 +0000 Subject: [PATCH 37/93] Red Hat Konflux update cert-manager-operator-bundle-1-14 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-14-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-14-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml index 92590f1f..9eeabc49 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml @@ -582,7 +582,7 @@ spec: - name: name value: rpms-signature-scan - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-rpms-signature-scan:0.2@sha256:2a5e357cd7f4b5634474de14dfc09aec48acca3995cbb3bb5d532025923322c2 + value: quay.io/konflux-ci/tekton-catalog/task-rpms-signature-scan:0.2@sha256:1b6c20ab3dbfb0972803d3ebcb2fa72642e59400c77bd66dfd82028bdd09e120 - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-14-push.yaml b/.tekton/cert-manager-operator-bundle-1-14-push.yaml index de0b07f5..5c738420 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-push.yaml @@ -579,7 +579,7 @@ spec: - name: name value: rpms-signature-scan - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-rpms-signature-scan:0.2@sha256:2a5e357cd7f4b5634474de14dfc09aec48acca3995cbb3bb5d532025923322c2 + value: quay.io/konflux-ci/tekton-catalog/task-rpms-signature-scan:0.2@sha256:1b6c20ab3dbfb0972803d3ebcb2fa72642e59400c77bd66dfd82028bdd09e120 - name: kind value: task resolver: bundles From e3e58ac93a682d60cc450d13d333c81959ed47cb Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Tue, 17 Jun 2025 10:12:21 +0000 Subject: [PATCH 38/93] Red Hat Konflux update cert-manager-operator-bundle-1-14 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-14-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-14-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml index 9eeabc49..5208d434 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml @@ -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:0c411c27483849a936c0c420a57e477113e9fafc63077647200d6614d9ebb872 + value: quay.io/konflux-ci/tekton-catalog/task-apply-tags:0.2@sha256:517a51e260c0b59654a9d7b842e1ab07d76bce15ca7ce9c8fd2489a19be6463d - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-14-push.yaml b/.tekton/cert-manager-operator-bundle-1-14-push.yaml index 5c738420..042439d4 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-push.yaml @@ -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:0c411c27483849a936c0c420a57e477113e9fafc63077647200d6614d9ebb872 + value: quay.io/konflux-ci/tekton-catalog/task-apply-tags:0.2@sha256:517a51e260c0b59654a9d7b842e1ab07d76bce15ca7ce9c8fd2489a19be6463d - name: kind value: task resolver: bundles From bce64b6f0ebc932a9b08b6eb357abdf40cb37a45 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Tue, 17 Jun 2025 22:31:14 +0000 Subject: [PATCH 39/93] Red Hat Konflux update cert-manager-operator-bundle-1-14 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-14-pull-request.yaml | 3 ++- .tekton/cert-manager-operator-bundle-1-14-push.yaml | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml index 5208d434..720a21c1 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml @@ -35,7 +35,7 @@ spec: 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://enterprisecontract.dev/docs/ec-policies/release_policy.html#trusted_task__trusted) policy as long as all data used to build the artifact is generated from trusted tasks. + _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 @@ -92,6 +92,7 @@ spec: 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 diff --git a/.tekton/cert-manager-operator-bundle-1-14-push.yaml b/.tekton/cert-manager-operator-bundle-1-14-push.yaml index 042439d4..0b2c0142 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-push.yaml @@ -32,7 +32,7 @@ spec: 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://enterprisecontract.dev/docs/ec-policies/release_policy.html#trusted_task__trusted) policy as long as all data used to build the artifact is generated from trusted tasks. + _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 @@ -89,6 +89,7 @@ spec: 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 From 571982c574784cbefcc204cf44199c20784f5fef Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Wed, 18 Jun 2025 08:57:32 +0000 Subject: [PATCH 40/93] Red Hat Konflux update cert-manager-operator-bundle-1-14 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-14-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-14-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml index 720a21c1..094da062 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml @@ -469,7 +469,7 @@ spec: - name: name value: coverity-availability-check - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-coverity-availability-check:0.2@sha256:8b58c4fae00c0dfe3937abfb8a9a61aa3c408cca4278b817db53d518428d944e + value: quay.io/konflux-ci/tekton-catalog/task-coverity-availability-check:0.2@sha256:9e81eaeaecc9b1d63de7d4e2c6655e5022dd5c939ffba7fa2384965e11017aea - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-14-push.yaml b/.tekton/cert-manager-operator-bundle-1-14-push.yaml index 0b2c0142..d3fe8a86 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-push.yaml @@ -466,7 +466,7 @@ spec: - name: name value: coverity-availability-check - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-coverity-availability-check:0.2@sha256:8b58c4fae00c0dfe3937abfb8a9a61aa3c408cca4278b817db53d518428d944e + value: quay.io/konflux-ci/tekton-catalog/task-coverity-availability-check:0.2@sha256:9e81eaeaecc9b1d63de7d4e2c6655e5022dd5c939ffba7fa2384965e11017aea - name: kind value: task resolver: bundles From 5245ecd0fce9135667adf5a5fb64c9e800f3466d Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Wed, 18 Jun 2025 09:42:18 +0000 Subject: [PATCH 41/93] Red Hat Konflux update cert-manager-operator-bundle-1-14 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-14-pull-request.yaml | 4 ++-- .tekton/cert-manager-operator-bundle-1-14-push.yaml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml index 094da062..62095ee2 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-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:09f012a6c726c66922703f28846a3cfa196e8a391729192cda0d8f8a757b6ff5 + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:dc1de363f7c6e06e3e2f23096ce709a0352b95b83a2e4fa9419bdd40a63b1e93 - 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:fc55208a5967b42e1bec89f0ffed26fc4f18db92df2a4885a7d2b4d5cfd603e0 + value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:3cf3dcc0bf7b674b940063b4d55e41fe7d43636a1d82572e3850228aa5350fa8 - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-14-push.yaml b/.tekton/cert-manager-operator-bundle-1-14-push.yaml index d3fe8a86..4ebee32a 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-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:09f012a6c726c66922703f28846a3cfa196e8a391729192cda0d8f8a757b6ff5 + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:dc1de363f7c6e06e3e2f23096ce709a0352b95b83a2e4fa9419bdd40a63b1e93 - 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:fc55208a5967b42e1bec89f0ffed26fc4f18db92df2a4885a7d2b4d5cfd603e0 + value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:3cf3dcc0bf7b674b940063b4d55e41fe7d43636a1d82572e3850228aa5350fa8 - name: kind value: task resolver: bundles From 9afc3a4a462b1b3028d5daa89e0a1b5989e0ee82 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Wed, 18 Jun 2025 12:12:34 +0000 Subject: [PATCH 42/93] Red Hat Konflux update cert-manager-operator-bundle-1-14 Signed-off-by: red-hat-konflux --- ...ager-operator-bundle-1-14-pull-request.yaml | 18 +++++++++--------- ...cert-manager-operator-bundle-1-14-push.yaml | 18 +++++++++--------- 2 files changed, 18 insertions(+), 18 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml index 62095ee2..3a4c4b32 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-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:0fea1e4bd2fdde46c5b7786629f423a51e357f681c32ceddd744a6e3d48b8327 + value: quay.io/konflux-ci/tekton-catalog/task-git-clone-oci-ta:0.1@sha256:0e512b12775b2bcc4eb47bb34b7a2db2e91c3ceef04b2f2487fa421032d8859a - 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:adbd819c6b727ac0c5519475d174dcad64cfa8df6ee50acd58f7fb562c59d4f7 + value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:d0cbc492da865be336d09926eb6e3494403dccaa4a212bbdf472d8adbf80ab08 - 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:dc1de363f7c6e06e3e2f23096ce709a0352b95b83a2e4fa9419bdd40a63b1e93 + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:d90c4cf682189faab5c702e55f4855242e228ce1a05e54e1734b7b9c6fa40441 - name: kind value: task resolver: bundles @@ -287,7 +287,7 @@ spec: - name: name value: source-build-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-source-build-oci-ta:0.2@sha256:c5e56643c0f5e19409e86c8fd4de4348413b6f10456aa0875498d5c63bf6ef0e + value: quay.io/konflux-ci/tekton-catalog/task-source-build-oci-ta:0.2@sha256:f0784e8e0e396f40a6523693825b5966c3c615ba3d342350165e83cb72a24ef7 - name: kind value: task resolver: bundles @@ -381,7 +381,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:9a6ec5575f80668552d861e64414e736c85af772c272ca653a6fd1ec841d2627 + value: quay.io/konflux-ci/tekton-catalog/task-sast-snyk-check-oci-ta:0.4@sha256:0947e18d0e39f7fe0f06573b725ad723dcbe6e6b563375b0873ff92e369c1ccc - name: kind value: task resolver: bundles @@ -448,7 +448,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:7c845b10d257b874f645ea30deeff3c1ce2b38e7b6e331564f32c8684f41b520 + value: quay.io/konflux-ci/tekton-catalog/task-sast-coverity-check-oci-ta:0.3@sha256:dda889f85faa30eb18db4f195bc03428e8913afa14624552d2cb9f714c786dbf - name: kind value: task resolver: bundles @@ -495,7 +495,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:60a7ee6ec5d00920389f03befd328cdaa159b7122a94ff3c87da287e0f32420f + value: quay.io/konflux-ci/tekton-catalog/task-sast-shell-check-oci-ta:0.1@sha256:12aa943e2a411e4db01ceafd0985d167d5c0fcdcb4ee549cdd4be874a39d119a - name: kind value: task resolver: bundles @@ -521,7 +521,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:9613b9037e4199495800c2054c13d0479e3335ec94e0f15f031a5bce844003a9 + value: quay.io/konflux-ci/tekton-catalog/task-sast-unicode-check-oci-ta:0.2@sha256:065273070f720a45b39b7dcb3244febdecd3fe3ad9cda7e80a71e0d59237d7c8 - name: kind value: task resolver: bundles @@ -566,7 +566,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:d0ee13ab3d9564f7ee806a8ceaced934db493a3a40e11ff6db3a912b8bbace95 + value: quay.io/konflux-ci/tekton-catalog/task-push-dockerfile-oci-ta:0.1@sha256:995df79980b71ba94660c78c867ad5e2a1f755c572dedfcb80ba8bbab2a44eaa - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-14-push.yaml b/.tekton/cert-manager-operator-bundle-1-14-push.yaml index 4ebee32a..641c6846 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-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:0fea1e4bd2fdde46c5b7786629f423a51e357f681c32ceddd744a6e3d48b8327 + value: quay.io/konflux-ci/tekton-catalog/task-git-clone-oci-ta:0.1@sha256:0e512b12775b2bcc4eb47bb34b7a2db2e91c3ceef04b2f2487fa421032d8859a - 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:adbd819c6b727ac0c5519475d174dcad64cfa8df6ee50acd58f7fb562c59d4f7 + value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:d0cbc492da865be336d09926eb6e3494403dccaa4a212bbdf472d8adbf80ab08 - 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:dc1de363f7c6e06e3e2f23096ce709a0352b95b83a2e4fa9419bdd40a63b1e93 + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:d90c4cf682189faab5c702e55f4855242e228ce1a05e54e1734b7b9c6fa40441 - name: kind value: task resolver: bundles @@ -284,7 +284,7 @@ spec: - name: name value: source-build-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-source-build-oci-ta:0.2@sha256:c5e56643c0f5e19409e86c8fd4de4348413b6f10456aa0875498d5c63bf6ef0e + value: quay.io/konflux-ci/tekton-catalog/task-source-build-oci-ta:0.2@sha256:f0784e8e0e396f40a6523693825b5966c3c615ba3d342350165e83cb72a24ef7 - name: kind value: task resolver: bundles @@ -378,7 +378,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:9a6ec5575f80668552d861e64414e736c85af772c272ca653a6fd1ec841d2627 + value: quay.io/konflux-ci/tekton-catalog/task-sast-snyk-check-oci-ta:0.4@sha256:0947e18d0e39f7fe0f06573b725ad723dcbe6e6b563375b0873ff92e369c1ccc - name: kind value: task resolver: bundles @@ -445,7 +445,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:7c845b10d257b874f645ea30deeff3c1ce2b38e7b6e331564f32c8684f41b520 + value: quay.io/konflux-ci/tekton-catalog/task-sast-coverity-check-oci-ta:0.3@sha256:dda889f85faa30eb18db4f195bc03428e8913afa14624552d2cb9f714c786dbf - name: kind value: task resolver: bundles @@ -492,7 +492,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:60a7ee6ec5d00920389f03befd328cdaa159b7122a94ff3c87da287e0f32420f + value: quay.io/konflux-ci/tekton-catalog/task-sast-shell-check-oci-ta:0.1@sha256:12aa943e2a411e4db01ceafd0985d167d5c0fcdcb4ee549cdd4be874a39d119a - name: kind value: task resolver: bundles @@ -518,7 +518,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:9613b9037e4199495800c2054c13d0479e3335ec94e0f15f031a5bce844003a9 + value: quay.io/konflux-ci/tekton-catalog/task-sast-unicode-check-oci-ta:0.2@sha256:065273070f720a45b39b7dcb3244febdecd3fe3ad9cda7e80a71e0d59237d7c8 - name: kind value: task resolver: bundles @@ -563,7 +563,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:d0ee13ab3d9564f7ee806a8ceaced934db493a3a40e11ff6db3a912b8bbace95 + value: quay.io/konflux-ci/tekton-catalog/task-push-dockerfile-oci-ta:0.1@sha256:995df79980b71ba94660c78c867ad5e2a1f755c572dedfcb80ba8bbab2a44eaa - name: kind value: task resolver: bundles From 7c3f4a149ce99636e50d4d44112b4d4310852d6e Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Wed, 18 Jun 2025 16:15:54 +0000 Subject: [PATCH 43/93] Red Hat Konflux update cert-manager-operator-bundle-1-14 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-14-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-14-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml index 3a4c4b32..922896d2 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml @@ -355,7 +355,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:8a2d3ce9205df1f59f410529cb38134336e0a4b06ee1187b3229f26c80ecc5ba + value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.2@sha256:95ca11d147ee97d98f495477e9f42afe94ba3f869fc81c4e7b241ebd21e7395f - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-14-push.yaml b/.tekton/cert-manager-operator-bundle-1-14-push.yaml index 641c6846..b7a6a71f 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-push.yaml @@ -352,7 +352,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:8a2d3ce9205df1f59f410529cb38134336e0a4b06ee1187b3229f26c80ecc5ba + value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.2@sha256:95ca11d147ee97d98f495477e9f42afe94ba3f869fc81c4e7b241ebd21e7395f - name: kind value: task resolver: bundles From 134536354c89c4f90d529785d542f088086c04a8 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Thu, 19 Jun 2025 14:06:54 +0000 Subject: [PATCH 44/93] Red Hat Konflux update cert-manager-operator-bundle-1-14 Signed-off-by: red-hat-konflux --- ...anager-operator-bundle-1-14-pull-request.yaml | 16 ++++++++-------- .../cert-manager-operator-bundle-1-14-push.yaml | 16 ++++++++-------- 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml index 922896d2..845a9ae6 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml @@ -313,7 +313,7 @@ spec: - name: name value: deprecated-image-check - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-deprecated-image-check:0.5@sha256:ecd33669676b3a193ff4c2c6223cb912cc1b0cf5cc36e080eaec7718500272cf + value: quay.io/konflux-ci/tekton-catalog/task-deprecated-image-check:0.5@sha256:270a79138a98e43c366d3722978cb5940d2bcb822ba6b60377330f863b7a1e62 - name: kind value: task resolver: bundles @@ -335,7 +335,7 @@ spec: - name: name value: clair-scan - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-clair-scan:0.2@sha256:68a8fe28527c4469243119a449e2b3a6655f2acac589c069ea6433242da8ed4d + value: quay.io/konflux-ci/tekton-catalog/task-clair-scan:0.2@sha256:d354939892f3a904223ec080cc3771bd11931085a5d202323ea491ee8e8c5e43 - name: kind value: task resolver: bundles @@ -381,7 +381,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:0947e18d0e39f7fe0f06573b725ad723dcbe6e6b563375b0873ff92e369c1ccc + value: quay.io/konflux-ci/tekton-catalog/task-sast-snyk-check-oci-ta:0.4@sha256:e61f541189b30d14292ef8df36ccaf13f7feb2378fed5f74cb6293b3e79eb687 - name: kind value: task resolver: bundles @@ -403,7 +403,7 @@ spec: - name: name value: clamav-scan - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-clamav-scan:0.2@sha256:386c8c3395b44f6eb927dbad72382808b0ae42008f183064ca77cb4cad998442 + value: quay.io/konflux-ci/tekton-catalog/task-clamav-scan:0.2@sha256:9cab95ac9e833d77a63c079893258b73b8d5a298d93aaf9bdd6722471bc2f338 - name: kind value: task resolver: bundles @@ -469,7 +469,7 @@ spec: - name: name value: coverity-availability-check - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-coverity-availability-check:0.2@sha256:9e81eaeaecc9b1d63de7d4e2c6655e5022dd5c939ffba7fa2384965e11017aea + value: quay.io/konflux-ci/tekton-catalog/task-coverity-availability-check:0.2@sha256:db2b267dc15e4ed17f704ee91b8e9b38068e1a35b1018a328fdca621819d74c6 - name: kind value: task resolver: bundles @@ -495,7 +495,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:12aa943e2a411e4db01ceafd0985d167d5c0fcdcb4ee549cdd4be874a39d119a + value: quay.io/konflux-ci/tekton-catalog/task-sast-shell-check-oci-ta:0.1@sha256:1e8f18f892e16f5d0fc0f42ae8512e3c78251d43cd9d9f7cfd3f6667242bf619 - name: kind value: task resolver: bundles @@ -521,7 +521,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:065273070f720a45b39b7dcb3244febdecd3fe3ad9cda7e80a71e0d59237d7c8 + value: quay.io/konflux-ci/tekton-catalog/task-sast-unicode-check-oci-ta:0.2@sha256:24ad71fde435fc25abba2c4c550beb088b1530f738d3c377e2f635b5f320d57b - name: kind value: task resolver: bundles @@ -566,7 +566,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:995df79980b71ba94660c78c867ad5e2a1f755c572dedfcb80ba8bbab2a44eaa + value: quay.io/konflux-ci/tekton-catalog/task-push-dockerfile-oci-ta:0.1@sha256:5d8013b6a27bbc5e4ff261144616268f28417ed0950d583ef36349fcd59d3d3d - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-14-push.yaml b/.tekton/cert-manager-operator-bundle-1-14-push.yaml index b7a6a71f..08f3732d 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-push.yaml @@ -310,7 +310,7 @@ spec: - name: name value: deprecated-image-check - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-deprecated-image-check:0.5@sha256:ecd33669676b3a193ff4c2c6223cb912cc1b0cf5cc36e080eaec7718500272cf + value: quay.io/konflux-ci/tekton-catalog/task-deprecated-image-check:0.5@sha256:270a79138a98e43c366d3722978cb5940d2bcb822ba6b60377330f863b7a1e62 - name: kind value: task resolver: bundles @@ -332,7 +332,7 @@ spec: - name: name value: clair-scan - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-clair-scan:0.2@sha256:68a8fe28527c4469243119a449e2b3a6655f2acac589c069ea6433242da8ed4d + value: quay.io/konflux-ci/tekton-catalog/task-clair-scan:0.2@sha256:d354939892f3a904223ec080cc3771bd11931085a5d202323ea491ee8e8c5e43 - name: kind value: task resolver: bundles @@ -378,7 +378,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:0947e18d0e39f7fe0f06573b725ad723dcbe6e6b563375b0873ff92e369c1ccc + value: quay.io/konflux-ci/tekton-catalog/task-sast-snyk-check-oci-ta:0.4@sha256:e61f541189b30d14292ef8df36ccaf13f7feb2378fed5f74cb6293b3e79eb687 - name: kind value: task resolver: bundles @@ -400,7 +400,7 @@ spec: - name: name value: clamav-scan - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-clamav-scan:0.2@sha256:386c8c3395b44f6eb927dbad72382808b0ae42008f183064ca77cb4cad998442 + value: quay.io/konflux-ci/tekton-catalog/task-clamav-scan:0.2@sha256:9cab95ac9e833d77a63c079893258b73b8d5a298d93aaf9bdd6722471bc2f338 - name: kind value: task resolver: bundles @@ -466,7 +466,7 @@ spec: - name: name value: coverity-availability-check - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-coverity-availability-check:0.2@sha256:9e81eaeaecc9b1d63de7d4e2c6655e5022dd5c939ffba7fa2384965e11017aea + value: quay.io/konflux-ci/tekton-catalog/task-coverity-availability-check:0.2@sha256:db2b267dc15e4ed17f704ee91b8e9b38068e1a35b1018a328fdca621819d74c6 - name: kind value: task resolver: bundles @@ -492,7 +492,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:12aa943e2a411e4db01ceafd0985d167d5c0fcdcb4ee549cdd4be874a39d119a + value: quay.io/konflux-ci/tekton-catalog/task-sast-shell-check-oci-ta:0.1@sha256:1e8f18f892e16f5d0fc0f42ae8512e3c78251d43cd9d9f7cfd3f6667242bf619 - name: kind value: task resolver: bundles @@ -518,7 +518,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:065273070f720a45b39b7dcb3244febdecd3fe3ad9cda7e80a71e0d59237d7c8 + value: quay.io/konflux-ci/tekton-catalog/task-sast-unicode-check-oci-ta:0.2@sha256:24ad71fde435fc25abba2c4c550beb088b1530f738d3c377e2f635b5f320d57b - name: kind value: task resolver: bundles @@ -563,7 +563,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:995df79980b71ba94660c78c867ad5e2a1f755c572dedfcb80ba8bbab2a44eaa + value: quay.io/konflux-ci/tekton-catalog/task-push-dockerfile-oci-ta:0.1@sha256:5d8013b6a27bbc5e4ff261144616268f28417ed0950d583ef36349fcd59d3d3d - name: kind value: task resolver: bundles From bd1997f604b10bdfbe34b677423fff428bd6b424 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Tue, 24 Jun 2025 17:58:36 +0000 Subject: [PATCH 45/93] Red Hat Konflux update cert-manager-operator-bundle-1-14 Signed-off-by: red-hat-konflux --- ...rt-manager-operator-bundle-1-14-pull-request.yaml | 12 ++++++------ .tekton/cert-manager-operator-bundle-1-14-push.yaml | 12 ++++++------ 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml index 845a9ae6..01781771 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-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:002f7c8c1d2f9e09904035da414aba1188ae091df0ea9532cd997be05e73d594 + value: quay.io/konflux-ci/tekton-catalog/task-show-sbom:0.1@sha256:1b1df4da95966d08ac6a5b8198710e09e68b5c2cdc707c37d9d19769e65884b2 - 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:0e512b12775b2bcc4eb47bb34b7a2db2e91c3ceef04b2f2487fa421032d8859a + value: quay.io/konflux-ci/tekton-catalog/task-git-clone-oci-ta:0.1@sha256:d35e5d501cb5f5f88369511f76249857cb5ac30250e1dcf086939321964ff6b9 - 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:d90c4cf682189faab5c702e55f4855242e228ce1a05e54e1734b7b9c6fa40441 + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:37c96c0e8639e8a70eb9bc02dfd8ce81c37a03f653f2ca306536e64a58f296b6 - 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:3cf3dcc0bf7b674b940063b4d55e41fe7d43636a1d82572e3850228aa5350fa8 + value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:846dc9975914f31380ec2712fdbac9df3b06c00a9cc7df678315a7f97145efc2 - name: kind value: task resolver: bundles @@ -287,7 +287,7 @@ spec: - name: name value: source-build-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-source-build-oci-ta:0.2@sha256:f0784e8e0e396f40a6523693825b5966c3c615ba3d342350165e83cb72a24ef7 + value: quay.io/konflux-ci/tekton-catalog/task-source-build-oci-ta:0.2@sha256:b424894fc8e806c12658daa565b835fd2d66e7f7608afc47529eb7b410f030d7 - name: kind value: task resolver: bundles @@ -355,7 +355,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:95ca11d147ee97d98f495477e9f42afe94ba3f869fc81c4e7b241ebd21e7395f + value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.2@sha256:a6df9cc4b7792fbe53764a0033d7a914f256e81ce5dc9e3fd4f23d141461a6e6 - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-14-push.yaml b/.tekton/cert-manager-operator-bundle-1-14-push.yaml index 08f3732d..e04e7f95 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-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:002f7c8c1d2f9e09904035da414aba1188ae091df0ea9532cd997be05e73d594 + value: quay.io/konflux-ci/tekton-catalog/task-show-sbom:0.1@sha256:1b1df4da95966d08ac6a5b8198710e09e68b5c2cdc707c37d9d19769e65884b2 - 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:0e512b12775b2bcc4eb47bb34b7a2db2e91c3ceef04b2f2487fa421032d8859a + value: quay.io/konflux-ci/tekton-catalog/task-git-clone-oci-ta:0.1@sha256:d35e5d501cb5f5f88369511f76249857cb5ac30250e1dcf086939321964ff6b9 - 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:d90c4cf682189faab5c702e55f4855242e228ce1a05e54e1734b7b9c6fa40441 + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:37c96c0e8639e8a70eb9bc02dfd8ce81c37a03f653f2ca306536e64a58f296b6 - 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:3cf3dcc0bf7b674b940063b4d55e41fe7d43636a1d82572e3850228aa5350fa8 + value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:846dc9975914f31380ec2712fdbac9df3b06c00a9cc7df678315a7f97145efc2 - name: kind value: task resolver: bundles @@ -284,7 +284,7 @@ spec: - name: name value: source-build-oci-ta - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-source-build-oci-ta:0.2@sha256:f0784e8e0e396f40a6523693825b5966c3c615ba3d342350165e83cb72a24ef7 + value: quay.io/konflux-ci/tekton-catalog/task-source-build-oci-ta:0.2@sha256:b424894fc8e806c12658daa565b835fd2d66e7f7608afc47529eb7b410f030d7 - name: kind value: task resolver: bundles @@ -352,7 +352,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:95ca11d147ee97d98f495477e9f42afe94ba3f869fc81c4e7b241ebd21e7395f + value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.2@sha256:a6df9cc4b7792fbe53764a0033d7a914f256e81ce5dc9e3fd4f23d141461a6e6 - name: kind value: task resolver: bundles From d7f983327dc1b911477b46764de773781561c90d Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Tue, 24 Jun 2025 19:27:56 +0000 Subject: [PATCH 46/93] Red Hat Konflux update cert-manager-operator-bundle-1-14 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-14-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-14-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml index 01781771..a49ce28b 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml @@ -313,7 +313,7 @@ spec: - name: name value: deprecated-image-check - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-deprecated-image-check:0.5@sha256:270a79138a98e43c366d3722978cb5940d2bcb822ba6b60377330f863b7a1e62 + value: quay.io/konflux-ci/tekton-catalog/task-deprecated-image-check:0.5@sha256:3c8b81fa868e27c6266e7660a4bfb4c822846dcf4304606e71e20893b0d3e515 - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-14-push.yaml b/.tekton/cert-manager-operator-bundle-1-14-push.yaml index e04e7f95..406f4cf0 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-push.yaml @@ -310,7 +310,7 @@ spec: - name: name value: deprecated-image-check - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-deprecated-image-check:0.5@sha256:270a79138a98e43c366d3722978cb5940d2bcb822ba6b60377330f863b7a1e62 + value: quay.io/konflux-ci/tekton-catalog/task-deprecated-image-check:0.5@sha256:3c8b81fa868e27c6266e7660a4bfb4c822846dcf4304606e71e20893b0d3e515 - name: kind value: task resolver: bundles From 71f9ba39dd906f6d077dacaa98c869cbfb833760 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Wed, 25 Jun 2025 03:13:42 +0000 Subject: [PATCH 47/93] Red Hat Konflux update cert-manager-operator-bundle-1-14 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-14-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-14-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml index a49ce28b..8009c40e 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml @@ -355,7 +355,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:a6df9cc4b7792fbe53764a0033d7a914f256e81ce5dc9e3fd4f23d141461a6e6 + value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.2@sha256:b550ff4f0b634512ce5200074be7afd7a5a6c05b783620c626e2a3035cd56448 - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-14-push.yaml b/.tekton/cert-manager-operator-bundle-1-14-push.yaml index 406f4cf0..49af42f6 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-push.yaml @@ -352,7 +352,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:a6df9cc4b7792fbe53764a0033d7a914f256e81ce5dc9e3fd4f23d141461a6e6 + value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.2@sha256:b550ff4f0b634512ce5200074be7afd7a5a6c05b783620c626e2a3035cd56448 - name: kind value: task resolver: bundles From 2dfcb6d74fff7fef69e8dbdbfd20f076f83d7600 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Wed, 25 Jun 2025 10:33:45 +0000 Subject: [PATCH 48/93] Red Hat Konflux update cert-manager-operator-bundle-1-14 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-14-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-14-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml index 8009c40e..3fbd2e9a 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml @@ -495,7 +495,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:1e8f18f892e16f5d0fc0f42ae8512e3c78251d43cd9d9f7cfd3f6667242bf619 + value: quay.io/konflux-ci/tekton-catalog/task-sast-shell-check-oci-ta:0.1@sha256:808bcaf75271db6a999f53fdefb973a385add94a277d37fbd3df68f8ac7dfaa3 - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-14-push.yaml b/.tekton/cert-manager-operator-bundle-1-14-push.yaml index 49af42f6..b031f04f 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-push.yaml @@ -492,7 +492,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:1e8f18f892e16f5d0fc0f42ae8512e3c78251d43cd9d9f7cfd3f6667242bf619 + value: quay.io/konflux-ci/tekton-catalog/task-sast-shell-check-oci-ta:0.1@sha256:808bcaf75271db6a999f53fdefb973a385add94a277d37fbd3df68f8ac7dfaa3 - name: kind value: task resolver: bundles From 98d2f4ea0adccb5c1ade88bf1257235a0ffee84f Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Wed, 25 Jun 2025 18:14:31 +0000 Subject: [PATCH 49/93] Red Hat Konflux update cert-manager-operator-bundle-1-14 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-14-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-14-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml index 3fbd2e9a..df14ac68 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-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:d0cbc492da865be336d09926eb6e3494403dccaa4a212bbdf472d8adbf80ab08 + value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:5e15408f997557153b13d492aeccb51c01923bfbe4fbdf6f1e8695ce1b82f826 - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-14-push.yaml b/.tekton/cert-manager-operator-bundle-1-14-push.yaml index b031f04f..13ee3d30 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-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:d0cbc492da865be336d09926eb6e3494403dccaa4a212bbdf472d8adbf80ab08 + value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:5e15408f997557153b13d492aeccb51c01923bfbe4fbdf6f1e8695ce1b82f826 - name: kind value: task resolver: bundles From 0762a9c5c00f85cb74daadbc88c4ef107e64264f Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Thu, 26 Jun 2025 10:40:49 +0000 Subject: [PATCH 50/93] Red Hat Konflux update cert-manager-operator-bundle-1-14 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-14-pull-request.yaml | 4 ++-- .tekton/cert-manager-operator-bundle-1-14-push.yaml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml index df14ac68..7bda490e 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-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:37c96c0e8639e8a70eb9bc02dfd8ce81c37a03f653f2ca306536e64a58f296b6 + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:65864bd7623b8819707ffc0949c390152f99f24308803e773000009f71ed2d6b - name: kind value: task resolver: bundles @@ -448,7 +448,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:dda889f85faa30eb18db4f195bc03428e8913afa14624552d2cb9f714c786dbf + value: quay.io/konflux-ci/tekton-catalog/task-sast-coverity-check-oci-ta:0.3@sha256:34ac8e9ddfaafedaa61a7c3c95d86e674556bfe3da488d94c3bf28fff9875b38 - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-14-push.yaml b/.tekton/cert-manager-operator-bundle-1-14-push.yaml index 13ee3d30..6b918cbd 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-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:37c96c0e8639e8a70eb9bc02dfd8ce81c37a03f653f2ca306536e64a58f296b6 + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:65864bd7623b8819707ffc0949c390152f99f24308803e773000009f71ed2d6b - name: kind value: task resolver: bundles @@ -445,7 +445,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:dda889f85faa30eb18db4f195bc03428e8913afa14624552d2cb9f714c786dbf + value: quay.io/konflux-ci/tekton-catalog/task-sast-coverity-check-oci-ta:0.3@sha256:34ac8e9ddfaafedaa61a7c3c95d86e674556bfe3da488d94c3bf28fff9875b38 - name: kind value: task resolver: bundles From 39fd591697c23bd950a698ba227cdb3e6eca81c4 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Fri, 27 Jun 2025 15:08:12 +0000 Subject: [PATCH 51/93] Red Hat Konflux update cert-manager-operator-bundle-1-14 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-14-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-14-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml index 7bda490e..6de96856 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml @@ -448,7 +448,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:34ac8e9ddfaafedaa61a7c3c95d86e674556bfe3da488d94c3bf28fff9875b38 + value: quay.io/konflux-ci/tekton-catalog/task-sast-coverity-check-oci-ta:0.3@sha256:f81ade665c725616b918356c8c2fb2d4ed972e822a1a3181933cd0ada728a231 - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-14-push.yaml b/.tekton/cert-manager-operator-bundle-1-14-push.yaml index 6b918cbd..108ccb1d 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-push.yaml @@ -445,7 +445,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:34ac8e9ddfaafedaa61a7c3c95d86e674556bfe3da488d94c3bf28fff9875b38 + value: quay.io/konflux-ci/tekton-catalog/task-sast-coverity-check-oci-ta:0.3@sha256:f81ade665c725616b918356c8c2fb2d4ed972e822a1a3181933cd0ada728a231 - name: kind value: task resolver: bundles From 4ad8b7fc29e3d34c0ce878a9812dbebb6ca5354a Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Mon, 30 Jun 2025 10:28:26 +0000 Subject: [PATCH 52/93] Red Hat Konflux update cert-manager-operator-bundle-1-14 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-14-pull-request.yaml | 4 ++-- .tekton/cert-manager-operator-bundle-1-14-push.yaml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml index 6de96856..5e83e745 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-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:65864bd7623b8819707ffc0949c390152f99f24308803e773000009f71ed2d6b + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:48b99ad18fd3bde2d22ec2c397d36c55e45ca90ddf1620c9e00bdee518e297bf - name: kind value: task resolver: bundles @@ -448,7 +448,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:f81ade665c725616b918356c8c2fb2d4ed972e822a1a3181933cd0ada728a231 + value: quay.io/konflux-ci/tekton-catalog/task-sast-coverity-check-oci-ta:0.3@sha256:f9ed979367665223d0539b11542ac174c37cc7fe85d88f05168d9a7a3177475e - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-14-push.yaml b/.tekton/cert-manager-operator-bundle-1-14-push.yaml index 108ccb1d..5706ed92 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-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:65864bd7623b8819707ffc0949c390152f99f24308803e773000009f71ed2d6b + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:48b99ad18fd3bde2d22ec2c397d36c55e45ca90ddf1620c9e00bdee518e297bf - name: kind value: task resolver: bundles @@ -445,7 +445,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:f81ade665c725616b918356c8c2fb2d4ed972e822a1a3181933cd0ada728a231 + value: quay.io/konflux-ci/tekton-catalog/task-sast-coverity-check-oci-ta:0.3@sha256:f9ed979367665223d0539b11542ac174c37cc7fe85d88f05168d9a7a3177475e - name: kind value: task resolver: bundles From e01dd7b92c08fbb09c8a0921936a728b106336c0 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Tue, 1 Jul 2025 15:17:38 +0000 Subject: [PATCH 53/93] Red Hat Konflux update cert-manager-operator-bundle-1-14 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-14-pull-request.yaml | 6 +++--- .tekton/cert-manager-operator-bundle-1-14-push.yaml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml index 5e83e745..9971905f 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-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:5e15408f997557153b13d492aeccb51c01923bfbe4fbdf6f1e8695ce1b82f826 + value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:a1ddc34bf0a169bb2e64a98caf9027b66af8fc66a3a60f71bb451ce36af6a399 - name: kind value: task resolver: bundles @@ -448,7 +448,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:f9ed979367665223d0539b11542ac174c37cc7fe85d88f05168d9a7a3177475e + value: quay.io/konflux-ci/tekton-catalog/task-sast-coverity-check-oci-ta:0.3@sha256:d3fdca2f0072e1c40e0781ac4b8f16b977dc77fc6e80424087941465bc27d5eb - name: kind value: task resolver: bundles @@ -521,7 +521,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:24ad71fde435fc25abba2c4c550beb088b1530f738d3c377e2f635b5f320d57b + value: quay.io/konflux-ci/tekton-catalog/task-sast-unicode-check-oci-ta:0.2@sha256:3ffa3ac35ad988767ae2202d1f2483ce3e8152b29b89e77620c26f32c1ad2e7e - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-14-push.yaml b/.tekton/cert-manager-operator-bundle-1-14-push.yaml index 5706ed92..b8af4620 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-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:5e15408f997557153b13d492aeccb51c01923bfbe4fbdf6f1e8695ce1b82f826 + value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:a1ddc34bf0a169bb2e64a98caf9027b66af8fc66a3a60f71bb451ce36af6a399 - name: kind value: task resolver: bundles @@ -445,7 +445,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:f9ed979367665223d0539b11542ac174c37cc7fe85d88f05168d9a7a3177475e + value: quay.io/konflux-ci/tekton-catalog/task-sast-coverity-check-oci-ta:0.3@sha256:d3fdca2f0072e1c40e0781ac4b8f16b977dc77fc6e80424087941465bc27d5eb - name: kind value: task resolver: bundles @@ -518,7 +518,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:24ad71fde435fc25abba2c4c550beb088b1530f738d3c377e2f635b5f320d57b + value: quay.io/konflux-ci/tekton-catalog/task-sast-unicode-check-oci-ta:0.2@sha256:3ffa3ac35ad988767ae2202d1f2483ce3e8152b29b89e77620c26f32c1ad2e7e - name: kind value: task resolver: bundles From f7a8e7c61312ad29cf381d5ec86ffebfb614ffeb Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Mon, 7 Jul 2025 12:37:58 +0000 Subject: [PATCH 54/93] Red Hat Konflux update cert-manager-operator-bundle-1-14 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-14-pull-request.yaml | 4 ++-- .tekton/cert-manager-operator-bundle-1-14-push.yaml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml index 9971905f..bdce45fa 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml @@ -448,7 +448,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:d3fdca2f0072e1c40e0781ac4b8f16b977dc77fc6e80424087941465bc27d5eb + value: quay.io/konflux-ci/tekton-catalog/task-sast-coverity-check-oci-ta:0.3@sha256:c926568ce63e4f63e18bb6a4178caca2e8192f6e3b830bbcd354e6485d29458c - name: kind value: task resolver: bundles @@ -583,7 +583,7 @@ spec: - name: name value: rpms-signature-scan - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-rpms-signature-scan:0.2@sha256:1b6c20ab3dbfb0972803d3ebcb2fa72642e59400c77bd66dfd82028bdd09e120 + value: quay.io/konflux-ci/konflux-vanguard/task-rpms-signature-scan:0.2@sha256:7d1c087d7d33dd97effb3b4c9f3788e4c3138da2032040d69da6929e9a3aaceb - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-14-push.yaml b/.tekton/cert-manager-operator-bundle-1-14-push.yaml index b8af4620..b0b7d62f 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-push.yaml @@ -445,7 +445,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:d3fdca2f0072e1c40e0781ac4b8f16b977dc77fc6e80424087941465bc27d5eb + value: quay.io/konflux-ci/tekton-catalog/task-sast-coverity-check-oci-ta:0.3@sha256:c926568ce63e4f63e18bb6a4178caca2e8192f6e3b830bbcd354e6485d29458c - name: kind value: task resolver: bundles @@ -580,7 +580,7 @@ spec: - name: name value: rpms-signature-scan - name: bundle - value: quay.io/konflux-ci/tekton-catalog/task-rpms-signature-scan:0.2@sha256:1b6c20ab3dbfb0972803d3ebcb2fa72642e59400c77bd66dfd82028bdd09e120 + value: quay.io/konflux-ci/konflux-vanguard/task-rpms-signature-scan:0.2@sha256:7d1c087d7d33dd97effb3b4c9f3788e4c3138da2032040d69da6929e9a3aaceb - name: kind value: task resolver: bundles From 67c6b932ca0be0565e31f23179fe5e6ed9e30b45 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Mon, 7 Jul 2025 20:58:17 +0000 Subject: [PATCH 55/93] Red Hat Konflux update cert-manager-operator-bundle-1-14 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-14-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-14-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml index bdce45fa..eac9898b 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml @@ -355,7 +355,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:b550ff4f0b634512ce5200074be7afd7a5a6c05b783620c626e2a3035cd56448 + value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.2@sha256:ba7ed837f467904e7b38513174a707a9eec4009d009d6f272ff71d1250bc8854 - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-14-push.yaml b/.tekton/cert-manager-operator-bundle-1-14-push.yaml index b0b7d62f..edd6c436 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-push.yaml @@ -352,7 +352,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:b550ff4f0b634512ce5200074be7afd7a5a6c05b783620c626e2a3035cd56448 + value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.2@sha256:ba7ed837f467904e7b38513174a707a9eec4009d009d6f272ff71d1250bc8854 - name: kind value: task resolver: bundles From ccc9bc86c7e9476d1e2692c66c8aad74dc6f48ac Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Wed, 9 Jul 2025 09:29:15 +0000 Subject: [PATCH 56/93] Red Hat Konflux update cert-manager-operator-bundle-1-14 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-14-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-14-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml index eac9898b..67557721 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-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:a1ddc34bf0a169bb2e64a98caf9027b66af8fc66a3a60f71bb451ce36af6a399 + value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:f10a4841e6f75fbb314b1d8cbf14f652499c1fe7f59e59aed59f7431c680aa17 - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-14-push.yaml b/.tekton/cert-manager-operator-bundle-1-14-push.yaml index edd6c436..22693fe6 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-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:a1ddc34bf0a169bb2e64a98caf9027b66af8fc66a3a60f71bb451ce36af6a399 + value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:f10a4841e6f75fbb314b1d8cbf14f652499c1fe7f59e59aed59f7431c680aa17 - name: kind value: task resolver: bundles From ecac44635939cebfcea270d0653f519789ebe5a5 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Thu, 10 Jul 2025 08:30:16 +0000 Subject: [PATCH 57/93] Red Hat Konflux update cert-manager-operator-bundle-1-14 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-14-pull-request.yaml | 6 ++++-- .tekton/cert-manager-operator-bundle-1-14-push.yaml | 6 ++++-- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml index 67557721..914d81a4 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml @@ -275,7 +275,9 @@ spec: - name: build-source-image params: - name: BINARY_IMAGE - value: $(params.output-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 @@ -287,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.2@sha256:b424894fc8e806c12658daa565b835fd2d66e7f7608afc47529eb7b410f030d7 + value: quay.io/konflux-ci/tekton-catalog/task-source-build-oci-ta:0.3@sha256:b1eb49583b41872b27356fee20d5f0eb6ff7f5cdeacde7ffb39655f031104728 - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-14-push.yaml b/.tekton/cert-manager-operator-bundle-1-14-push.yaml index 22693fe6..0e9791fd 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-push.yaml @@ -272,7 +272,9 @@ spec: - name: build-source-image params: - name: BINARY_IMAGE - value: $(params.output-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 @@ -284,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.2@sha256:b424894fc8e806c12658daa565b835fd2d66e7f7608afc47529eb7b410f030d7 + value: quay.io/konflux-ci/tekton-catalog/task-source-build-oci-ta:0.3@sha256:b1eb49583b41872b27356fee20d5f0eb6ff7f5cdeacde7ffb39655f031104728 - name: kind value: task resolver: bundles From 0cb252412f51924b6a66eff610558596ac5658a7 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Fri, 11 Jul 2025 23:05:54 +0000 Subject: [PATCH 58/93] Red Hat Konflux update cert-manager-operator-bundle-1-14 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-14-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-14-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml index 914d81a4..986a5d4f 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-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:ba7ed837f467904e7b38513174a707a9eec4009d009d6f272ff71d1250bc8854 + value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.2@sha256:abbe195626eec925288df6425679559025d1be4af5ae70ca6dbbcb49ad3bf08b - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-14-push.yaml b/.tekton/cert-manager-operator-bundle-1-14-push.yaml index 0e9791fd..6549383c 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-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:ba7ed837f467904e7b38513174a707a9eec4009d009d6f272ff71d1250bc8854 + value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.2@sha256:abbe195626eec925288df6425679559025d1be4af5ae70ca6dbbcb49ad3bf08b - name: kind value: task resolver: bundles From 845f03a59ba9683a22608b40f1a6f604d3c4e92f Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Mon, 14 Jul 2025 13:58:07 +0000 Subject: [PATCH 59/93] Red Hat Konflux update cert-manager-operator-bundle-1-14 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-14-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-14-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml index 986a5d4f..46245299 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-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:48b99ad18fd3bde2d22ec2c397d36c55e45ca90ddf1620c9e00bdee518e297bf + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:aed6b8fb68dbad39e5365dfb43f887dca75c40a2f8f957a9cd3f41e96243c6d6 - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-14-push.yaml b/.tekton/cert-manager-operator-bundle-1-14-push.yaml index 6549383c..f29b3a3c 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-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:48b99ad18fd3bde2d22ec2c397d36c55e45ca90ddf1620c9e00bdee518e297bf + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:aed6b8fb68dbad39e5365dfb43f887dca75c40a2f8f957a9cd3f41e96243c6d6 - name: kind value: task resolver: bundles From d787143026b2570ff0f667cf99137bfc01229e0e Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Mon, 14 Jul 2025 20:01:54 +0000 Subject: [PATCH 60/93] Red Hat Konflux update cert-manager-operator-bundle-1-14 Signed-off-by: red-hat-konflux --- ...ger-operator-bundle-1-14-pull-request.yaml | 24 +++++++++---------- ...ert-manager-operator-bundle-1-14-push.yaml | 24 +++++++++---------- 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml index 46245299..3172a06d 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-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:1b1df4da95966d08ac6a5b8198710e09e68b5c2cdc707c37d9d19769e65884b2 + value: quay.io/konflux-ci/tekton-catalog/task-show-sbom:0.1@sha256:86c069cac0a669797e8049faa8aa4088e70ff7fcd579d5bdc37626a9e0488a05 - 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:66e90d31e1386bf516fb548cd3e3f0082b5d0234b8b90dbf9e0d4684b70dbe1a + value: quay.io/konflux-ci/tekton-catalog/task-init:0.2@sha256:1d8221c84f91b923d89de50bf16481ea729e3b68ea04a9a7cbe8485ddbb27ee6 - 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:aed6b8fb68dbad39e5365dfb43f887dca75c40a2f8f957a9cd3f41e96243c6d6 + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:06f604af4c29f08b02c36a8d9bc3dfa1606a5836fd8eeb1f6ef46048319afc38 - 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:846dc9975914f31380ec2712fdbac9df3b06c00a9cc7df678315a7f97145efc2 + value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:3499772af90aad0d3935629be6d37dd9292195fb629e6f43ec839c7f545a0faa - 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:d354939892f3a904223ec080cc3771bd11931085a5d202323ea491ee8e8c5e43 + value: quay.io/konflux-ci/tekton-catalog/task-clair-scan:0.2@sha256:417f44117f8d87a4a62fea6589b5746612ac61640b454dbd88f74892380411f2 - 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:abbe195626eec925288df6425679559025d1be4af5ae70ca6dbbcb49ad3bf08b + value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.2@sha256:f99d2bdb02f13223d494077a2cde31418d09369f33c02134a8e7e5fad2f61eda - name: kind value: task resolver: bundles @@ -383,7 +383,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:e61f541189b30d14292ef8df36ccaf13f7feb2378fed5f74cb6293b3e79eb687 + value: quay.io/konflux-ci/tekton-catalog/task-sast-snyk-check-oci-ta:0.4@sha256:fe5e5ba3a72632cd505910de2eacd62c9d11ed570c325173188f8d568ac60771 - 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:9cab95ac9e833d77a63c079893258b73b8d5a298d93aaf9bdd6722471bc2f338 + value: quay.io/konflux-ci/tekton-catalog/task-clamav-scan:0.2@sha256:7749146f7e4fe530846f1b15c9366178ec9f44776ef1922a60d3e7e2b8c6426b - 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:c926568ce63e4f63e18bb6a4178caca2e8192f6e3b830bbcd354e6485d29458c + value: quay.io/konflux-ci/tekton-catalog/task-sast-coverity-check-oci-ta:0.3@sha256:6b4d1321219df88d2d709f2ec1566edfd017cae58015ac8f39f92e350f9747e1 - name: kind value: task resolver: bundles @@ -497,7 +497,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:808bcaf75271db6a999f53fdefb973a385add94a277d37fbd3df68f8ac7dfaa3 + value: quay.io/konflux-ci/tekton-catalog/task-sast-shell-check-oci-ta:0.1@sha256:437d1bc50cb0bcffb88345b75d2d119677d17d47f16fd67baf553a5e134a335e - name: kind value: task resolver: bundles @@ -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:3ffa3ac35ad988767ae2202d1f2483ce3e8152b29b89e77620c26f32c1ad2e7e + value: quay.io/konflux-ci/tekton-catalog/task-sast-unicode-check-oci-ta:0.2@sha256:3f99dc4634a62e1530324cd565d12323ca82be3cfa8a031a36b210becfa7b552 - 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:5d8013b6a27bbc5e4ff261144616268f28417ed0950d583ef36349fcd59d3d3d + value: quay.io/konflux-ci/tekton-catalog/task-push-dockerfile-oci-ta:0.1@sha256:8c75c4a747e635e5f3e12266a3bb6e5d3132bf54e37eaa53d505f89897dd8eca - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-14-push.yaml b/.tekton/cert-manager-operator-bundle-1-14-push.yaml index f29b3a3c..afcb93db 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-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:1b1df4da95966d08ac6a5b8198710e09e68b5c2cdc707c37d9d19769e65884b2 + value: quay.io/konflux-ci/tekton-catalog/task-show-sbom:0.1@sha256:86c069cac0a669797e8049faa8aa4088e70ff7fcd579d5bdc37626a9e0488a05 - 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:66e90d31e1386bf516fb548cd3e3f0082b5d0234b8b90dbf9e0d4684b70dbe1a + value: quay.io/konflux-ci/tekton-catalog/task-init:0.2@sha256:1d8221c84f91b923d89de50bf16481ea729e3b68ea04a9a7cbe8485ddbb27ee6 - 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:aed6b8fb68dbad39e5365dfb43f887dca75c40a2f8f957a9cd3f41e96243c6d6 + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:06f604af4c29f08b02c36a8d9bc3dfa1606a5836fd8eeb1f6ef46048319afc38 - 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:846dc9975914f31380ec2712fdbac9df3b06c00a9cc7df678315a7f97145efc2 + value: quay.io/konflux-ci/tekton-catalog/task-build-image-index:0.1@sha256:3499772af90aad0d3935629be6d37dd9292195fb629e6f43ec839c7f545a0faa - 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:d354939892f3a904223ec080cc3771bd11931085a5d202323ea491ee8e8c5e43 + value: quay.io/konflux-ci/tekton-catalog/task-clair-scan:0.2@sha256:417f44117f8d87a4a62fea6589b5746612ac61640b454dbd88f74892380411f2 - 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:abbe195626eec925288df6425679559025d1be4af5ae70ca6dbbcb49ad3bf08b + value: quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks:0.2@sha256:f99d2bdb02f13223d494077a2cde31418d09369f33c02134a8e7e5fad2f61eda - 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:e61f541189b30d14292ef8df36ccaf13f7feb2378fed5f74cb6293b3e79eb687 + value: quay.io/konflux-ci/tekton-catalog/task-sast-snyk-check-oci-ta:0.4@sha256:fe5e5ba3a72632cd505910de2eacd62c9d11ed570c325173188f8d568ac60771 - 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:9cab95ac9e833d77a63c079893258b73b8d5a298d93aaf9bdd6722471bc2f338 + value: quay.io/konflux-ci/tekton-catalog/task-clamav-scan:0.2@sha256:7749146f7e4fe530846f1b15c9366178ec9f44776ef1922a60d3e7e2b8c6426b - 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:c926568ce63e4f63e18bb6a4178caca2e8192f6e3b830bbcd354e6485d29458c + value: quay.io/konflux-ci/tekton-catalog/task-sast-coverity-check-oci-ta:0.3@sha256:6b4d1321219df88d2d709f2ec1566edfd017cae58015ac8f39f92e350f9747e1 - 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:808bcaf75271db6a999f53fdefb973a385add94a277d37fbd3df68f8ac7dfaa3 + value: quay.io/konflux-ci/tekton-catalog/task-sast-shell-check-oci-ta:0.1@sha256:437d1bc50cb0bcffb88345b75d2d119677d17d47f16fd67baf553a5e134a335e - 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.2@sha256:3ffa3ac35ad988767ae2202d1f2483ce3e8152b29b89e77620c26f32c1ad2e7e + value: quay.io/konflux-ci/tekton-catalog/task-sast-unicode-check-oci-ta:0.2@sha256:3f99dc4634a62e1530324cd565d12323ca82be3cfa8a031a36b210becfa7b552 - 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:5d8013b6a27bbc5e4ff261144616268f28417ed0950d583ef36349fcd59d3d3d + value: quay.io/konflux-ci/tekton-catalog/task-push-dockerfile-oci-ta:0.1@sha256:8c75c4a747e635e5f3e12266a3bb6e5d3132bf54e37eaa53d505f89897dd8eca - name: kind value: task resolver: bundles From c844332d6a676a57cf65ace07ca890beb4b9bb35 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Wed, 16 Jul 2025 09:14:42 +0000 Subject: [PATCH 61/93] Red Hat Konflux update cert-manager-operator-bundle-1-14 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-14-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-14-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml index 3172a06d..6d04985d 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-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:f10a4841e6f75fbb314b1d8cbf14f652499c1fe7f59e59aed59f7431c680aa17 + value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:092491ac0f6e1009d10c58a1319d1029371bf637cc1293cceba53c6da5314ed1 - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-14-push.yaml b/.tekton/cert-manager-operator-bundle-1-14-push.yaml index afcb93db..2ddbe8c2 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-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:f10a4841e6f75fbb314b1d8cbf14f652499c1fe7f59e59aed59f7431c680aa17 + value: quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta:0.2@sha256:092491ac0f6e1009d10c58a1319d1029371bf637cc1293cceba53c6da5314ed1 - name: kind value: task resolver: bundles From 16d949322b628c693c9eb67dd7ab83a893ddc1c1 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Wed, 16 Jul 2025 10:03:44 +0000 Subject: [PATCH 62/93] Red Hat Konflux update cert-manager-operator-bundle-1-14 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-14-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-14-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml index 6d04985d..e8f74566 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml @@ -497,7 +497,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:437d1bc50cb0bcffb88345b75d2d119677d17d47f16fd67baf553a5e134a335e + value: quay.io/konflux-ci/tekton-catalog/task-sast-shell-check-oci-ta:0.1@sha256:bf7bdde00b7212f730c1356672290af6f38d070da2c8a316987b5c32fd49e0b9 - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-14-push.yaml b/.tekton/cert-manager-operator-bundle-1-14-push.yaml index 2ddbe8c2..6374e8cb 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-push.yaml @@ -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:437d1bc50cb0bcffb88345b75d2d119677d17d47f16fd67baf553a5e134a335e + value: quay.io/konflux-ci/tekton-catalog/task-sast-shell-check-oci-ta:0.1@sha256:bf7bdde00b7212f730c1356672290af6f38d070da2c8a316987b5c32fd49e0b9 - name: kind value: task resolver: bundles From 4863807454c5d31756cf292e7f4f1a05332b6ece Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Fri, 18 Jul 2025 07:24:01 +0000 Subject: [PATCH 63/93] Red Hat Konflux update cert-manager-operator-bundle-1-14 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-14-pull-request.yaml | 4 ++-- .tekton/cert-manager-operator-bundle-1-14-push.yaml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml index e8f74566..1018c65d 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-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:06f604af4c29f08b02c36a8d9bc3dfa1606a5836fd8eeb1f6ef46048319afc38 + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:9e9bac2044d6231b44114046b9d528c135388699365f0f210ee810c01bd4d702 - 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:6b4d1321219df88d2d709f2ec1566edfd017cae58015ac8f39f92e350f9747e1 + value: quay.io/konflux-ci/tekton-catalog/task-sast-coverity-check-oci-ta:0.3@sha256:f9ca942208dc2e63b479384ccc56a611cc793397ecc837637b5b9f89c2ecbefe - name: kind value: task resolver: bundles diff --git a/.tekton/cert-manager-operator-bundle-1-14-push.yaml b/.tekton/cert-manager-operator-bundle-1-14-push.yaml index 6374e8cb..92a83aaa 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-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:06f604af4c29f08b02c36a8d9bc3dfa1606a5836fd8eeb1f6ef46048319afc38 + value: quay.io/konflux-ci/tekton-catalog/task-buildah-oci-ta:0.4@sha256:9e9bac2044d6231b44114046b9d528c135388699365f0f210ee810c01bd4d702 - 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:6b4d1321219df88d2d709f2ec1566edfd017cae58015ac8f39f92e350f9747e1 + value: quay.io/konflux-ci/tekton-catalog/task-sast-coverity-check-oci-ta:0.3@sha256:f9ca942208dc2e63b479384ccc56a611cc793397ecc837637b5b9f89c2ecbefe - name: kind value: task resolver: bundles From 43f1f31b1bfafb6aed977489b90b099b9d0b7a98 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Mon, 28 Jul 2025 14:04:00 +0000 Subject: [PATCH 64/93] Red Hat Konflux update cert-manager-operator-bundle-1-14 Signed-off-by: red-hat-konflux --- ...ger-operator-bundle-1-14-pull-request.yaml | 24 +++++++++---------- ...ert-manager-operator-bundle-1-14-push.yaml | 24 +++++++++---------- 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml index 1018c65d..a5ee9825 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-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-14-push.yaml b/.tekton/cert-manager-operator-bundle-1-14-push.yaml index 92a83aaa..3aeb10fc 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-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 fd0422d280110618c75c841649bdd512ce281aa5 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Tue, 29 Jul 2025 06:26:23 +0000 Subject: [PATCH 65/93] Red Hat Konflux update cert-manager-operator-bundle-1-14 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-14-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-14-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml index a5ee9825..9d0b765b 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-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-14-push.yaml b/.tekton/cert-manager-operator-bundle-1-14-push.yaml index 3aeb10fc..4126f00f 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-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 8b2d50fa2edf31d19f8a6ca12298d03887365f91 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Thu, 31 Jul 2025 14:41:57 +0000 Subject: [PATCH 66/93] Red Hat Konflux update cert-manager-operator-bundle-1-14 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-14-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-14-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml index 9d0b765b..c9c1aab4 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-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-14-push.yaml b/.tekton/cert-manager-operator-bundle-1-14-push.yaml index 4126f00f..33ec7627 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-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 c2310a46f13a3a2b93784b8395504d74d4564c47 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Fri, 1 Aug 2025 17:58:48 +0000 Subject: [PATCH 67/93] Red Hat Konflux update cert-manager-operator-bundle-1-14 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-14-pull-request.yaml | 6 +++--- .tekton/cert-manager-operator-bundle-1-14-push.yaml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml index c9c1aab4..9c9a1fb9 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-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-14-push.yaml b/.tekton/cert-manager-operator-bundle-1-14-push.yaml index 33ec7627..b1898a85 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-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 265eb78af4a7aa6f320220f7741a00aa3560938c Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Tue, 5 Aug 2025 07:51:36 +0000 Subject: [PATCH 68/93] Red Hat Konflux update cert-manager-operator-bundle-1-14 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-14-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-14-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml index 9c9a1fb9..dd659519 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-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-14-push.yaml b/.tekton/cert-manager-operator-bundle-1-14-push.yaml index b1898a85..7f1224fc 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-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 d92b84e9e0f54f9f8352b4783fbf02fb8e190a63 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Wed, 6 Aug 2025 00:38:19 +0000 Subject: [PATCH 69/93] Red Hat Konflux update cert-manager-operator-bundle-1-14 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-14-pull-request.yaml | 4 ++-- .tekton/cert-manager-operator-bundle-1-14-push.yaml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml index dd659519..0bc70285 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-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-14-push.yaml b/.tekton/cert-manager-operator-bundle-1-14-push.yaml index 7f1224fc..dc124f33 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-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 2fd0085cb589ca8ddbf1c13a0ae501fdaea7e8c5 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Wed, 6 Aug 2025 13:57:08 +0000 Subject: [PATCH 70/93] Red Hat Konflux update cert-manager-operator-bundle-1-14 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-14-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-14-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml index 0bc70285..90597a84 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-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-14-push.yaml b/.tekton/cert-manager-operator-bundle-1-14-push.yaml index dc124f33..c26888bb 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-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 adb0e81ca5b38f6eb902b1ce6efc414d8a7e6540 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Wed, 6 Aug 2025 15:10:52 +0000 Subject: [PATCH 71/93] Red Hat Konflux update cert-manager-operator-bundle-1-14 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-14-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-14-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml index 90597a84..6de5ac8e 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-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-14-push.yaml b/.tekton/cert-manager-operator-bundle-1-14-push.yaml index c26888bb..5cea25a0 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-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 2c44a626d4a7d120275a320c0a3f81cd906efd6f Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Thu, 7 Aug 2025 00:27:03 +0000 Subject: [PATCH 72/93] Red Hat Konflux update cert-manager-operator-bundle-1-14 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-14-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-14-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml index 6de5ac8e..5000132b 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-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-14-push.yaml b/.tekton/cert-manager-operator-bundle-1-14-push.yaml index 5cea25a0..4f0bf857 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-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 b149f7a4c0e549b2e2fcef89f61fdda5f5ea679c Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Thu, 7 Aug 2025 14:13:16 +0000 Subject: [PATCH 73/93] Red Hat Konflux update cert-manager-operator-bundle-1-14 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-14-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-14-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml index 5000132b..0c5f30cd 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-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-14-push.yaml b/.tekton/cert-manager-operator-bundle-1-14-push.yaml index 4f0bf857..317cbc89 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-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 8b1a93f2b6fb0420ebf7e15a24a0b054769073e5 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Fri, 8 Aug 2025 20:38:52 +0000 Subject: [PATCH 74/93] Red Hat Konflux update cert-manager-operator-bundle-1-14 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-14-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-14-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml index 0c5f30cd..b8a392fe 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-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-14-push.yaml b/.tekton/cert-manager-operator-bundle-1-14-push.yaml index 317cbc89..5d0426fb 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-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 5efec826fbbc1f1d702aa6a5bff3389c421afe44 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Tue, 12 Aug 2025 08:27:44 +0000 Subject: [PATCH 75/93] Red Hat Konflux update cert-manager-operator-bundle-1-14 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-14-pull-request.yaml | 6 +++--- .tekton/cert-manager-operator-bundle-1-14-push.yaml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml index b8a392fe..964a92b7 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-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-14-push.yaml b/.tekton/cert-manager-operator-bundle-1-14-push.yaml index 5d0426fb..b4d7064d 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-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 2e12305b184e2c433312c1511c5fee42aa2420cf Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Tue, 12 Aug 2025 12:27:40 +0000 Subject: [PATCH 76/93] Red Hat Konflux update cert-manager-operator-bundle-1-14 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-14-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-14-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml index 964a92b7..78d0ff5a 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-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-14-push.yaml b/.tekton/cert-manager-operator-bundle-1-14-push.yaml index b4d7064d..e1220844 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-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 967907c2686e0f7235b83bf9bdbd9cb6a144fdff Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Tue, 12 Aug 2025 16:30:12 +0000 Subject: [PATCH 77/93] Red Hat Konflux update cert-manager-operator-bundle-1-14 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-14-pull-request.yaml | 4 ++-- .tekton/cert-manager-operator-bundle-1-14-push.yaml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml index 78d0ff5a..7d920beb 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-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-14-push.yaml b/.tekton/cert-manager-operator-bundle-1-14-push.yaml index e1220844..ab971adb 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-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 7a8071f9f5f04ce2034acd898fac13f8daf6f702 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Wed, 13 Aug 2025 04:43:05 +0000 Subject: [PATCH 78/93] Red Hat Konflux update cert-manager-operator-bundle-1-14 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-14-pull-request.yaml | 4 ++-- .tekton/cert-manager-operator-bundle-1-14-push.yaml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml index 7d920beb..a7c17f68 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-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-14-push.yaml b/.tekton/cert-manager-operator-bundle-1-14-push.yaml index ab971adb..8b72da82 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-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 ad6d701e24e918dd00f4bf3f34768847fc903fb8 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Thu, 14 Aug 2025 15:35:56 +0000 Subject: [PATCH 79/93] Red Hat Konflux update cert-manager-operator-bundle-1-14 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-14-pull-request.yaml | 4 ++-- .tekton/cert-manager-operator-bundle-1-14-push.yaml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml index a7c17f68..496a60c4 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-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-14-push.yaml b/.tekton/cert-manager-operator-bundle-1-14-push.yaml index 8b72da82..fcdb499d 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-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 73aaab4592c52c426205e0d47a040a110c442ebf Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Sat, 16 Aug 2025 01:12:25 +0000 Subject: [PATCH 80/93] Red Hat Konflux update cert-manager-operator-bundle-1-14 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-14-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-14-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml index 496a60c4..fc46f2b9 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-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-14-push.yaml b/.tekton/cert-manager-operator-bundle-1-14-push.yaml index fcdb499d..5a159d50 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-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 1c96ad564396794e7ea0d8cf40e6d20aab016e51 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Mon, 18 Aug 2025 13:29:05 +0000 Subject: [PATCH 81/93] Red Hat Konflux update cert-manager-operator-bundle-1-14 Signed-off-by: red-hat-konflux --- ...anager-operator-bundle-1-14-pull-request.yaml | 16 ++++++++-------- .../cert-manager-operator-bundle-1-14-push.yaml | 16 ++++++++-------- 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml index fc46f2b9..9df8e9f0 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-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-14-push.yaml b/.tekton/cert-manager-operator-bundle-1-14-push.yaml index 5a159d50..5a41671d 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-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 ccdf16b4732f368fc7e837b0d448e0ca40c34050 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Tue, 19 Aug 2025 11:57:34 +0000 Subject: [PATCH 82/93] Red Hat Konflux update cert-manager-operator-bundle-1-14 Signed-off-by: red-hat-konflux --- ...cert-manager-operator-bundle-1-14-pull-request.yaml | 10 +++++----- .tekton/cert-manager-operator-bundle-1-14-push.yaml | 10 +++++----- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml index 9df8e9f0..4c29bb35 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-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-14-push.yaml b/.tekton/cert-manager-operator-bundle-1-14-push.yaml index 5a41671d..733755bd 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-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 99e56db0a87fad864c97e30d026e0115e4657d2b Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Tue, 19 Aug 2025 15:26:18 +0000 Subject: [PATCH 83/93] Red Hat Konflux update cert-manager-operator-bundle-1-14 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-14-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-14-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml index 4c29bb35..b79611d9 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-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-14-push.yaml b/.tekton/cert-manager-operator-bundle-1-14-push.yaml index 733755bd..6f1ef47f 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-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 fe2605e9dd6f4ca5ffd7a0c2f77baa4ed62e04dd Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Wed, 20 Aug 2025 16:54:34 +0000 Subject: [PATCH 84/93] Red Hat Konflux update cert-manager-operator-bundle-1-14 Signed-off-by: red-hat-konflux --- ...ager-operator-bundle-1-14-pull-request.yaml | 18 ++---------------- ...cert-manager-operator-bundle-1-14-push.yaml | 18 ++---------------- 2 files changed, 4 insertions(+), 32 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml index b79611d9..19fda048 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-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-14-push.yaml b/.tekton/cert-manager-operator-bundle-1-14-push.yaml index 6f1ef47f..8066a3bc 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-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 d4027e9b813fbe88a34e56fadfc94908418d3077 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Wed, 20 Aug 2025 18:15:20 +0000 Subject: [PATCH 85/93] Red Hat Konflux update cert-manager-operator-bundle-1-14 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-14-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-14-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml index 19fda048..4bb1bbe1 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-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-14-push.yaml b/.tekton/cert-manager-operator-bundle-1-14-push.yaml index 8066a3bc..a22e6710 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-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 23f269d2fe664b3572f5fe12836cf4deb11780d7 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Thu, 21 Aug 2025 11:06:17 +0000 Subject: [PATCH 86/93] Red Hat Konflux update cert-manager-operator-bundle-1-14 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-14-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-14-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml index 4bb1bbe1..33f94102 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-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-14-push.yaml b/.tekton/cert-manager-operator-bundle-1-14-push.yaml index a22e6710..641f8c29 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-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 922f849fdaac2331cc3ef677b95a676a0c008ca6 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Mon, 25 Aug 2025 09:04:57 +0000 Subject: [PATCH 87/93] Red Hat Konflux update cert-manager-operator-bundle-1-14 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-14-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-14-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml index 33f94102..a692a62e 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-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-14-push.yaml b/.tekton/cert-manager-operator-bundle-1-14-push.yaml index 641f8c29..8cf85fac 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-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 07129d22accd0192348cdfe62bb067360916967a Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Mon, 25 Aug 2025 14:03:53 +0000 Subject: [PATCH 88/93] Red Hat Konflux update cert-manager-operator-bundle-1-14 Signed-off-by: red-hat-konflux --- ...cert-manager-operator-bundle-1-14-pull-request.yaml | 10 +++++----- .tekton/cert-manager-operator-bundle-1-14-push.yaml | 10 +++++----- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml index a692a62e..88ebdd09 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-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-14-push.yaml b/.tekton/cert-manager-operator-bundle-1-14-push.yaml index 8cf85fac..176ef758 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-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 39ddd3031f7b97af42ab0aae20635d0d17c45233 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Mon, 25 Aug 2025 15:39:48 +0000 Subject: [PATCH 89/93] Red Hat Konflux update cert-manager-operator-bundle-1-14 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-14-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-14-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml index 88ebdd09..e6e5d763 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-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-14-push.yaml b/.tekton/cert-manager-operator-bundle-1-14-push.yaml index 176ef758..aa7c475e 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-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 929957aa318682f7dc7e929e1e66fbc5825eaba1 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Tue, 26 Aug 2025 11:01:51 +0000 Subject: [PATCH 90/93] Red Hat Konflux update cert-manager-operator-bundle-1-14 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-14-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-14-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml index e6e5d763..6330e90b 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-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-14-push.yaml b/.tekton/cert-manager-operator-bundle-1-14-push.yaml index aa7c475e..5f0c7ba4 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-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 f7cd0c89daf296a7fe38d54122684cbef6de521b Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Tue, 26 Aug 2025 13:36:49 +0000 Subject: [PATCH 91/93] Red Hat Konflux update cert-manager-operator-bundle-1-14 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-14-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-14-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml index 6330e90b..c9783001 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-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-14-push.yaml b/.tekton/cert-manager-operator-bundle-1-14-push.yaml index 5f0c7ba4..020a6955 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-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 319a48cd463c015e7a88c242892212a7b9a64823 Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Wed, 27 Aug 2025 15:53:43 +0000 Subject: [PATCH 92/93] Red Hat Konflux update cert-manager-operator-bundle-1-14 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-14-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-14-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml index c9783001..9d005e73 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-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-14-push.yaml b/.tekton/cert-manager-operator-bundle-1-14-push.yaml index 020a6955..429dd8bf 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-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 cc606c8caad3b16f19c371e507a2d1762fb41afc Mon Sep 17 00:00:00 2001 From: red-hat-konflux Date: Mon, 1 Sep 2025 12:05:39 +0000 Subject: [PATCH 93/93] Red Hat Konflux update cert-manager-operator-bundle-1-14 Signed-off-by: red-hat-konflux --- .tekton/cert-manager-operator-bundle-1-14-pull-request.yaml | 2 +- .tekton/cert-manager-operator-bundle-1-14-push.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml b/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml index 9d005e73..023fc4e8 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-pull-request.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-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-14-push.yaml b/.tekton/cert-manager-operator-bundle-1-14-push.yaml index 429dd8bf..fe1c3334 100644 --- a/.tekton/cert-manager-operator-bundle-1-14-push.yaml +++ b/.tekton/cert-manager-operator-bundle-1-14-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