From 26ac1e560ad3311a6c17d3842bedcfa16ebd85c8 Mon Sep 17 00:00:00 2001 From: Pramod Bindal Date: Fri, 30 Jan 2026 13:07:24 +0530 Subject: [PATCH 01/18] Add operator multi-cluster config # Conflicts: # config/downstream/applications/core.yaml # config/downstream/konflux.yaml # config/downstream/releases/1.22.yaml --- cmd/konflux/main.go | 8 +++++--- config/downstream/applications/index.yaml | 17 +---------------- config/downstream/konflux.yaml | 1 + .../releases/{next.yaml => multicluster.yaml} | 6 ++---- config/downstream/repos/tektoncd-operator.yaml | 7 +++++-- 5 files changed, 14 insertions(+), 25 deletions(-) rename config/downstream/releases/{next.yaml => multicluster.yaml} (90%) diff --git a/cmd/konflux/main.go b/cmd/konflux/main.go index 7d0c575a..61d80c6d 100644 --- a/cmd/konflux/main.go +++ b/cmd/konflux/main.go @@ -6,6 +6,7 @@ import ( "log" "os" "path/filepath" + "strconv" "strings" k "github.com/openshift-pipelines/hack/internal/konflux" @@ -137,8 +138,8 @@ func updateRepository(repo *k.Repository, a k.Application) error { } var branchName, upstreamBranch string - - if a.Release.Version == "main" || a.Release.Version == "next" { + _, err := strconv.ParseFloat(a.Release.Version, 64) + if err != nil { branchName = a.Release.Version upstreamBranch = "main" } else { @@ -224,7 +225,8 @@ func UpdateComponent(c *k.Component, repo k.Repository, app k.Application) error } } - //log.Printf("Using image prefix: %s", c.ImagePrefix) + log.Printf("Using ImagePrefix: %s", c.ImagePrefix) + log.Printf("Using ImageSuffix: %s", c.ImageSuffix) return nil } diff --git a/config/downstream/applications/index.yaml b/config/downstream/applications/index.yaml index 880fa1b1..1511e532 100644 --- a/config/downstream/applications/index.yaml +++ b/config/downstream/applications/index.yaml @@ -1,18 +1,3 @@ -- name: openshift-pipelines-index-4.16 - repos: - - operator-index-4.16 -- name: openshift-pipelines-index-4.17 - repos: - - operator-index-4.17 -- name: openshift-pipelines-index-4.18 - repos: - - operator-index-4.18 -- name: openshift-pipelines-index-4.19 - repos: - - operator-index-4.19 - name: openshift-pipelines-index-4.20 repos: - - operator-index-4.20 -#- name: openshift-pipelines-index-4.21 -# repos: -# - operator-index-4.21 + - operator-index-4.20 \ No newline at end of file diff --git a/config/downstream/konflux.yaml b/config/downstream/konflux.yaml index 8d364875..170649af 100644 --- a/config/downstream/konflux.yaml +++ b/config/downstream/konflux.yaml @@ -6,3 +6,4 @@ applications: - index versions: - "next" + - "1.22" diff --git a/config/downstream/releases/next.yaml b/config/downstream/releases/multicluster.yaml similarity index 90% rename from config/downstream/releases/next.yaml rename to config/downstream/releases/multicluster.yaml index f159bdb6..a209248c 100644 --- a/config/downstream/releases/next.yaml +++ b/config/downstream/releases/multicluster.yaml @@ -1,6 +1,6 @@ -version: next +version: multicluster image-suffix: -rhel9 -patch-version: next +patch-version: multicluster branches: git-init: upstream: release-v1.2.x @@ -22,8 +22,6 @@ branches: upstream: release-v0.43.x tektoncd-hub: upstream: release-v1.23.6 - tektoncd-operator: - upstream: release-v0.78.x tektoncd-pipeline: upstream: release-v1.9.x tektoncd-pruner: diff --git a/config/downstream/repos/tektoncd-operator.yaml b/config/downstream/repos/tektoncd-operator.yaml index 7aa6dff4..2127accc 100644 --- a/config/downstream/repos/tektoncd-operator.yaml +++ b/config/downstream/repos/tektoncd-operator.yaml @@ -1,13 +1,16 @@ name: operator -upstream: tektoncd/operator +upstream: openshift-pipelines/operator-multicluster +no-prefix-upstream: true components: - name: operator image-prefix: rhel9- - no-prefix-upstream: true no-image-suffix: true - name: webhook + image-prefix: operator- - name: proxy + image-prefix: operator- - name: bundle + image-prefix: operator- no-image-suffix: true nudges: - operator-{{hyphenize .Version.Version}}-index-4-20 From 4234d354f7b7ce4b2bfc99d3b5d6f7911e619af4 Mon Sep 17 00:00:00 2001 From: openshift-pipelines-bot Date: Fri, 30 Jan 2026 07:48:22 +0000 Subject: [PATCH 02/18] [bot:multi-cluster] Update Generated Konflux Config --- .../multicluster/application.yaml | 8 ++++++ .../component-index-4.20-multicluster.yaml | 18 ++++++++++++ .../image-index-4.20-multicluster.yaml | 22 +++++++++++++++ .../multicluster/release-plan.yaml | 28 +++++++++++++++++++ .../multicluster/tests.yaml | 27 ++++++++++++++++++ .../multicluster/application.yaml | 8 ++++++ .../component-bundle-multicluster.yaml | 18 ++++++++++++ .../component-operator-multicluster.yaml | 18 ++++++++++++ .../component-proxy-multicluster.yaml | 18 ++++++++++++ .../component-webhook-multicluster.yaml | 18 ++++++++++++ .../operator/image-bundle-multicluster.yaml | 22 +++++++++++++++ .../operator/image-operator-multicluster.yaml | 22 +++++++++++++++ .../operator/image-proxy-multicluster.yaml | 22 +++++++++++++++ .../operator/image-webhook-multicluster.yaml | 22 +++++++++++++++ .../multicluster/release-plan.yaml | 28 +++++++++++++++++++ .../multicluster/tests.yaml | 27 ++++++++++++++++++ 16 files changed, 326 insertions(+) create mode 100644 .konflux/openshift-pipelines-index-4.20/multicluster/application.yaml create mode 100644 .konflux/openshift-pipelines-index-4.20/multicluster/operator/component-index-4.20-multicluster.yaml create mode 100644 .konflux/openshift-pipelines-index-4.20/multicluster/operator/image-index-4.20-multicluster.yaml create mode 100644 .konflux/openshift-pipelines-index-4.20/multicluster/release-plan.yaml create mode 100644 .konflux/openshift-pipelines-index-4.20/multicluster/tests.yaml create mode 100644 .konflux/openshift-pipelines-operator/multicluster/application.yaml create mode 100644 .konflux/openshift-pipelines-operator/multicluster/operator/component-bundle-multicluster.yaml create mode 100644 .konflux/openshift-pipelines-operator/multicluster/operator/component-operator-multicluster.yaml create mode 100644 .konflux/openshift-pipelines-operator/multicluster/operator/component-proxy-multicluster.yaml create mode 100644 .konflux/openshift-pipelines-operator/multicluster/operator/component-webhook-multicluster.yaml create mode 100644 .konflux/openshift-pipelines-operator/multicluster/operator/image-bundle-multicluster.yaml create mode 100644 .konflux/openshift-pipelines-operator/multicluster/operator/image-operator-multicluster.yaml create mode 100644 .konflux/openshift-pipelines-operator/multicluster/operator/image-proxy-multicluster.yaml create mode 100644 .konflux/openshift-pipelines-operator/multicluster/operator/image-webhook-multicluster.yaml create mode 100644 .konflux/openshift-pipelines-operator/multicluster/release-plan.yaml create mode 100644 .konflux/openshift-pipelines-operator/multicluster/tests.yaml diff --git a/.konflux/openshift-pipelines-index-4.20/multicluster/application.yaml b/.konflux/openshift-pipelines-index-4.20/multicluster/application.yaml new file mode 100644 index 00000000..79e76d39 --- /dev/null +++ b/.konflux/openshift-pipelines-index-4.20/multicluster/application.yaml @@ -0,0 +1,8 @@ +# Generated for Konflux Application openshift-pipelines-index-4.20 by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Application +metadata: + name: openshift-pipelines-index-4-20-multicluster +spec: + displayName: openshift-pipelines-index-4-20-multicluster diff --git a/.konflux/openshift-pipelines-index-4.20/multicluster/operator/component-index-4.20-multicluster.yaml b/.konflux/openshift-pipelines-index-4.20/multicluster/operator/component-index-4.20-multicluster.yaml new file mode 100644 index 00000000..d34b6678 --- /dev/null +++ b/.konflux/openshift-pipelines-index-4.20/multicluster/operator/component-index-4.20-multicluster.yaml @@ -0,0 +1,18 @@ +# Generated for Konflux Application openshift-pipelines-index-4.20 by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Component +metadata: + annotations: + build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' + name: operator-multicluster-index-4-20 +spec: + componentName: index-4-20 + application: openshift-pipelines-index-4-20-multicluster + build-nudges-ref: + - + source: + git: + url: https://github.com/openshift-pipelines/operator.git + dockerfileUrl: .konflux/dockerfiles/index-4.20.Dockerfile + revision: multicluster diff --git a/.konflux/openshift-pipelines-index-4.20/multicluster/operator/image-index-4.20-multicluster.yaml b/.konflux/openshift-pipelines-index-4.20/multicluster/operator/image-index-4.20-multicluster.yaml new file mode 100644 index 00000000..4803cf00 --- /dev/null +++ b/.konflux/openshift-pipelines-index-4.20/multicluster/operator/image-index-4.20-multicluster.yaml @@ -0,0 +1,22 @@ +# Generated for Konflux Application openshift-pipelines-index-4.20 by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ImageRepository +metadata: + name: operator-multicluster-index-4-20 + annotations: + image-controller.appstudio.redhat.com/update-component-image: "true" + image-controller.appstudio.redhat.com/skip-repository-deletion: "true" + labels: + appstudio.redhat.com/component: operator-multicluster-index-4-20 + appstudio.redhat.com/application: openshift-pipelines-index-4-20-multicluster +spec: + image: + name: operator/pipelines-index-4.20 + visibility: public + notifications: + - config: + url: https://bombino.api.redhat.com/v1/sbom/quay/push + event: repo_push + method: webhook + title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-index-4.20/multicluster/release-plan.yaml b/.konflux/openshift-pipelines-index-4.20/multicluster/release-plan.yaml new file mode 100644 index 00000000..4a7c1e28 --- /dev/null +++ b/.konflux/openshift-pipelines-index-4.20/multicluster/release-plan.yaml @@ -0,0 +1,28 @@ +# Generated for Konflux Application openshift-pipelines-index-4.20 by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ReleasePlan +metadata: + labels: + release.appstudio.openshift.io/auto-release: "true" + release.appstudio.openshift.io/standing-attribution: 'true' + name: openshift-pipelines-index-4-20-multicluster-rp +spec: + application: openshift-pipelines-index-4-20-multicluster + tenantPipeline: + serviceAccountName: release-registry-openshift-pipelines-index-4-20 + pipelineRef: + resolver: git + params: + - name: url + value: https://github.com/openshift-pipelines/hack.git + - name: revision + # value: release-vmulticluster.x + value: main + - name: pathInRepo + value: pipelines/release-pipeline.yaml + params: + - name: release_version + value: "multicluster" + - name: release_to_github + value: "false" diff --git a/.konflux/openshift-pipelines-index-4.20/multicluster/tests.yaml b/.konflux/openshift-pipelines-index-4.20/multicluster/tests.yaml new file mode 100644 index 00000000..6d5108f1 --- /dev/null +++ b/.konflux/openshift-pipelines-index-4.20/multicluster/tests.yaml @@ -0,0 +1,27 @@ +# Generated for Konflux Application openshift-pipelines-index-4.20 by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1beta2 +kind: IntegrationTestScenario +metadata: + name: openshift-pipelines-index-4-20-multicluster-enterprise-contract +spec: + application: openshift-pipelines-index-4-20-multicluster + contexts: + - description: execute the integration test for a component + name: component + params: + - name: POLICY_CONFIGURATION + value: tekton-ecosystem-tenant/tekton-ecosystem-tenant-indexes + - name: TIMEOUT + value: "15m0s" + - name: SINGLE_COMPONENT + value: "true" + resolverRef: + params: + - name: url + value: "https://github.com/konflux-ci/build-definitions" + - name: revision + value: main + - name: pathInRepo + value: pipelines/enterprise-contract.yaml + resolver: git diff --git a/.konflux/openshift-pipelines-operator/multicluster/application.yaml b/.konflux/openshift-pipelines-operator/multicluster/application.yaml new file mode 100644 index 00000000..e37b1d5c --- /dev/null +++ b/.konflux/openshift-pipelines-operator/multicluster/application.yaml @@ -0,0 +1,8 @@ +# Generated for Konflux Application openshift-pipelines-operator by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Application +metadata: + name: openshift-pipelines-operator-multicluster +spec: + displayName: openshift-pipelines-operator-multicluster diff --git a/.konflux/openshift-pipelines-operator/multicluster/operator/component-bundle-multicluster.yaml b/.konflux/openshift-pipelines-operator/multicluster/operator/component-bundle-multicluster.yaml new file mode 100644 index 00000000..ce124ee5 --- /dev/null +++ b/.konflux/openshift-pipelines-operator/multicluster/operator/component-bundle-multicluster.yaml @@ -0,0 +1,18 @@ +# Generated for Konflux Application openshift-pipelines-operator by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Component +metadata: + annotations: + build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' + name: operator-multicluster-bundle +spec: + componentName: bundle + application: openshift-pipelines-operator-multicluster + build-nudges-ref: + - operator-multicluster-index-4-20 + source: + git: + url: https://github.com/openshift-pipelines/operator.git + dockerfileUrl: .konflux/dockerfiles/bundle.Dockerfile + revision: multicluster diff --git a/.konflux/openshift-pipelines-operator/multicluster/operator/component-operator-multicluster.yaml b/.konflux/openshift-pipelines-operator/multicluster/operator/component-operator-multicluster.yaml new file mode 100644 index 00000000..3bfd9dec --- /dev/null +++ b/.konflux/openshift-pipelines-operator/multicluster/operator/component-operator-multicluster.yaml @@ -0,0 +1,18 @@ +# Generated for Konflux Application openshift-pipelines-operator by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Component +metadata: + annotations: + build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' + name: operator-multicluster-operator +spec: + componentName: operator + application: openshift-pipelines-operator-multicluster + build-nudges-ref: + - operator-multicluster-bundle + source: + git: + url: https://github.com/openshift-pipelines/operator.git + dockerfileUrl: .konflux/dockerfiles/operator.Dockerfile + revision: multicluster diff --git a/.konflux/openshift-pipelines-operator/multicluster/operator/component-proxy-multicluster.yaml b/.konflux/openshift-pipelines-operator/multicluster/operator/component-proxy-multicluster.yaml new file mode 100644 index 00000000..04d80e84 --- /dev/null +++ b/.konflux/openshift-pipelines-operator/multicluster/operator/component-proxy-multicluster.yaml @@ -0,0 +1,18 @@ +# Generated for Konflux Application openshift-pipelines-operator by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Component +metadata: + annotations: + build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' + name: operator-multicluster-proxy +spec: + componentName: proxy + application: openshift-pipelines-operator-multicluster + build-nudges-ref: + - operator-multicluster-bundle + source: + git: + url: https://github.com/openshift-pipelines/operator.git + dockerfileUrl: .konflux/dockerfiles/proxy.Dockerfile + revision: multicluster diff --git a/.konflux/openshift-pipelines-operator/multicluster/operator/component-webhook-multicluster.yaml b/.konflux/openshift-pipelines-operator/multicluster/operator/component-webhook-multicluster.yaml new file mode 100644 index 00000000..9897aaa6 --- /dev/null +++ b/.konflux/openshift-pipelines-operator/multicluster/operator/component-webhook-multicluster.yaml @@ -0,0 +1,18 @@ +# Generated for Konflux Application openshift-pipelines-operator by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Component +metadata: + annotations: + build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' + name: operator-multicluster-webhook +spec: + componentName: webhook + application: openshift-pipelines-operator-multicluster + build-nudges-ref: + - operator-multicluster-bundle + source: + git: + url: https://github.com/openshift-pipelines/operator.git + dockerfileUrl: .konflux/dockerfiles/webhook.Dockerfile + revision: multicluster diff --git a/.konflux/openshift-pipelines-operator/multicluster/operator/image-bundle-multicluster.yaml b/.konflux/openshift-pipelines-operator/multicluster/operator/image-bundle-multicluster.yaml new file mode 100644 index 00000000..dc521fcb --- /dev/null +++ b/.konflux/openshift-pipelines-operator/multicluster/operator/image-bundle-multicluster.yaml @@ -0,0 +1,22 @@ +# Generated for Konflux Application openshift-pipelines-operator by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ImageRepository +metadata: + name: operator-multicluster-bundle + annotations: + image-controller.appstudio.redhat.com/update-component-image: "true" + image-controller.appstudio.redhat.com/skip-repository-deletion: "true" + labels: + appstudio.redhat.com/component: operator-multicluster-bundle + appstudio.redhat.com/application: openshift-pipelines-operator-multicluster +spec: + image: + name: pipelines-operator-bundle + visibility: public + notifications: + - config: + url: https://bombino.api.redhat.com/v1/sbom/quay/push + event: repo_push + method: webhook + title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-operator/multicluster/operator/image-operator-multicluster.yaml b/.konflux/openshift-pipelines-operator/multicluster/operator/image-operator-multicluster.yaml new file mode 100644 index 00000000..b4c62dd5 --- /dev/null +++ b/.konflux/openshift-pipelines-operator/multicluster/operator/image-operator-multicluster.yaml @@ -0,0 +1,22 @@ +# Generated for Konflux Application openshift-pipelines-operator by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ImageRepository +metadata: + name: operator-multicluster-operator + annotations: + image-controller.appstudio.redhat.com/update-component-image: "true" + image-controller.appstudio.redhat.com/skip-repository-deletion: "true" + labels: + appstudio.redhat.com/component: operator-multicluster-operator + appstudio.redhat.com/application: openshift-pipelines-operator-multicluster +spec: + image: + name: pipelines-rhel9-operator + visibility: public + notifications: + - config: + url: https://bombino.api.redhat.com/v1/sbom/quay/push + event: repo_push + method: webhook + title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-operator/multicluster/operator/image-proxy-multicluster.yaml b/.konflux/openshift-pipelines-operator/multicluster/operator/image-proxy-multicluster.yaml new file mode 100644 index 00000000..90b68532 --- /dev/null +++ b/.konflux/openshift-pipelines-operator/multicluster/operator/image-proxy-multicluster.yaml @@ -0,0 +1,22 @@ +# Generated for Konflux Application openshift-pipelines-operator by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ImageRepository +metadata: + name: operator-multicluster-proxy + annotations: + image-controller.appstudio.redhat.com/update-component-image: "true" + image-controller.appstudio.redhat.com/skip-repository-deletion: "true" + labels: + appstudio.redhat.com/component: operator-multicluster-proxy + appstudio.redhat.com/application: openshift-pipelines-operator-multicluster +spec: + image: + name: pipelines-operator-proxy-rhel9 + visibility: public + notifications: + - config: + url: https://bombino.api.redhat.com/v1/sbom/quay/push + event: repo_push + method: webhook + title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-operator/multicluster/operator/image-webhook-multicluster.yaml b/.konflux/openshift-pipelines-operator/multicluster/operator/image-webhook-multicluster.yaml new file mode 100644 index 00000000..520dec02 --- /dev/null +++ b/.konflux/openshift-pipelines-operator/multicluster/operator/image-webhook-multicluster.yaml @@ -0,0 +1,22 @@ +# Generated for Konflux Application openshift-pipelines-operator by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ImageRepository +metadata: + name: operator-multicluster-webhook + annotations: + image-controller.appstudio.redhat.com/update-component-image: "true" + image-controller.appstudio.redhat.com/skip-repository-deletion: "true" + labels: + appstudio.redhat.com/component: operator-multicluster-webhook + appstudio.redhat.com/application: openshift-pipelines-operator-multicluster +spec: + image: + name: pipelines-operator-webhook-rhel9 + visibility: public + notifications: + - config: + url: https://bombino.api.redhat.com/v1/sbom/quay/push + event: repo_push + method: webhook + title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-operator/multicluster/release-plan.yaml b/.konflux/openshift-pipelines-operator/multicluster/release-plan.yaml new file mode 100644 index 00000000..2126ef70 --- /dev/null +++ b/.konflux/openshift-pipelines-operator/multicluster/release-plan.yaml @@ -0,0 +1,28 @@ +# Generated for Konflux Application openshift-pipelines-operator by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ReleasePlan +metadata: + labels: + release.appstudio.openshift.io/auto-release: "true" + release.appstudio.openshift.io/standing-attribution: 'true' + name: openshift-pipelines-operator-multicluster-rp +spec: + application: openshift-pipelines-operator-multicluster + tenantPipeline: + serviceAccountName: release-registry-openshift-pipelines-operator + pipelineRef: + resolver: git + params: + - name: url + value: https://github.com/openshift-pipelines/hack.git + - name: revision + # value: release-vmulticluster.x + value: main + - name: pathInRepo + value: pipelines/release-pipeline.yaml + params: + - name: release_version + value: "multicluster" + - name: release_to_github + value: "false" diff --git a/.konflux/openshift-pipelines-operator/multicluster/tests.yaml b/.konflux/openshift-pipelines-operator/multicluster/tests.yaml new file mode 100644 index 00000000..f8cfaead --- /dev/null +++ b/.konflux/openshift-pipelines-operator/multicluster/tests.yaml @@ -0,0 +1,27 @@ +# Generated for Konflux Application openshift-pipelines-operator by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1beta2 +kind: IntegrationTestScenario +metadata: + name: openshift-pipelines-operator-multicluster-enterprise-contract +spec: + application: openshift-pipelines-operator-multicluster + contexts: + - description: execute the integration test for a component + name: component + params: + - name: POLICY_CONFIGURATION + value: tekton-ecosystem-tenant/tekton-ecosystem-tenant-containers + - name: TIMEOUT + value: "15m0s" + - name: SINGLE_COMPONENT + value: "true" + resolverRef: + params: + - name: url + value: "https://github.com/konflux-ci/build-definitions" + - name: revision + value: main + - name: pathInRepo + value: pipelines/enterprise-contract.yaml + resolver: git From 0f8da2e1913ba94505c2bcbde554793c03cf3430 Mon Sep 17 00:00:00 2001 From: Pramod Bindal Date: Fri, 30 Jan 2026 13:33:08 +0530 Subject: [PATCH 03/18] cleanup older version --- .konflux/0-1/syncer-service/application.yaml | 8 ------ .konflux/0-1/syncer-service/release-plan.yaml | 28 ------------------- .../syncer-service/release-plan_github.yaml | 28 ------------------- .konflux/0-1/syncer-service/role.yaml | 14 ---------- .../0-1/syncer-service/service-account.yaml | 10 ------- .../component-syncer-service-0.1.yaml | 18 ------------ .../image-syncer-service-0.1.yaml | 22 --------------- .konflux/0-1/syncer-service/tests.yaml | 27 ------------------ .konflux/0-1/tekton-kueue/application.yaml | 8 ------ .konflux/0-1/tekton-kueue/release-plan.yaml | 28 ------------------- .../0-1/tekton-kueue/release-plan_github.yaml | 28 ------------------- .konflux/0-1/tekton-kueue/role.yaml | 14 ---------- .../0-1/tekton-kueue/service-account.yaml | 10 ------- .../tekton-kueue/component-kueue-0.1.yaml | 18 ------------ .../tekton-kueue/image-kueue-0.1.yaml | 22 --------------- .konflux/0-1/tekton-kueue/tests.yaml | 27 ------------------ .konflux/0-2/tekton-kueue/application.yaml | 8 ------ .konflux/0-2/tekton-kueue/release-plan.yaml | 28 ------------------- .../0-2/tekton-kueue/release-plan_github.yaml | 28 ------------------- .konflux/0-2/tekton-kueue/role.yaml | 14 ---------- .../0-2/tekton-kueue/service-account.yaml | 10 ------- .../tekton-kueue/component-kueue-0.2.yaml | 18 ------------ .../tekton-kueue/image-kueue-0.2.yaml | 22 --------------- .konflux/0-2/tekton-kueue/tests.yaml | 27 ------------------ .../openshift-pipelines-cli/application.yaml | 8 ------ .../p12n-opc/component-opc-1.22.yaml | 18 ------------ .../p12n-opc/image-opc-1.22.yaml | 22 --------------- .../openshift-pipelines-cli/release-plan.yaml | 28 ------------------- .../1-22/openshift-pipelines-cli/role.yaml | 14 ---------- .../serve-tkn-cli/component-cli-1.22.yaml | 18 ------------ .../serve-tkn-cli/component-opc-1.22.yaml | 18 ------------ .../component-serve-tkn-cli-1.22.yaml | 18 ------------ .../serve-tkn-cli/component-tkn-1.22.yaml | 18 ------------ .../serve-tkn-cli/component-tkn-pac-1.22.yaml | 18 ------------ .../serve-tkn-cli/image-cli-1.22.yaml | 22 --------------- .../serve-tkn-cli/image-opc-1.22.yaml | 22 --------------- .../image-serve-tkn-cli-1.22.yaml | 22 --------------- .../serve-tkn-cli/image-tkn-1.22.yaml | 22 --------------- .../serve-tkn-cli/image-tkn-pac-1.22.yaml | 22 --------------- .../service-account.yaml | 10 ------- .../tektoncd-cli/component-tkn-1.22.yaml | 18 ------------ .../tektoncd-cli/image-tkn-1.22.yaml | 22 --------------- .../1-22/openshift-pipelines-cli/tests.yaml | 27 ------------------ .../openshift-pipelines-core/application.yaml | 8 ------ .../component-console-plugin-1.22.yaml | 18 ------------ .../image-console-plugin-1.22.yaml | 22 --------------- .../component-controller-1.22.yaml | 18 ------------ .../component-webhook-1.22.yaml | 18 ------------ .../image-controller-1.22.yaml | 22 --------------- .../image-webhook-1.22.yaml | 22 --------------- .../component-tekton-assist-1.22.yaml | 18 ------------ .../image-tekton-assist-1.22.yaml | 22 --------------- .../component-cache-1.22.yaml | 18 ------------ .../p12n-tekton-caches/image-cache-1.22.yaml | 22 --------------- .../pac-downstream/component-cli-1.22.yaml | 19 ------------- .../component-controller-1.22.yaml | 18 ------------ .../component-watcher-1.22.yaml | 18 ------------ .../component-webhook-1.22.yaml | 18 ------------ .../pac-downstream/image-cli-1.22.yaml | 22 --------------- .../pac-downstream/image-controller-1.22.yaml | 22 --------------- .../pac-downstream/image-watcher-1.22.yaml | 22 --------------- .../pac-downstream/image-webhook-1.22.yaml | 22 --------------- .../release-plan.yaml | 28 ------------------- .../1-22/openshift-pipelines-core/role.yaml | 14 ---------- .../service-account.yaml | 10 ------- .../tekton-kueue/component-kueue-1.22.yaml | 18 ------------ .../tekton-kueue/image-kueue-1.22.yaml | 22 --------------- .../component-controller-1.22.yaml | 18 ------------ .../image-controller-1.22.yaml | 22 --------------- .../component-git-init-1.22.yaml | 18 ------------ .../image-git-init-1.22.yaml | 22 --------------- .../tektoncd-hub/component-api-1.22.yaml | 18 ------------ .../component-db-migration-1.22.yaml | 18 ------------ .../tektoncd-hub/component-ui-1.22.yaml | 18 ------------ .../tektoncd-hub/image-api-1.22.yaml | 22 --------------- .../tektoncd-hub/image-db-migration-1.22.yaml | 22 --------------- .../tektoncd-hub/image-ui-1.22.yaml | 22 --------------- .../component-controller-1.22.yaml | 18 ------------ .../component-entrypoint-1.22.yaml | 18 ------------ .../component-events-1.22.yaml | 18 ------------ .../tektoncd-pipeline/component-nop-1.22.yaml | 18 ------------ .../component-resolvers-1.22.yaml | 18 ------------ .../component-sidecarlogresults-1.22.yaml | 18 ------------ .../component-webhook-1.22.yaml | 18 ------------ .../component-workingdirinit-1.22.yaml | 18 ------------ .../image-controller-1.22.yaml | 22 --------------- .../image-entrypoint-1.22.yaml | 22 --------------- .../tektoncd-pipeline/image-events-1.22.yaml | 22 --------------- .../tektoncd-pipeline/image-nop-1.22.yaml | 22 --------------- .../image-resolvers-1.22.yaml | 22 --------------- .../image-sidecarlogresults-1.22.yaml | 22 --------------- .../tektoncd-pipeline/image-webhook-1.22.yaml | 22 --------------- .../image-workingdirinit-1.22.yaml | 22 --------------- .../component-controller-1.22.yaml | 18 ------------ .../image-controller-1.22.yaml | 22 --------------- .../tektoncd-results/component-api-1.22.yaml | 18 ------------ ...component-retention-policy-agent-1.22.yaml | 18 ------------ .../component-watcher-1.22.yaml | 18 ------------ .../tektoncd-results/image-api-1.22.yaml | 22 --------------- .../image-retention-policy-agent-1.22.yaml | 22 --------------- .../tektoncd-results/image-watcher-1.22.yaml | 22 --------------- .../component-controller-1.22.yaml | 18 ------------ .../component-core-interceptors-1.22.yaml | 18 ------------ .../component-eventlistenersink-1.22.yaml | 18 ------------ .../component-webhook-1.22.yaml | 18 ------------ .../image-controller-1.22.yaml | 22 --------------- .../image-core-interceptors-1.22.yaml | 22 --------------- .../image-eventlistenersink-1.22.yaml | 22 --------------- .../tektoncd-triggers/image-webhook-1.22.yaml | 22 --------------- .../1-22/openshift-pipelines-core/tests.yaml | 27 ------------------ .../application.yaml | 8 ------ .../operator/component-index-4.16-1.22.yaml | 18 ------------ .../operator/image-index-4.16-1.22.yaml | 22 --------------- .../release-plan.yaml | 28 ------------------- .../openshift-pipelines-index-4.16/role.yaml | 14 ---------- .../service-account.yaml | 10 ------- .../openshift-pipelines-index-4.16/tests.yaml | 27 ------------------ .../application.yaml | 8 ------ .../operator/component-index-4.17-1.22.yaml | 18 ------------ .../operator/image-index-4.17-1.22.yaml | 22 --------------- .../release-plan.yaml | 28 ------------------- .../openshift-pipelines-index-4.17/role.yaml | 14 ---------- .../service-account.yaml | 10 ------- .../openshift-pipelines-index-4.17/tests.yaml | 27 ------------------ .../application.yaml | 8 ------ .../operator/component-index-4.18-1.22.yaml | 18 ------------ .../operator/image-index-4.18-1.22.yaml | 22 --------------- .../release-plan.yaml | 28 ------------------- .../openshift-pipelines-index-4.18/role.yaml | 14 ---------- .../service-account.yaml | 10 ------- .../openshift-pipelines-index-4.18/tests.yaml | 27 ------------------ .../application.yaml | 8 ------ .../operator/component-index-4.19-1.22.yaml | 18 ------------ .../operator/image-index-4.19-1.22.yaml | 22 --------------- .../release-plan.yaml | 28 ------------------- .../openshift-pipelines-index-4.19/role.yaml | 14 ---------- .../service-account.yaml | 10 ------- .../openshift-pipelines-index-4.19/tests.yaml | 27 ------------------ .../application.yaml | 8 ------ .../operator/component-index-4.20-1.22.yaml | 18 ------------ .../operator/image-index-4.20-1.22.yaml | 22 --------------- .../release-plan.yaml | 28 ------------------- .../openshift-pipelines-index-4.20/role.yaml | 14 ---------- .../service-account.yaml | 10 ------- .../openshift-pipelines-index-4.20/tests.yaml | 27 ------------------ .../application.yaml | 8 ------ .../operator/component-bundle-1.22.yaml | 18 ------------ .../operator/component-operator-1.22.yaml | 18 ------------ .../operator/component-proxy-1.22.yaml | 18 ------------ .../operator/component-webhook-1.22.yaml | 18 ------------ .../operator/image-bundle-1.22.yaml | 22 --------------- .../operator/image-operator-1.22.yaml | 22 --------------- .../operator/image-proxy-1.22.yaml | 22 --------------- .../operator/image-webhook-1.22.yaml | 22 --------------- .../release-plan.yaml | 28 ------------------- .../openshift-pipelines-operator/role.yaml | 14 ---------- .../service-account.yaml | 10 ------- .../openshift-pipelines-operator/tests.yaml | 27 ------------------ .../openshift-pipelines-cli/application.yaml | 8 ------ .../p12n-opc/component-opc-next.yaml | 18 ------------ .../p12n-opc/image-opc-next.yaml | 22 --------------- .../openshift-pipelines-cli/release-plan.yaml | 28 ------------------- .../next/openshift-pipelines-cli/role.yaml | 14 ---------- .../serve-tkn-cli/component-cli-next.yaml | 18 ------------ .../serve-tkn-cli/component-opc-next.yaml | 18 ------------ .../component-serve-tkn-cli-next.yaml | 18 ------------ .../serve-tkn-cli/component-tkn-next.yaml | 18 ------------ .../serve-tkn-cli/component-tkn-pac-next.yaml | 18 ------------ .../serve-tkn-cli/image-cli-next.yaml | 22 --------------- .../serve-tkn-cli/image-opc-next.yaml | 22 --------------- .../image-serve-tkn-cli-next.yaml | 22 --------------- .../serve-tkn-cli/image-tkn-next.yaml | 22 --------------- .../serve-tkn-cli/image-tkn-pac-next.yaml | 22 --------------- .../service-account.yaml | 10 ------- .../tektoncd-cli/component-tkn-next.yaml | 18 ------------ .../tektoncd-cli/image-tkn-next.yaml | 22 --------------- .../next/openshift-pipelines-cli/tests.yaml | 27 ------------------ .../openshift-pipelines-core/application.yaml | 8 ------ .../component-console-plugin-next.yaml | 18 ------------ .../image-console-plugin-next.yaml | 22 --------------- .../component-controller-next.yaml | 18 ------------ .../component-webhook-next.yaml | 18 ------------ .../image-controller-next.yaml | 22 --------------- .../image-webhook-next.yaml | 22 --------------- .../component-tekton-assist-next.yaml | 18 ------------ .../image-tekton-assist-next.yaml | 22 --------------- .../component-cache-next.yaml | 18 ------------ .../p12n-tekton-caches/image-cache-next.yaml | 22 --------------- .../pac-downstream/component-cli-next.yaml | 19 ------------- .../component-controller-next.yaml | 18 ------------ .../component-watcher-next.yaml | 18 ------------ .../component-webhook-next.yaml | 18 ------------ .../pac-downstream/image-cli-next.yaml | 22 --------------- .../pac-downstream/image-controller-next.yaml | 22 --------------- .../pac-downstream/image-watcher-next.yaml | 22 --------------- .../pac-downstream/image-webhook-next.yaml | 22 --------------- .../release-plan.yaml | 28 ------------------- .../next/openshift-pipelines-core/role.yaml | 14 ---------- .../service-account.yaml | 10 ------- .../tekton-kueue/component-kueue-next.yaml | 18 ------------ .../tekton-kueue/image-kueue-next.yaml | 22 --------------- .../component-controller-next.yaml | 18 ------------ .../image-controller-next.yaml | 22 --------------- .../component-git-init-next.yaml | 18 ------------ .../image-git-init-next.yaml | 22 --------------- .../tektoncd-hub/component-api-next.yaml | 18 ------------ .../component-db-migration-next.yaml | 18 ------------ .../tektoncd-hub/component-ui-next.yaml | 18 ------------ .../tektoncd-hub/image-api-next.yaml | 22 --------------- .../tektoncd-hub/image-db-migration-next.yaml | 22 --------------- .../tektoncd-hub/image-ui-next.yaml | 22 --------------- .../component-controller-next.yaml | 18 ------------ .../component-entrypoint-next.yaml | 18 ------------ .../component-events-next.yaml | 18 ------------ .../tektoncd-pipeline/component-nop-next.yaml | 18 ------------ .../component-resolvers-next.yaml | 18 ------------ .../component-sidecarlogresults-next.yaml | 18 ------------ .../component-webhook-next.yaml | 18 ------------ .../component-workingdirinit-next.yaml | 18 ------------ .../image-controller-next.yaml | 22 --------------- .../image-entrypoint-next.yaml | 22 --------------- .../tektoncd-pipeline/image-events-next.yaml | 22 --------------- .../tektoncd-pipeline/image-nop-next.yaml | 22 --------------- .../image-resolvers-next.yaml | 22 --------------- .../image-sidecarlogresults-next.yaml | 22 --------------- .../tektoncd-pipeline/image-webhook-next.yaml | 22 --------------- .../image-workingdirinit-next.yaml | 22 --------------- .../component-controller-next.yaml | 18 ------------ .../image-controller-next.yaml | 22 --------------- .../tektoncd-results/component-api-next.yaml | 18 ------------ ...component-retention-policy-agent-next.yaml | 18 ------------ .../component-watcher-next.yaml | 18 ------------ .../tektoncd-results/image-api-next.yaml | 22 --------------- .../image-retention-policy-agent-next.yaml | 22 --------------- .../tektoncd-results/image-watcher-next.yaml | 22 --------------- .../component-controller-next.yaml | 18 ------------ .../component-core-interceptors-next.yaml | 18 ------------ .../component-eventlistenersink-next.yaml | 18 ------------ .../component-webhook-next.yaml | 18 ------------ .../image-controller-next.yaml | 22 --------------- .../image-core-interceptors-next.yaml | 22 --------------- .../image-eventlistenersink-next.yaml | 22 --------------- .../tektoncd-triggers/image-webhook-next.yaml | 22 --------------- .../next/openshift-pipelines-core/tests.yaml | 27 ------------------ .../application.yaml | 8 ------ .../operator/component-index-4.16-next.yaml | 18 ------------ .../operator/image-index-4.16-next.yaml | 22 --------------- .../release-plan.yaml | 28 ------------------- .../openshift-pipelines-index-4.16/role.yaml | 14 ---------- .../service-account.yaml | 10 ------- .../openshift-pipelines-index-4.16/tests.yaml | 27 ------------------ .../application.yaml | 8 ------ .../operator/component-index-4.17-next.yaml | 18 ------------ .../operator/image-index-4.17-next.yaml | 22 --------------- .../release-plan.yaml | 28 ------------------- .../openshift-pipelines-index-4.17/role.yaml | 14 ---------- .../service-account.yaml | 10 ------- .../openshift-pipelines-index-4.17/tests.yaml | 27 ------------------ .../application.yaml | 8 ------ .../operator/component-index-4.18-next.yaml | 18 ------------ .../operator/image-index-4.18-next.yaml | 22 --------------- .../release-plan.yaml | 28 ------------------- .../openshift-pipelines-index-4.18/role.yaml | 14 ---------- .../service-account.yaml | 10 ------- .../openshift-pipelines-index-4.18/tests.yaml | 27 ------------------ .../application.yaml | 8 ------ .../operator/component-index-4.19-next.yaml | 18 ------------ .../operator/image-index-4.19-next.yaml | 22 --------------- .../release-plan.yaml | 28 ------------------- .../openshift-pipelines-index-4.19/role.yaml | 14 ---------- .../service-account.yaml | 10 ------- .../openshift-pipelines-index-4.19/tests.yaml | 27 ------------------ .../application.yaml | 8 ------ .../operator/component-index-4.20-next.yaml | 18 ------------ .../operator/image-index-4.20-next.yaml | 22 --------------- .../release-plan.yaml | 28 ------------------- .../openshift-pipelines-index-4.20/role.yaml | 14 ---------- .../service-account.yaml | 10 ------- .../openshift-pipelines-index-4.20/tests.yaml | 27 ------------------ .../application.yaml | 8 ------ .../operator/component-index-4.21-next.yaml | 18 ------------ .../operator/image-index-4.21-next.yaml | 22 --------------- .../release-plan.yaml | 28 ------------------- .../openshift-pipelines-index-4.21/role.yaml | 14 ---------- .../service-account.yaml | 10 ------- .../openshift-pipelines-index-4.21/tests.yaml | 27 ------------------ .../application.yaml | 8 ------ .../operator/component-bundle-next.yaml | 18 ------------ .../operator/component-operator-next.yaml | 18 ------------ .../operator/component-proxy-next.yaml | 18 ------------ .../operator/component-webhook-next.yaml | 18 ------------ .../operator/image-bundle-next.yaml | 22 --------------- .../operator/image-operator-next.yaml | 22 --------------- .../operator/image-proxy-next.yaml | 22 --------------- .../operator/image-webhook-next.yaml | 22 --------------- .../release-plan.yaml | 28 ------------------- .../openshift-pipelines-operator/role.yaml | 14 ---------- .../service-account.yaml | 10 ------- .../openshift-pipelines-operator/tests.yaml | 27 ------------------ 299 files changed, 5746 deletions(-) delete mode 100644 .konflux/0-1/syncer-service/application.yaml delete mode 100644 .konflux/0-1/syncer-service/release-plan.yaml delete mode 100644 .konflux/0-1/syncer-service/release-plan_github.yaml delete mode 100644 .konflux/0-1/syncer-service/role.yaml delete mode 100644 .konflux/0-1/syncer-service/service-account.yaml delete mode 100644 .konflux/0-1/syncer-service/syncer-service/component-syncer-service-0.1.yaml delete mode 100644 .konflux/0-1/syncer-service/syncer-service/image-syncer-service-0.1.yaml delete mode 100644 .konflux/0-1/syncer-service/tests.yaml delete mode 100644 .konflux/0-1/tekton-kueue/application.yaml delete mode 100644 .konflux/0-1/tekton-kueue/release-plan.yaml delete mode 100644 .konflux/0-1/tekton-kueue/release-plan_github.yaml delete mode 100644 .konflux/0-1/tekton-kueue/role.yaml delete mode 100644 .konflux/0-1/tekton-kueue/service-account.yaml delete mode 100644 .konflux/0-1/tekton-kueue/tekton-kueue/component-kueue-0.1.yaml delete mode 100644 .konflux/0-1/tekton-kueue/tekton-kueue/image-kueue-0.1.yaml delete mode 100644 .konflux/0-1/tekton-kueue/tests.yaml delete mode 100644 .konflux/0-2/tekton-kueue/application.yaml delete mode 100644 .konflux/0-2/tekton-kueue/release-plan.yaml delete mode 100644 .konflux/0-2/tekton-kueue/release-plan_github.yaml delete mode 100644 .konflux/0-2/tekton-kueue/role.yaml delete mode 100644 .konflux/0-2/tekton-kueue/service-account.yaml delete mode 100644 .konflux/0-2/tekton-kueue/tekton-kueue/component-kueue-0.2.yaml delete mode 100644 .konflux/0-2/tekton-kueue/tekton-kueue/image-kueue-0.2.yaml delete mode 100644 .konflux/0-2/tekton-kueue/tests.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-cli/application.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-cli/p12n-opc/component-opc-1.22.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-cli/p12n-opc/image-opc-1.22.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-cli/release-plan.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-cli/role.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-cli/serve-tkn-cli/component-cli-1.22.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-cli/serve-tkn-cli/component-opc-1.22.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-cli/serve-tkn-cli/component-serve-tkn-cli-1.22.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-cli/serve-tkn-cli/component-tkn-1.22.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-cli/serve-tkn-cli/component-tkn-pac-1.22.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-cli/serve-tkn-cli/image-cli-1.22.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-cli/serve-tkn-cli/image-opc-1.22.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-cli/serve-tkn-cli/image-serve-tkn-cli-1.22.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-cli/serve-tkn-cli/image-tkn-1.22.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-cli/serve-tkn-cli/image-tkn-pac-1.22.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-cli/service-account.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-cli/tektoncd-cli/component-tkn-1.22.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-cli/tektoncd-cli/image-tkn-1.22.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-cli/tests.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-core/application.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-core/p12n-console-plugin/component-console-plugin-1.22.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-core/p12n-console-plugin/image-console-plugin-1.22.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-core/p12n-manual-approval-gate/component-controller-1.22.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-core/p12n-manual-approval-gate/component-webhook-1.22.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-core/p12n-manual-approval-gate/image-controller-1.22.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-core/p12n-manual-approval-gate/image-webhook-1.22.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-core/p12n-tekton-assist/component-tekton-assist-1.22.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-core/p12n-tekton-assist/image-tekton-assist-1.22.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-core/p12n-tekton-caches/component-cache-1.22.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-core/p12n-tekton-caches/image-cache-1.22.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-core/pac-downstream/component-cli-1.22.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-core/pac-downstream/component-controller-1.22.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-core/pac-downstream/component-watcher-1.22.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-core/pac-downstream/component-webhook-1.22.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-core/pac-downstream/image-cli-1.22.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-core/pac-downstream/image-controller-1.22.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-core/pac-downstream/image-watcher-1.22.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-core/pac-downstream/image-webhook-1.22.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-core/release-plan.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-core/role.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-core/service-account.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-core/tekton-kueue/component-kueue-1.22.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-core/tekton-kueue/image-kueue-1.22.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-core/tektoncd-chains/component-controller-1.22.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-core/tektoncd-chains/image-controller-1.22.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-core/tektoncd-git-clone/component-git-init-1.22.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-core/tektoncd-git-clone/image-git-init-1.22.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-core/tektoncd-hub/component-api-1.22.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-core/tektoncd-hub/component-db-migration-1.22.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-core/tektoncd-hub/component-ui-1.22.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-core/tektoncd-hub/image-api-1.22.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-core/tektoncd-hub/image-db-migration-1.22.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-core/tektoncd-hub/image-ui-1.22.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-core/tektoncd-pipeline/component-controller-1.22.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-core/tektoncd-pipeline/component-entrypoint-1.22.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-core/tektoncd-pipeline/component-events-1.22.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-core/tektoncd-pipeline/component-nop-1.22.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-core/tektoncd-pipeline/component-resolvers-1.22.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-core/tektoncd-pipeline/component-sidecarlogresults-1.22.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-core/tektoncd-pipeline/component-webhook-1.22.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-core/tektoncd-pipeline/component-workingdirinit-1.22.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-core/tektoncd-pipeline/image-controller-1.22.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-core/tektoncd-pipeline/image-entrypoint-1.22.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-core/tektoncd-pipeline/image-events-1.22.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-core/tektoncd-pipeline/image-nop-1.22.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-core/tektoncd-pipeline/image-resolvers-1.22.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-core/tektoncd-pipeline/image-sidecarlogresults-1.22.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-core/tektoncd-pipeline/image-webhook-1.22.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-core/tektoncd-pipeline/image-workingdirinit-1.22.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-core/tektoncd-pruner/component-controller-1.22.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-core/tektoncd-pruner/image-controller-1.22.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-core/tektoncd-results/component-api-1.22.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-core/tektoncd-results/component-retention-policy-agent-1.22.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-core/tektoncd-results/component-watcher-1.22.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-core/tektoncd-results/image-api-1.22.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-core/tektoncd-results/image-retention-policy-agent-1.22.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-core/tektoncd-results/image-watcher-1.22.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-core/tektoncd-triggers/component-controller-1.22.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-core/tektoncd-triggers/component-core-interceptors-1.22.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-core/tektoncd-triggers/component-eventlistenersink-1.22.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-core/tektoncd-triggers/component-webhook-1.22.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-core/tektoncd-triggers/image-controller-1.22.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-core/tektoncd-triggers/image-core-interceptors-1.22.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-core/tektoncd-triggers/image-eventlistenersink-1.22.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-core/tektoncd-triggers/image-webhook-1.22.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-core/tests.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-index-4.16/application.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-index-4.16/operator/component-index-4.16-1.22.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-index-4.16/operator/image-index-4.16-1.22.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-index-4.16/release-plan.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-index-4.16/role.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-index-4.16/service-account.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-index-4.16/tests.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-index-4.17/application.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-index-4.17/operator/component-index-4.17-1.22.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-index-4.17/operator/image-index-4.17-1.22.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-index-4.17/release-plan.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-index-4.17/role.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-index-4.17/service-account.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-index-4.17/tests.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-index-4.18/application.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-index-4.18/operator/component-index-4.18-1.22.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-index-4.18/operator/image-index-4.18-1.22.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-index-4.18/release-plan.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-index-4.18/role.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-index-4.18/service-account.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-index-4.18/tests.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-index-4.19/application.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-index-4.19/operator/component-index-4.19-1.22.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-index-4.19/operator/image-index-4.19-1.22.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-index-4.19/release-plan.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-index-4.19/role.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-index-4.19/service-account.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-index-4.19/tests.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-index-4.20/application.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-index-4.20/operator/component-index-4.20-1.22.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-index-4.20/operator/image-index-4.20-1.22.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-index-4.20/release-plan.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-index-4.20/role.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-index-4.20/service-account.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-index-4.20/tests.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-operator/application.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-operator/operator/component-bundle-1.22.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-operator/operator/component-operator-1.22.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-operator/operator/component-proxy-1.22.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-operator/operator/component-webhook-1.22.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-operator/operator/image-bundle-1.22.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-operator/operator/image-operator-1.22.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-operator/operator/image-proxy-1.22.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-operator/operator/image-webhook-1.22.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-operator/release-plan.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-operator/role.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-operator/service-account.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-operator/tests.yaml delete mode 100644 .konflux/next/openshift-pipelines-cli/application.yaml delete mode 100644 .konflux/next/openshift-pipelines-cli/p12n-opc/component-opc-next.yaml delete mode 100644 .konflux/next/openshift-pipelines-cli/p12n-opc/image-opc-next.yaml delete mode 100644 .konflux/next/openshift-pipelines-cli/release-plan.yaml delete mode 100644 .konflux/next/openshift-pipelines-cli/role.yaml delete mode 100644 .konflux/next/openshift-pipelines-cli/serve-tkn-cli/component-cli-next.yaml delete mode 100644 .konflux/next/openshift-pipelines-cli/serve-tkn-cli/component-opc-next.yaml delete mode 100644 .konflux/next/openshift-pipelines-cli/serve-tkn-cli/component-serve-tkn-cli-next.yaml delete mode 100644 .konflux/next/openshift-pipelines-cli/serve-tkn-cli/component-tkn-next.yaml delete mode 100644 .konflux/next/openshift-pipelines-cli/serve-tkn-cli/component-tkn-pac-next.yaml delete mode 100644 .konflux/next/openshift-pipelines-cli/serve-tkn-cli/image-cli-next.yaml delete mode 100644 .konflux/next/openshift-pipelines-cli/serve-tkn-cli/image-opc-next.yaml delete mode 100644 .konflux/next/openshift-pipelines-cli/serve-tkn-cli/image-serve-tkn-cli-next.yaml delete mode 100644 .konflux/next/openshift-pipelines-cli/serve-tkn-cli/image-tkn-next.yaml delete mode 100644 .konflux/next/openshift-pipelines-cli/serve-tkn-cli/image-tkn-pac-next.yaml delete mode 100644 .konflux/next/openshift-pipelines-cli/service-account.yaml delete mode 100644 .konflux/next/openshift-pipelines-cli/tektoncd-cli/component-tkn-next.yaml delete mode 100644 .konflux/next/openshift-pipelines-cli/tektoncd-cli/image-tkn-next.yaml delete mode 100644 .konflux/next/openshift-pipelines-cli/tests.yaml delete mode 100644 .konflux/next/openshift-pipelines-core/application.yaml delete mode 100644 .konflux/next/openshift-pipelines-core/p12n-console-plugin/component-console-plugin-next.yaml delete mode 100644 .konflux/next/openshift-pipelines-core/p12n-console-plugin/image-console-plugin-next.yaml delete mode 100644 .konflux/next/openshift-pipelines-core/p12n-manual-approval-gate/component-controller-next.yaml delete mode 100644 .konflux/next/openshift-pipelines-core/p12n-manual-approval-gate/component-webhook-next.yaml delete mode 100644 .konflux/next/openshift-pipelines-core/p12n-manual-approval-gate/image-controller-next.yaml delete mode 100644 .konflux/next/openshift-pipelines-core/p12n-manual-approval-gate/image-webhook-next.yaml delete mode 100644 .konflux/next/openshift-pipelines-core/p12n-tekton-assist/component-tekton-assist-next.yaml delete mode 100644 .konflux/next/openshift-pipelines-core/p12n-tekton-assist/image-tekton-assist-next.yaml delete mode 100644 .konflux/next/openshift-pipelines-core/p12n-tekton-caches/component-cache-next.yaml delete mode 100644 .konflux/next/openshift-pipelines-core/p12n-tekton-caches/image-cache-next.yaml delete mode 100644 .konflux/next/openshift-pipelines-core/pac-downstream/component-cli-next.yaml delete mode 100644 .konflux/next/openshift-pipelines-core/pac-downstream/component-controller-next.yaml delete mode 100644 .konflux/next/openshift-pipelines-core/pac-downstream/component-watcher-next.yaml delete mode 100644 .konflux/next/openshift-pipelines-core/pac-downstream/component-webhook-next.yaml delete mode 100644 .konflux/next/openshift-pipelines-core/pac-downstream/image-cli-next.yaml delete mode 100644 .konflux/next/openshift-pipelines-core/pac-downstream/image-controller-next.yaml delete mode 100644 .konflux/next/openshift-pipelines-core/pac-downstream/image-watcher-next.yaml delete mode 100644 .konflux/next/openshift-pipelines-core/pac-downstream/image-webhook-next.yaml delete mode 100644 .konflux/next/openshift-pipelines-core/release-plan.yaml delete mode 100644 .konflux/next/openshift-pipelines-core/role.yaml delete mode 100644 .konflux/next/openshift-pipelines-core/service-account.yaml delete mode 100644 .konflux/next/openshift-pipelines-core/tekton-kueue/component-kueue-next.yaml delete mode 100644 .konflux/next/openshift-pipelines-core/tekton-kueue/image-kueue-next.yaml delete mode 100644 .konflux/next/openshift-pipelines-core/tektoncd-chains/component-controller-next.yaml delete mode 100644 .konflux/next/openshift-pipelines-core/tektoncd-chains/image-controller-next.yaml delete mode 100644 .konflux/next/openshift-pipelines-core/tektoncd-git-clone/component-git-init-next.yaml delete mode 100644 .konflux/next/openshift-pipelines-core/tektoncd-git-clone/image-git-init-next.yaml delete mode 100644 .konflux/next/openshift-pipelines-core/tektoncd-hub/component-api-next.yaml delete mode 100644 .konflux/next/openshift-pipelines-core/tektoncd-hub/component-db-migration-next.yaml delete mode 100644 .konflux/next/openshift-pipelines-core/tektoncd-hub/component-ui-next.yaml delete mode 100644 .konflux/next/openshift-pipelines-core/tektoncd-hub/image-api-next.yaml delete mode 100644 .konflux/next/openshift-pipelines-core/tektoncd-hub/image-db-migration-next.yaml delete mode 100644 .konflux/next/openshift-pipelines-core/tektoncd-hub/image-ui-next.yaml delete mode 100644 .konflux/next/openshift-pipelines-core/tektoncd-pipeline/component-controller-next.yaml delete mode 100644 .konflux/next/openshift-pipelines-core/tektoncd-pipeline/component-entrypoint-next.yaml delete mode 100644 .konflux/next/openshift-pipelines-core/tektoncd-pipeline/component-events-next.yaml delete mode 100644 .konflux/next/openshift-pipelines-core/tektoncd-pipeline/component-nop-next.yaml delete mode 100644 .konflux/next/openshift-pipelines-core/tektoncd-pipeline/component-resolvers-next.yaml delete mode 100644 .konflux/next/openshift-pipelines-core/tektoncd-pipeline/component-sidecarlogresults-next.yaml delete mode 100644 .konflux/next/openshift-pipelines-core/tektoncd-pipeline/component-webhook-next.yaml delete mode 100644 .konflux/next/openshift-pipelines-core/tektoncd-pipeline/component-workingdirinit-next.yaml delete mode 100644 .konflux/next/openshift-pipelines-core/tektoncd-pipeline/image-controller-next.yaml delete mode 100644 .konflux/next/openshift-pipelines-core/tektoncd-pipeline/image-entrypoint-next.yaml delete mode 100644 .konflux/next/openshift-pipelines-core/tektoncd-pipeline/image-events-next.yaml delete mode 100644 .konflux/next/openshift-pipelines-core/tektoncd-pipeline/image-nop-next.yaml delete mode 100644 .konflux/next/openshift-pipelines-core/tektoncd-pipeline/image-resolvers-next.yaml delete mode 100644 .konflux/next/openshift-pipelines-core/tektoncd-pipeline/image-sidecarlogresults-next.yaml delete mode 100644 .konflux/next/openshift-pipelines-core/tektoncd-pipeline/image-webhook-next.yaml delete mode 100644 .konflux/next/openshift-pipelines-core/tektoncd-pipeline/image-workingdirinit-next.yaml delete mode 100644 .konflux/next/openshift-pipelines-core/tektoncd-pruner/component-controller-next.yaml delete mode 100644 .konflux/next/openshift-pipelines-core/tektoncd-pruner/image-controller-next.yaml delete mode 100644 .konflux/next/openshift-pipelines-core/tektoncd-results/component-api-next.yaml delete mode 100644 .konflux/next/openshift-pipelines-core/tektoncd-results/component-retention-policy-agent-next.yaml delete mode 100644 .konflux/next/openshift-pipelines-core/tektoncd-results/component-watcher-next.yaml delete mode 100644 .konflux/next/openshift-pipelines-core/tektoncd-results/image-api-next.yaml delete mode 100644 .konflux/next/openshift-pipelines-core/tektoncd-results/image-retention-policy-agent-next.yaml delete mode 100644 .konflux/next/openshift-pipelines-core/tektoncd-results/image-watcher-next.yaml delete mode 100644 .konflux/next/openshift-pipelines-core/tektoncd-triggers/component-controller-next.yaml delete mode 100644 .konflux/next/openshift-pipelines-core/tektoncd-triggers/component-core-interceptors-next.yaml delete mode 100644 .konflux/next/openshift-pipelines-core/tektoncd-triggers/component-eventlistenersink-next.yaml delete mode 100644 .konflux/next/openshift-pipelines-core/tektoncd-triggers/component-webhook-next.yaml delete mode 100644 .konflux/next/openshift-pipelines-core/tektoncd-triggers/image-controller-next.yaml delete mode 100644 .konflux/next/openshift-pipelines-core/tektoncd-triggers/image-core-interceptors-next.yaml delete mode 100644 .konflux/next/openshift-pipelines-core/tektoncd-triggers/image-eventlistenersink-next.yaml delete mode 100644 .konflux/next/openshift-pipelines-core/tektoncd-triggers/image-webhook-next.yaml delete mode 100644 .konflux/next/openshift-pipelines-core/tests.yaml delete mode 100644 .konflux/next/openshift-pipelines-index-4.16/application.yaml delete mode 100644 .konflux/next/openshift-pipelines-index-4.16/operator/component-index-4.16-next.yaml delete mode 100644 .konflux/next/openshift-pipelines-index-4.16/operator/image-index-4.16-next.yaml delete mode 100644 .konflux/next/openshift-pipelines-index-4.16/release-plan.yaml delete mode 100644 .konflux/next/openshift-pipelines-index-4.16/role.yaml delete mode 100644 .konflux/next/openshift-pipelines-index-4.16/service-account.yaml delete mode 100644 .konflux/next/openshift-pipelines-index-4.16/tests.yaml delete mode 100644 .konflux/next/openshift-pipelines-index-4.17/application.yaml delete mode 100644 .konflux/next/openshift-pipelines-index-4.17/operator/component-index-4.17-next.yaml delete mode 100644 .konflux/next/openshift-pipelines-index-4.17/operator/image-index-4.17-next.yaml delete mode 100644 .konflux/next/openshift-pipelines-index-4.17/release-plan.yaml delete mode 100644 .konflux/next/openshift-pipelines-index-4.17/role.yaml delete mode 100644 .konflux/next/openshift-pipelines-index-4.17/service-account.yaml delete mode 100644 .konflux/next/openshift-pipelines-index-4.17/tests.yaml delete mode 100644 .konflux/next/openshift-pipelines-index-4.18/application.yaml delete mode 100644 .konflux/next/openshift-pipelines-index-4.18/operator/component-index-4.18-next.yaml delete mode 100644 .konflux/next/openshift-pipelines-index-4.18/operator/image-index-4.18-next.yaml delete mode 100644 .konflux/next/openshift-pipelines-index-4.18/release-plan.yaml delete mode 100644 .konflux/next/openshift-pipelines-index-4.18/role.yaml delete mode 100644 .konflux/next/openshift-pipelines-index-4.18/service-account.yaml delete mode 100644 .konflux/next/openshift-pipelines-index-4.18/tests.yaml delete mode 100644 .konflux/next/openshift-pipelines-index-4.19/application.yaml delete mode 100644 .konflux/next/openshift-pipelines-index-4.19/operator/component-index-4.19-next.yaml delete mode 100644 .konflux/next/openshift-pipelines-index-4.19/operator/image-index-4.19-next.yaml delete mode 100644 .konflux/next/openshift-pipelines-index-4.19/release-plan.yaml delete mode 100644 .konflux/next/openshift-pipelines-index-4.19/role.yaml delete mode 100644 .konflux/next/openshift-pipelines-index-4.19/service-account.yaml delete mode 100644 .konflux/next/openshift-pipelines-index-4.19/tests.yaml delete mode 100644 .konflux/next/openshift-pipelines-index-4.20/application.yaml delete mode 100644 .konflux/next/openshift-pipelines-index-4.20/operator/component-index-4.20-next.yaml delete mode 100644 .konflux/next/openshift-pipelines-index-4.20/operator/image-index-4.20-next.yaml delete mode 100644 .konflux/next/openshift-pipelines-index-4.20/release-plan.yaml delete mode 100644 .konflux/next/openshift-pipelines-index-4.20/role.yaml delete mode 100644 .konflux/next/openshift-pipelines-index-4.20/service-account.yaml delete mode 100644 .konflux/next/openshift-pipelines-index-4.20/tests.yaml delete mode 100644 .konflux/next/openshift-pipelines-index-4.21/application.yaml delete mode 100644 .konflux/next/openshift-pipelines-index-4.21/operator/component-index-4.21-next.yaml delete mode 100644 .konflux/next/openshift-pipelines-index-4.21/operator/image-index-4.21-next.yaml delete mode 100644 .konflux/next/openshift-pipelines-index-4.21/release-plan.yaml delete mode 100644 .konflux/next/openshift-pipelines-index-4.21/role.yaml delete mode 100644 .konflux/next/openshift-pipelines-index-4.21/service-account.yaml delete mode 100644 .konflux/next/openshift-pipelines-index-4.21/tests.yaml delete mode 100644 .konflux/next/openshift-pipelines-operator/application.yaml delete mode 100644 .konflux/next/openshift-pipelines-operator/operator/component-bundle-next.yaml delete mode 100644 .konflux/next/openshift-pipelines-operator/operator/component-operator-next.yaml delete mode 100644 .konflux/next/openshift-pipelines-operator/operator/component-proxy-next.yaml delete mode 100644 .konflux/next/openshift-pipelines-operator/operator/component-webhook-next.yaml delete mode 100644 .konflux/next/openshift-pipelines-operator/operator/image-bundle-next.yaml delete mode 100644 .konflux/next/openshift-pipelines-operator/operator/image-operator-next.yaml delete mode 100644 .konflux/next/openshift-pipelines-operator/operator/image-proxy-next.yaml delete mode 100644 .konflux/next/openshift-pipelines-operator/operator/image-webhook-next.yaml delete mode 100644 .konflux/next/openshift-pipelines-operator/release-plan.yaml delete mode 100644 .konflux/next/openshift-pipelines-operator/role.yaml delete mode 100644 .konflux/next/openshift-pipelines-operator/service-account.yaml delete mode 100644 .konflux/next/openshift-pipelines-operator/tests.yaml diff --git a/.konflux/0-1/syncer-service/application.yaml b/.konflux/0-1/syncer-service/application.yaml deleted file mode 100644 index 7d4f4e2f..00000000 --- a/.konflux/0-1/syncer-service/application.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Generated for Konflux Application syncer-service by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Application -metadata: - name: syncer-service-0-1 -spec: - displayName: syncer-service-0-1 diff --git a/.konflux/0-1/syncer-service/release-plan.yaml b/.konflux/0-1/syncer-service/release-plan.yaml deleted file mode 100644 index 5d91974e..00000000 --- a/.konflux/0-1/syncer-service/release-plan.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Generated for Konflux Application syncer-service by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ReleasePlan -metadata: - labels: - release.appstudio.openshift.io/auto-release: "true" - release.appstudio.openshift.io/standing-attribution: 'true' - name: syncer-service-0-1-rp -spec: - application: syncer-service-0-1 - tenantPipeline: - serviceAccountName: release-registry-syncer-service-0-1 - pipelineRef: - resolver: git - params: - - name: url - value: https://github.com/openshift-pipelines/hack.git - - name: revision - # value: release-v0.1.x - value: main - - name: pathInRepo - value: pipelines/release-pipeline.yaml - params: - - name: release_version - value: "v0.1.0" - - name: release_to_github - value: "false" diff --git a/.konflux/0-1/syncer-service/release-plan_github.yaml b/.konflux/0-1/syncer-service/release-plan_github.yaml deleted file mode 100644 index 82549eee..00000000 --- a/.konflux/0-1/syncer-service/release-plan_github.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Generated for Konflux Application syncer-service by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ReleasePlan -metadata: - labels: - release.appstudio.openshift.io/auto-release: "false" - release.appstudio.openshift.io/standing-attribution: 'true' - name: syncer-service-0-1-github-rp -spec: - application: syncer-service-0-1 - tenantPipeline: - serviceAccountName: release-registry-syncer-service-0-1 - pipelineRef: - resolver: git - params: - - name: url - value: https://github.com/openshift-pipelines/hack.git - - name: revision - # value: release-v0.1.x - value: main - - name: pathInRepo - value: pipelines/release-pipeline.yaml - params: - - name: release_version - value: "v0.1.0" - - name: release_to_github - value: "true" diff --git a/.konflux/0-1/syncer-service/role.yaml b/.konflux/0-1/syncer-service/role.yaml deleted file mode 100644 index 5a774a87..00000000 --- a/.konflux/0-1/syncer-service/role.yaml +++ /dev/null @@ -1,14 +0,0 @@ -# Generated for Konflux Application syncer-service by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: rbac.authorization.k8s.io/v1 -kind: RoleBinding -metadata: - name: release-plan-rolebinding-syncer-service-0-1 -subjects: - - kind: ServiceAccount - name: release-registry-syncer-service-0-1 - apiGroup: "" -roleRef: - kind: ClusterRole - name: konflux-releaser-bot-actions - apiGroup: rbac.authorization.k8s.io \ No newline at end of file diff --git a/.konflux/0-1/syncer-service/service-account.yaml b/.konflux/0-1/syncer-service/service-account.yaml deleted file mode 100644 index 0db87628..00000000 --- a/.konflux/0-1/syncer-service/service-account.yaml +++ /dev/null @@ -1,10 +0,0 @@ -# Generated for Konflux Application syncer-service by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: v1 -imagePullSecrets: - - name: release-registry-openshift-pipelines-quay -kind: ServiceAccount -metadata: - name: release-registry-syncer-service-0-1 -secrets: - - name: release-registry-openshift-pipelines-quay \ No newline at end of file diff --git a/.konflux/0-1/syncer-service/syncer-service/component-syncer-service-0.1.yaml b/.konflux/0-1/syncer-service/syncer-service/component-syncer-service-0.1.yaml deleted file mode 100644 index 83109429..00000000 --- a/.konflux/0-1/syncer-service/syncer-service/component-syncer-service-0.1.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application syncer-service by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: syncer-service-0-1-syncer-service -spec: - componentName: syncer-service - application: syncer-service-0-1 - build-nudges-ref: - - operator-0-1-bundle - source: - git: - url: https://github.com/openshift-pipelines/syncer-service.git - dockerfileUrl: Dockerfile - revision: release-v0.1.x diff --git a/.konflux/0-1/syncer-service/syncer-service/image-syncer-service-0.1.yaml b/.konflux/0-1/syncer-service/syncer-service/image-syncer-service-0.1.yaml deleted file mode 100644 index 99aae4fc..00000000 --- a/.konflux/0-1/syncer-service/syncer-service/image-syncer-service-0.1.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application syncer-service by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: syncer-service-rhel9 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: syncer-service-0-1-syncer-service - appstudio.redhat.com/application: syncer-service-0-1 -spec: - image: - name: syncer-service-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/0-1/syncer-service/tests.yaml b/.konflux/0-1/syncer-service/tests.yaml deleted file mode 100644 index ca66ac26..00000000 --- a/.konflux/0-1/syncer-service/tests.yaml +++ /dev/null @@ -1,27 +0,0 @@ -# Generated for Konflux Application syncer-service by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1beta2 -kind: IntegrationTestScenario -metadata: - name: syncer-service-0-1-enterprise-contract -spec: - application: syncer-service-0-1 - contexts: - - description: execute the integration test for a component - name: component - params: - - name: POLICY_CONFIGURATION - value: tekton-ecosystem-tenant/tekton-ecosystem-tenant-containers - - name: TIMEOUT - value: "15m0s" - - name: SINGLE_COMPONENT - value: "true" - resolverRef: - params: - - name: url - value: "https://github.com/konflux-ci/build-definitions" - - name: revision - value: main - - name: pathInRepo - value: pipelines/enterprise-contract.yaml - resolver: git diff --git a/.konflux/0-1/tekton-kueue/application.yaml b/.konflux/0-1/tekton-kueue/application.yaml deleted file mode 100644 index 15f8437e..00000000 --- a/.konflux/0-1/tekton-kueue/application.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Generated for Konflux Application tekton-kueue by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Application -metadata: - name: tekton-kueue-0-1 -spec: - displayName: tekton-kueue-0-1 diff --git a/.konflux/0-1/tekton-kueue/release-plan.yaml b/.konflux/0-1/tekton-kueue/release-plan.yaml deleted file mode 100644 index 2214f667..00000000 --- a/.konflux/0-1/tekton-kueue/release-plan.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Generated for Konflux Application tekton-kueue by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ReleasePlan -metadata: - labels: - release.appstudio.openshift.io/auto-release: "true" - release.appstudio.openshift.io/standing-attribution: 'true' - name: tekton-kueue-0-1-rp -spec: - application: tekton-kueue-0-1 - tenantPipeline: - serviceAccountName: release-registry-tekton-kueue-0-1 - pipelineRef: - resolver: git - params: - - name: url - value: https://github.com/openshift-pipelines/hack.git - - name: revision - # value: release-v0.1.x - value: main - - name: pathInRepo - value: pipelines/release-pipeline.yaml - params: - - name: release_version - value: "0.1.0" - - name: release_to_github - value: "false" diff --git a/.konflux/0-1/tekton-kueue/release-plan_github.yaml b/.konflux/0-1/tekton-kueue/release-plan_github.yaml deleted file mode 100644 index ea02aca0..00000000 --- a/.konflux/0-1/tekton-kueue/release-plan_github.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Generated for Konflux Application tekton-kueue by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ReleasePlan -metadata: - labels: - release.appstudio.openshift.io/auto-release: "false" - release.appstudio.openshift.io/standing-attribution: 'true' - name: tekton-kueue-0-1-github-rp -spec: - application: tekton-kueue-0-1 - tenantPipeline: - serviceAccountName: release-registry-tekton-kueue-0-1 - pipelineRef: - resolver: git - params: - - name: url - value: https://github.com/openshift-pipelines/hack.git - - name: revision - # value: release-v0.1.x - value: main - - name: pathInRepo - value: pipelines/release-pipeline.yaml - params: - - name: release_version - value: "0.1.0" - - name: release_to_github - value: "true" diff --git a/.konflux/0-1/tekton-kueue/role.yaml b/.konflux/0-1/tekton-kueue/role.yaml deleted file mode 100644 index 23e039d4..00000000 --- a/.konflux/0-1/tekton-kueue/role.yaml +++ /dev/null @@ -1,14 +0,0 @@ -# Generated for Konflux Application tekton-kueue by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: rbac.authorization.k8s.io/v1 -kind: RoleBinding -metadata: - name: release-plan-rolebinding-tekton-kueue-0-1 -subjects: - - kind: ServiceAccount - name: release-registry-tekton-kueue-0-1 - apiGroup: "" -roleRef: - kind: ClusterRole - name: konflux-releaser-bot-actions - apiGroup: rbac.authorization.k8s.io \ No newline at end of file diff --git a/.konflux/0-1/tekton-kueue/service-account.yaml b/.konflux/0-1/tekton-kueue/service-account.yaml deleted file mode 100644 index 7d05a1c0..00000000 --- a/.konflux/0-1/tekton-kueue/service-account.yaml +++ /dev/null @@ -1,10 +0,0 @@ -# Generated for Konflux Application tekton-kueue by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: v1 -imagePullSecrets: - - name: release-registry-openshift-pipelines-quay -kind: ServiceAccount -metadata: - name: release-registry-tekton-kueue-0-1 -secrets: - - name: release-registry-openshift-pipelines-quay \ No newline at end of file diff --git a/.konflux/0-1/tekton-kueue/tekton-kueue/component-kueue-0.1.yaml b/.konflux/0-1/tekton-kueue/tekton-kueue/component-kueue-0.1.yaml deleted file mode 100644 index 878eed13..00000000 --- a/.konflux/0-1/tekton-kueue/tekton-kueue/component-kueue-0.1.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application tekton-kueue by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: tekton-kueue-kueue-0-1 -spec: - componentName: kueue - application: tekton-kueue-0-1 - build-nudges-ref: - - tektoncd-operator-0-1-bundle - source: - git: - url: https://github.com/konflux-ci/tekton-kueue.git - dockerfileUrl: Dockerfile - revision: release-v0.1.x diff --git a/.konflux/0-1/tekton-kueue/tekton-kueue/image-kueue-0.1.yaml b/.konflux/0-1/tekton-kueue/tekton-kueue/image-kueue-0.1.yaml deleted file mode 100644 index 4d87f558..00000000 --- a/.konflux/0-1/tekton-kueue/tekton-kueue/image-kueue-0.1.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application tekton-kueue by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: kueue-rhel9 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: tekton-kueue-kueue-0-1 - appstudio.redhat.com/application: tekton-kueue-0-1 -spec: - image: - name: kueue-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/0-1/tekton-kueue/tests.yaml b/.konflux/0-1/tekton-kueue/tests.yaml deleted file mode 100644 index 30d83018..00000000 --- a/.konflux/0-1/tekton-kueue/tests.yaml +++ /dev/null @@ -1,27 +0,0 @@ -# Generated for Konflux Application tekton-kueue by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1beta2 -kind: IntegrationTestScenario -metadata: - name: tekton-kueue-0-1-enterprise-contract -spec: - application: tekton-kueue-0-1 - contexts: - - description: execute the integration test for an application - name: application - params: - - name: POLICY_CONFIGURATION - value: tekton-ecosystem-tenant/tekton-ecosystem-tenant-containers - - name: TIMEOUT - value: "15m0s" - - name: SINGLE_COMPONENT - value: "true" - resolverRef: - params: - - name: url - value: "https://github.com/konflux-ci/build-definitions" - - name: revision - value: main - - name: pathInRepo - value: pipelines/enterprise-contract.yaml - resolver: git diff --git a/.konflux/0-2/tekton-kueue/application.yaml b/.konflux/0-2/tekton-kueue/application.yaml deleted file mode 100644 index d7ab8962..00000000 --- a/.konflux/0-2/tekton-kueue/application.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Generated for Konflux Application tekton-kueue by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Application -metadata: - name: tekton-kueue-0-2 -spec: - displayName: tekton-kueue-0-2 diff --git a/.konflux/0-2/tekton-kueue/release-plan.yaml b/.konflux/0-2/tekton-kueue/release-plan.yaml deleted file mode 100644 index afe148fa..00000000 --- a/.konflux/0-2/tekton-kueue/release-plan.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Generated for Konflux Application tekton-kueue by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ReleasePlan -metadata: - labels: - release.appstudio.openshift.io/auto-release: "true" - release.appstudio.openshift.io/standing-attribution: 'true' - name: tekton-kueue-0-2-rp -spec: - application: tekton-kueue-0-2 - tenantPipeline: - serviceAccountName: release-registry-tekton-kueue-0-2 - pipelineRef: - resolver: git - params: - - name: url - value: https://github.com/openshift-pipelines/hack.git - - name: revision - # value: release-v0.2.x - value: main - - name: pathInRepo - value: pipelines/release-pipeline.yaml - params: - - name: release_version - value: "0.2.0" - - name: release_to_github - value: "false" diff --git a/.konflux/0-2/tekton-kueue/release-plan_github.yaml b/.konflux/0-2/tekton-kueue/release-plan_github.yaml deleted file mode 100644 index e4710696..00000000 --- a/.konflux/0-2/tekton-kueue/release-plan_github.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Generated for Konflux Application tekton-kueue by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ReleasePlan -metadata: - labels: - release.appstudio.openshift.io/auto-release: "false" - release.appstudio.openshift.io/standing-attribution: 'true' - name: tekton-kueue-0-2-github-rp -spec: - application: tekton-kueue-0-2 - tenantPipeline: - serviceAccountName: release-registry-tekton-kueue-0-2 - pipelineRef: - resolver: git - params: - - name: url - value: https://github.com/openshift-pipelines/hack.git - - name: revision - # value: release-v0.2.x - value: main - - name: pathInRepo - value: pipelines/release-pipeline.yaml - params: - - name: release_version - value: "0.2.0" - - name: release_to_github - value: "true" diff --git a/.konflux/0-2/tekton-kueue/role.yaml b/.konflux/0-2/tekton-kueue/role.yaml deleted file mode 100644 index bb0d014c..00000000 --- a/.konflux/0-2/tekton-kueue/role.yaml +++ /dev/null @@ -1,14 +0,0 @@ -# Generated for Konflux Application tekton-kueue by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: rbac.authorization.k8s.io/v1 -kind: RoleBinding -metadata: - name: release-plan-rolebinding-tekton-kueue-0-2 -subjects: - - kind: ServiceAccount - name: release-registry-tekton-kueue-0-2 - apiGroup: "" -roleRef: - kind: ClusterRole - name: konflux-releaser-bot-actions - apiGroup: rbac.authorization.k8s.io \ No newline at end of file diff --git a/.konflux/0-2/tekton-kueue/service-account.yaml b/.konflux/0-2/tekton-kueue/service-account.yaml deleted file mode 100644 index b52857cd..00000000 --- a/.konflux/0-2/tekton-kueue/service-account.yaml +++ /dev/null @@ -1,10 +0,0 @@ -# Generated for Konflux Application tekton-kueue by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: v1 -imagePullSecrets: - - name: release-registry-openshift-pipelines-quay -kind: ServiceAccount -metadata: - name: release-registry-tekton-kueue-0-2 -secrets: - - name: release-registry-openshift-pipelines-quay \ No newline at end of file diff --git a/.konflux/0-2/tekton-kueue/tekton-kueue/component-kueue-0.2.yaml b/.konflux/0-2/tekton-kueue/tekton-kueue/component-kueue-0.2.yaml deleted file mode 100644 index 97164552..00000000 --- a/.konflux/0-2/tekton-kueue/tekton-kueue/component-kueue-0.2.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application tekton-kueue by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: tekton-kueue-0-2-kueue -spec: - componentName: kueue - application: tekton-kueue-0-2 - build-nudges-ref: - - operator-0-2-bundle - source: - git: - url: https://github.com/konflux-ci/tekton-kueue.git - dockerfileUrl: Dockerfile - revision: release-v0.2.x diff --git a/.konflux/0-2/tekton-kueue/tekton-kueue/image-kueue-0.2.yaml b/.konflux/0-2/tekton-kueue/tekton-kueue/image-kueue-0.2.yaml deleted file mode 100644 index eaeed800..00000000 --- a/.konflux/0-2/tekton-kueue/tekton-kueue/image-kueue-0.2.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application tekton-kueue by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: kueue-rhel9 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: tekton-kueue-0-2-kueue - appstudio.redhat.com/application: tekton-kueue-0-2 -spec: - image: - name: kueue-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/0-2/tekton-kueue/tests.yaml b/.konflux/0-2/tekton-kueue/tests.yaml deleted file mode 100644 index 1fa6b300..00000000 --- a/.konflux/0-2/tekton-kueue/tests.yaml +++ /dev/null @@ -1,27 +0,0 @@ -# Generated for Konflux Application tekton-kueue by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1beta2 -kind: IntegrationTestScenario -metadata: - name: tekton-kueue-0-2-enterprise-contract -spec: - application: tekton-kueue-0-2 - contexts: - - description: execute the integration test for a component - name: component - params: - - name: POLICY_CONFIGURATION - value: tekton-ecosystem-tenant/tekton-ecosystem-tenant-containers - - name: TIMEOUT - value: "15m0s" - - name: SINGLE_COMPONENT - value: "true" - resolverRef: - params: - - name: url - value: "https://github.com/konflux-ci/build-definitions" - - name: revision - value: main - - name: pathInRepo - value: pipelines/enterprise-contract.yaml - resolver: git diff --git a/.konflux/1-22/openshift-pipelines-cli/application.yaml b/.konflux/1-22/openshift-pipelines-cli/application.yaml deleted file mode 100644 index 180d1429..00000000 --- a/.konflux/1-22/openshift-pipelines-cli/application.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-cli by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Application -metadata: - name: openshift-pipelines-cli-1-22 -spec: - displayName: openshift-pipelines-cli-1-22 diff --git a/.konflux/1-22/openshift-pipelines-cli/p12n-opc/component-opc-1.22.yaml b/.konflux/1-22/openshift-pipelines-cli/p12n-opc/component-opc-1.22.yaml deleted file mode 100644 index 5e8eba91..00000000 --- a/.konflux/1-22/openshift-pipelines-cli/p12n-opc/component-opc-1.22.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-cli by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: p12n-opc-1-22-opc -spec: - componentName: opc - application: openshift-pipelines-cli-1-22 - build-nudges-ref: - - operator-1-22-bundle - source: - git: - url: https://github.com/openshift-pipelines/p12n-opc.git - dockerfileUrl: .konflux/dockerfiles/opc.Dockerfile - revision: release-v1.22.x diff --git a/.konflux/1-22/openshift-pipelines-cli/p12n-opc/image-opc-1.22.yaml b/.konflux/1-22/openshift-pipelines-cli/p12n-opc/image-opc-1.22.yaml deleted file mode 100644 index b0e695e2..00000000 --- a/.konflux/1-22/openshift-pipelines-cli/p12n-opc/image-opc-1.22.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-cli by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pipelines-opc-rhel9 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: p12n-opc-1-22-opc - appstudio.redhat.com/application: openshift-pipelines-cli-1-22 -spec: - image: - name: pipelines-opc-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/1-22/openshift-pipelines-cli/release-plan.yaml b/.konflux/1-22/openshift-pipelines-cli/release-plan.yaml deleted file mode 100644 index 89bfeac6..00000000 --- a/.konflux/1-22/openshift-pipelines-cli/release-plan.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-cli by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ReleasePlan -metadata: - labels: - release.appstudio.openshift.io/auto-release: "true" - release.appstudio.openshift.io/standing-attribution: 'true' - name: openshift-pipelines-cli-1-22-rp -spec: - application: openshift-pipelines-cli-1-22 - tenantPipeline: - serviceAccountName: release-registry-openshift-pipelines-cli-1-22 - pipelineRef: - resolver: git - params: - - name: url - value: https://github.com/openshift-pipelines/hack.git - - name: revision - # value: release-v1.22.x - value: main - - name: pathInRepo - value: pipelines/release-pipeline.yaml - params: - - name: release_version - value: "1.22.0" - - name: release_to_github - value: "false" diff --git a/.konflux/1-22/openshift-pipelines-cli/role.yaml b/.konflux/1-22/openshift-pipelines-cli/role.yaml deleted file mode 100644 index 0a2a7b3b..00000000 --- a/.konflux/1-22/openshift-pipelines-cli/role.yaml +++ /dev/null @@ -1,14 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-cli by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: rbac.authorization.k8s.io/v1 -kind: RoleBinding -metadata: - name: release-plan-rolebinding-openshift-pipelines-cli-1-22 -subjects: - - kind: ServiceAccount - name: release-registry-openshift-pipelines-cli-1-22 - apiGroup: "" -roleRef: - kind: ClusterRole - name: konflux-releaser-bot-actions - apiGroup: rbac.authorization.k8s.io \ No newline at end of file diff --git a/.konflux/1-22/openshift-pipelines-cli/serve-tkn-cli/component-cli-1.22.yaml b/.konflux/1-22/openshift-pipelines-cli/serve-tkn-cli/component-cli-1.22.yaml deleted file mode 100644 index d34bf3e6..00000000 --- a/.konflux/1-22/openshift-pipelines-cli/serve-tkn-cli/component-cli-1.22.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-cli by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: serve-tkn-cli-1-22-cli -spec: - componentName: cli - application: openshift-pipelines-cli-1-22 - build-nudges-ref: - - operator-1-22-bundle - source: - git: - url: https://github.com/openshift-pipelines/serve-tkn-cli.git - dockerfileUrl: .konflux/dockerfiles/cli.Dockerfile - revision: release-v1.22.x diff --git a/.konflux/1-22/openshift-pipelines-cli/serve-tkn-cli/component-opc-1.22.yaml b/.konflux/1-22/openshift-pipelines-cli/serve-tkn-cli/component-opc-1.22.yaml deleted file mode 100644 index d2daabd7..00000000 --- a/.konflux/1-22/openshift-pipelines-cli/serve-tkn-cli/component-opc-1.22.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-cli by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: serve-tkn-cli-1-22-opc -spec: - componentName: opc - application: openshift-pipelines-cli-1-22 - build-nudges-ref: - - serve-tkn-cli-1-22-serve-tkn-cli - source: - git: - url: https://github.com/openshift-pipelines/serve-tkn-cli.git - dockerfileUrl: .konflux/dockerfiles/opc.Dockerfile - revision: release-v1.22.x diff --git a/.konflux/1-22/openshift-pipelines-cli/serve-tkn-cli/component-serve-tkn-cli-1.22.yaml b/.konflux/1-22/openshift-pipelines-cli/serve-tkn-cli/component-serve-tkn-cli-1.22.yaml deleted file mode 100644 index 31b4e842..00000000 --- a/.konflux/1-22/openshift-pipelines-cli/serve-tkn-cli/component-serve-tkn-cli-1.22.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-cli by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: serve-tkn-cli-1-22-serve-tkn-cli -spec: - componentName: serve-tkn-cli - application: openshift-pipelines-cli-1-22 - build-nudges-ref: - - operator-1-22-bundle - source: - git: - url: https://github.com/openshift-pipelines/serve-tkn-cli.git - dockerfileUrl: .konflux/dockerfiles/serve-tkn-cli.Dockerfile - revision: release-v1.22.x diff --git a/.konflux/1-22/openshift-pipelines-cli/serve-tkn-cli/component-tkn-1.22.yaml b/.konflux/1-22/openshift-pipelines-cli/serve-tkn-cli/component-tkn-1.22.yaml deleted file mode 100644 index 071a5281..00000000 --- a/.konflux/1-22/openshift-pipelines-cli/serve-tkn-cli/component-tkn-1.22.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-cli by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: serve-tkn-cli-1-22-tkn -spec: - componentName: tkn - application: openshift-pipelines-cli-1-22 - build-nudges-ref: - - serve-tkn-cli-1-22-serve-tkn-cli - source: - git: - url: https://github.com/openshift-pipelines/serve-tkn-cli.git - dockerfileUrl: .konflux/dockerfiles/tkn.Dockerfile - revision: release-v1.22.x diff --git a/.konflux/1-22/openshift-pipelines-cli/serve-tkn-cli/component-tkn-pac-1.22.yaml b/.konflux/1-22/openshift-pipelines-cli/serve-tkn-cli/component-tkn-pac-1.22.yaml deleted file mode 100644 index 2f7aa68a..00000000 --- a/.konflux/1-22/openshift-pipelines-cli/serve-tkn-cli/component-tkn-pac-1.22.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-cli by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: serve-tkn-cli-1-22-tkn-pac -spec: - componentName: tkn-pac - application: openshift-pipelines-cli-1-22 - build-nudges-ref: - - serve-tkn-cli-1-22-serve-tkn-cli - source: - git: - url: https://github.com/openshift-pipelines/serve-tkn-cli.git - dockerfileUrl: .konflux/dockerfiles/tkn-pac.Dockerfile - revision: release-v1.22.x diff --git a/.konflux/1-22/openshift-pipelines-cli/serve-tkn-cli/image-cli-1.22.yaml b/.konflux/1-22/openshift-pipelines-cli/serve-tkn-cli/image-cli-1.22.yaml deleted file mode 100644 index a6456130..00000000 --- a/.konflux/1-22/openshift-pipelines-cli/serve-tkn-cli/image-cli-1.22.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-cli by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pipelines-cli-rhel9 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: serve-tkn-cli-1-22-cli - appstudio.redhat.com/application: openshift-pipelines-cli-1-22 -spec: - image: - name: pipelines-cli-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/1-22/openshift-pipelines-cli/serve-tkn-cli/image-opc-1.22.yaml b/.konflux/1-22/openshift-pipelines-cli/serve-tkn-cli/image-opc-1.22.yaml deleted file mode 100644 index be5436ef..00000000 --- a/.konflux/1-22/openshift-pipelines-cli/serve-tkn-cli/image-opc-1.22.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-cli by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pipelines-opc-rhel9 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: serve-tkn-cli-1-22-opc - appstudio.redhat.com/application: openshift-pipelines-cli-1-22 -spec: - image: - name: pipelines-opc-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/1-22/openshift-pipelines-cli/serve-tkn-cli/image-serve-tkn-cli-1.22.yaml b/.konflux/1-22/openshift-pipelines-cli/serve-tkn-cli/image-serve-tkn-cli-1.22.yaml deleted file mode 100644 index f0542041..00000000 --- a/.konflux/1-22/openshift-pipelines-cli/serve-tkn-cli/image-serve-tkn-cli-1.22.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-cli by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pipelines-serve-tkn-cli-rhel9 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: serve-tkn-cli-1-22-serve-tkn-cli - appstudio.redhat.com/application: openshift-pipelines-cli-1-22 -spec: - image: - name: pipelines-serve-tkn-cli-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/1-22/openshift-pipelines-cli/serve-tkn-cli/image-tkn-1.22.yaml b/.konflux/1-22/openshift-pipelines-cli/serve-tkn-cli/image-tkn-1.22.yaml deleted file mode 100644 index 4f57e6c8..00000000 --- a/.konflux/1-22/openshift-pipelines-cli/serve-tkn-cli/image-tkn-1.22.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-cli by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pipelines-tkn-rhel9 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: serve-tkn-cli-1-22-tkn - appstudio.redhat.com/application: openshift-pipelines-cli-1-22 -spec: - image: - name: pipelines-tkn-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/1-22/openshift-pipelines-cli/serve-tkn-cli/image-tkn-pac-1.22.yaml b/.konflux/1-22/openshift-pipelines-cli/serve-tkn-cli/image-tkn-pac-1.22.yaml deleted file mode 100644 index 8643e16a..00000000 --- a/.konflux/1-22/openshift-pipelines-cli/serve-tkn-cli/image-tkn-pac-1.22.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-cli by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pipelines-tkn-pac-rhel9 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: serve-tkn-cli-1-22-tkn-pac - appstudio.redhat.com/application: openshift-pipelines-cli-1-22 -spec: - image: - name: pipelines-tkn-pac-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/1-22/openshift-pipelines-cli/service-account.yaml b/.konflux/1-22/openshift-pipelines-cli/service-account.yaml deleted file mode 100644 index cf35786f..00000000 --- a/.konflux/1-22/openshift-pipelines-cli/service-account.yaml +++ /dev/null @@ -1,10 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-cli by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: v1 -imagePullSecrets: - - name: release-registry-openshift-pipelines-quay -kind: ServiceAccount -metadata: - name: release-registry-openshift-pipelines-cli-1-22 -secrets: - - name: release-registry-openshift-pipelines-quay \ No newline at end of file diff --git a/.konflux/1-22/openshift-pipelines-cli/tektoncd-cli/component-tkn-1.22.yaml b/.konflux/1-22/openshift-pipelines-cli/tektoncd-cli/component-tkn-1.22.yaml deleted file mode 100644 index 6e0cc5a7..00000000 --- a/.konflux/1-22/openshift-pipelines-cli/tektoncd-cli/component-tkn-1.22.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-cli by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: tektoncd-cli-1-22-tkn -spec: - componentName: tkn - application: openshift-pipelines-cli-1-22 - build-nudges-ref: - - operator-1-22-bundle - source: - git: - url: https://github.com/openshift-pipelines/tektoncd-cli.git - dockerfileUrl: .konflux/dockerfiles/tkn.Dockerfile - revision: release-v1.22.x diff --git a/.konflux/1-22/openshift-pipelines-cli/tektoncd-cli/image-tkn-1.22.yaml b/.konflux/1-22/openshift-pipelines-cli/tektoncd-cli/image-tkn-1.22.yaml deleted file mode 100644 index 47eb21d3..00000000 --- a/.konflux/1-22/openshift-pipelines-cli/tektoncd-cli/image-tkn-1.22.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-cli by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pipelines-cli-tkn-rhel9 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: tektoncd-cli-1-22-tkn - appstudio.redhat.com/application: openshift-pipelines-cli-1-22 -spec: - image: - name: pipelines-cli-tkn-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/1-22/openshift-pipelines-cli/tests.yaml b/.konflux/1-22/openshift-pipelines-cli/tests.yaml deleted file mode 100644 index f3930364..00000000 --- a/.konflux/1-22/openshift-pipelines-cli/tests.yaml +++ /dev/null @@ -1,27 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-cli by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1beta2 -kind: IntegrationTestScenario -metadata: - name: openshift-pipelines-cli-1-22-enterprise-contract -spec: - application: openshift-pipelines-cli-1-22 - contexts: - - description: execute the integration test for a component - name: component - params: - - name: POLICY_CONFIGURATION - value: tekton-ecosystem-tenant/tekton-ecosystem-tenant-containers - - name: TIMEOUT - value: "15m0s" - - name: SINGLE_COMPONENT - value: "true" - resolverRef: - params: - - name: url - value: "https://github.com/konflux-ci/build-definitions" - - name: revision - value: main - - name: pathInRepo - value: pipelines/enterprise-contract.yaml - resolver: git diff --git a/.konflux/1-22/openshift-pipelines-core/application.yaml b/.konflux/1-22/openshift-pipelines-core/application.yaml deleted file mode 100644 index 71a3680a..00000000 --- a/.konflux/1-22/openshift-pipelines-core/application.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Application -metadata: - name: openshift-pipelines-core-1-22 -spec: - displayName: openshift-pipelines-core-1-22 diff --git a/.konflux/1-22/openshift-pipelines-core/p12n-console-plugin/component-console-plugin-1.22.yaml b/.konflux/1-22/openshift-pipelines-core/p12n-console-plugin/component-console-plugin-1.22.yaml deleted file mode 100644 index 3f26df03..00000000 --- a/.konflux/1-22/openshift-pipelines-core/p12n-console-plugin/component-console-plugin-1.22.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: p12n-console-plugin-1-22-console-plugin -spec: - componentName: console-plugin - application: openshift-pipelines-core-1-22 - build-nudges-ref: - - operator-1-22-bundle - source: - git: - url: https://github.com/openshift-pipelines/p12n-console-plugin.git - dockerfileUrl: .konflux/dockerfiles/console-plugin.Dockerfile - revision: release-v1.22.x diff --git a/.konflux/1-22/openshift-pipelines-core/p12n-console-plugin/image-console-plugin-1.22.yaml b/.konflux/1-22/openshift-pipelines-core/p12n-console-plugin/image-console-plugin-1.22.yaml deleted file mode 100644 index 98013f14..00000000 --- a/.konflux/1-22/openshift-pipelines-core/p12n-console-plugin/image-console-plugin-1.22.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: console-plugin-rhel9 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: p12n-console-plugin-1-22-console-plugin - appstudio.redhat.com/application: openshift-pipelines-core-1-22 -spec: - image: - name: console-plugin-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/1-22/openshift-pipelines-core/p12n-manual-approval-gate/component-controller-1.22.yaml b/.konflux/1-22/openshift-pipelines-core/p12n-manual-approval-gate/component-controller-1.22.yaml deleted file mode 100644 index c31b6974..00000000 --- a/.konflux/1-22/openshift-pipelines-core/p12n-manual-approval-gate/component-controller-1.22.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: p12n-manual-approval-gate-1-22-controller -spec: - componentName: controller - application: openshift-pipelines-core-1-22 - build-nudges-ref: - - operator-1-22-bundle - source: - git: - url: https://github.com/openshift-pipelines/p12n-manual-approval-gate.git - dockerfileUrl: .konflux/dockerfiles/controller.Dockerfile - revision: release-v1.22.x diff --git a/.konflux/1-22/openshift-pipelines-core/p12n-manual-approval-gate/component-webhook-1.22.yaml b/.konflux/1-22/openshift-pipelines-core/p12n-manual-approval-gate/component-webhook-1.22.yaml deleted file mode 100644 index 80556fac..00000000 --- a/.konflux/1-22/openshift-pipelines-core/p12n-manual-approval-gate/component-webhook-1.22.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: p12n-manual-approval-gate-1-22-webhook -spec: - componentName: webhook - application: openshift-pipelines-core-1-22 - build-nudges-ref: - - operator-1-22-bundle - source: - git: - url: https://github.com/openshift-pipelines/p12n-manual-approval-gate.git - dockerfileUrl: .konflux/dockerfiles/webhook.Dockerfile - revision: release-v1.22.x diff --git a/.konflux/1-22/openshift-pipelines-core/p12n-manual-approval-gate/image-controller-1.22.yaml b/.konflux/1-22/openshift-pipelines-core/p12n-manual-approval-gate/image-controller-1.22.yaml deleted file mode 100644 index 9e000a7e..00000000 --- a/.konflux/1-22/openshift-pipelines-core/p12n-manual-approval-gate/image-controller-1.22.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pipelines-manual-approval-gate-controller-rhel9 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: p12n-manual-approval-gate-1-22-controller - appstudio.redhat.com/application: openshift-pipelines-core-1-22 -spec: - image: - name: pipelines-manual-approval-gate-controller-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/1-22/openshift-pipelines-core/p12n-manual-approval-gate/image-webhook-1.22.yaml b/.konflux/1-22/openshift-pipelines-core/p12n-manual-approval-gate/image-webhook-1.22.yaml deleted file mode 100644 index 84f142f1..00000000 --- a/.konflux/1-22/openshift-pipelines-core/p12n-manual-approval-gate/image-webhook-1.22.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pipelines-manual-approval-gate-webhook-rhel9 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: p12n-manual-approval-gate-1-22-webhook - appstudio.redhat.com/application: openshift-pipelines-core-1-22 -spec: - image: - name: pipelines-manual-approval-gate-webhook-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/1-22/openshift-pipelines-core/p12n-tekton-assist/component-tekton-assist-1.22.yaml b/.konflux/1-22/openshift-pipelines-core/p12n-tekton-assist/component-tekton-assist-1.22.yaml deleted file mode 100644 index f3d8bbc1..00000000 --- a/.konflux/1-22/openshift-pipelines-core/p12n-tekton-assist/component-tekton-assist-1.22.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: p12n-tekton-assist-1-22-tekton-assist -spec: - componentName: tekton-assist - application: openshift-pipelines-core-1-22 - build-nudges-ref: - - operator-1-22-bundle - source: - git: - url: https://github.com/openshift-pipelines/p12n-tekton-assist.git - dockerfileUrl: .konflux/dockerfiles/tekton-assist.Dockerfile - revision: release-v1.22.x diff --git a/.konflux/1-22/openshift-pipelines-core/p12n-tekton-assist/image-tekton-assist-1.22.yaml b/.konflux/1-22/openshift-pipelines-core/p12n-tekton-assist/image-tekton-assist-1.22.yaml deleted file mode 100644 index 56f96eba..00000000 --- a/.konflux/1-22/openshift-pipelines-core/p12n-tekton-assist/image-tekton-assist-1.22.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pipelines-tekton-assist-rhel9 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: p12n-tekton-assist-1-22-tekton-assist - appstudio.redhat.com/application: openshift-pipelines-core-1-22 -spec: - image: - name: pipelines-tekton-assist-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/1-22/openshift-pipelines-core/p12n-tekton-caches/component-cache-1.22.yaml b/.konflux/1-22/openshift-pipelines-core/p12n-tekton-caches/component-cache-1.22.yaml deleted file mode 100644 index 0a29142b..00000000 --- a/.konflux/1-22/openshift-pipelines-core/p12n-tekton-caches/component-cache-1.22.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: p12n-tekton-caches-1-22-cache -spec: - componentName: cache - application: openshift-pipelines-core-1-22 - build-nudges-ref: - - operator-1-22-bundle - source: - git: - url: https://github.com/openshift-pipelines/p12n-tekton-caches.git - dockerfileUrl: .konflux/dockerfiles/cache.Dockerfile - revision: release-v1.22.x diff --git a/.konflux/1-22/openshift-pipelines-core/p12n-tekton-caches/image-cache-1.22.yaml b/.konflux/1-22/openshift-pipelines-core/p12n-tekton-caches/image-cache-1.22.yaml deleted file mode 100644 index c70d5761..00000000 --- a/.konflux/1-22/openshift-pipelines-core/p12n-tekton-caches/image-cache-1.22.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pipelines-cache-rhel9 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: p12n-tekton-caches-1-22-cache - appstudio.redhat.com/application: openshift-pipelines-core-1-22 -spec: - image: - name: pipelines-cache-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/1-22/openshift-pipelines-core/pac-downstream/component-cli-1.22.yaml b/.konflux/1-22/openshift-pipelines-core/pac-downstream/component-cli-1.22.yaml deleted file mode 100644 index b7636a04..00000000 --- a/.konflux/1-22/openshift-pipelines-core/pac-downstream/component-cli-1.22.yaml +++ /dev/null @@ -1,19 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: pac-downstream-1-22-cli -spec: - componentName: cli - application: openshift-pipelines-core-1-22 - build-nudges-ref: - - operator-1-22-bundle - - tektoncd-cli-1-22-tkn - source: - git: - url: https://github.com/openshift-pipelines/pac-downstream.git - dockerfileUrl: .konflux/dockerfiles/cli.Dockerfile - revision: release-v1.22.x diff --git a/.konflux/1-22/openshift-pipelines-core/pac-downstream/component-controller-1.22.yaml b/.konflux/1-22/openshift-pipelines-core/pac-downstream/component-controller-1.22.yaml deleted file mode 100644 index a6586722..00000000 --- a/.konflux/1-22/openshift-pipelines-core/pac-downstream/component-controller-1.22.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: pac-downstream-1-22-controller -spec: - componentName: controller - application: openshift-pipelines-core-1-22 - build-nudges-ref: - - operator-1-22-bundle - source: - git: - url: https://github.com/openshift-pipelines/pac-downstream.git - dockerfileUrl: .konflux/dockerfiles/controller.Dockerfile - revision: release-v1.22.x diff --git a/.konflux/1-22/openshift-pipelines-core/pac-downstream/component-watcher-1.22.yaml b/.konflux/1-22/openshift-pipelines-core/pac-downstream/component-watcher-1.22.yaml deleted file mode 100644 index 878561fb..00000000 --- a/.konflux/1-22/openshift-pipelines-core/pac-downstream/component-watcher-1.22.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: pac-downstream-1-22-watcher -spec: - componentName: watcher - application: openshift-pipelines-core-1-22 - build-nudges-ref: - - operator-1-22-bundle - source: - git: - url: https://github.com/openshift-pipelines/pac-downstream.git - dockerfileUrl: .konflux/dockerfiles/watcher.Dockerfile - revision: release-v1.22.x diff --git a/.konflux/1-22/openshift-pipelines-core/pac-downstream/component-webhook-1.22.yaml b/.konflux/1-22/openshift-pipelines-core/pac-downstream/component-webhook-1.22.yaml deleted file mode 100644 index 24166273..00000000 --- a/.konflux/1-22/openshift-pipelines-core/pac-downstream/component-webhook-1.22.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: pac-downstream-1-22-webhook -spec: - componentName: webhook - application: openshift-pipelines-core-1-22 - build-nudges-ref: - - operator-1-22-bundle - source: - git: - url: https://github.com/openshift-pipelines/pac-downstream.git - dockerfileUrl: .konflux/dockerfiles/webhook.Dockerfile - revision: release-v1.22.x diff --git a/.konflux/1-22/openshift-pipelines-core/pac-downstream/image-cli-1.22.yaml b/.konflux/1-22/openshift-pipelines-core/pac-downstream/image-cli-1.22.yaml deleted file mode 100644 index 71084edf..00000000 --- a/.konflux/1-22/openshift-pipelines-core/pac-downstream/image-cli-1.22.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pipelines-pipelines-as-code-cli-rhel9 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: pac-downstream-1-22-cli - appstudio.redhat.com/application: openshift-pipelines-core-1-22 -spec: - image: - name: pipelines-pipelines-as-code-cli-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/1-22/openshift-pipelines-core/pac-downstream/image-controller-1.22.yaml b/.konflux/1-22/openshift-pipelines-core/pac-downstream/image-controller-1.22.yaml deleted file mode 100644 index 38228bef..00000000 --- a/.konflux/1-22/openshift-pipelines-core/pac-downstream/image-controller-1.22.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pipelines-pipelines-as-code-controller-rhel9 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: pac-downstream-1-22-controller - appstudio.redhat.com/application: openshift-pipelines-core-1-22 -spec: - image: - name: pipelines-pipelines-as-code-controller-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/1-22/openshift-pipelines-core/pac-downstream/image-watcher-1.22.yaml b/.konflux/1-22/openshift-pipelines-core/pac-downstream/image-watcher-1.22.yaml deleted file mode 100644 index 0b0d800b..00000000 --- a/.konflux/1-22/openshift-pipelines-core/pac-downstream/image-watcher-1.22.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pipelines-pipelines-as-code-watcher-rhel9 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: pac-downstream-1-22-watcher - appstudio.redhat.com/application: openshift-pipelines-core-1-22 -spec: - image: - name: pipelines-pipelines-as-code-watcher-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/1-22/openshift-pipelines-core/pac-downstream/image-webhook-1.22.yaml b/.konflux/1-22/openshift-pipelines-core/pac-downstream/image-webhook-1.22.yaml deleted file mode 100644 index 0be20fd5..00000000 --- a/.konflux/1-22/openshift-pipelines-core/pac-downstream/image-webhook-1.22.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pipelines-pipelines-as-code-webhook-rhel9 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: pac-downstream-1-22-webhook - appstudio.redhat.com/application: openshift-pipelines-core-1-22 -spec: - image: - name: pipelines-pipelines-as-code-webhook-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/1-22/openshift-pipelines-core/release-plan.yaml b/.konflux/1-22/openshift-pipelines-core/release-plan.yaml deleted file mode 100644 index d2b0df35..00000000 --- a/.konflux/1-22/openshift-pipelines-core/release-plan.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ReleasePlan -metadata: - labels: - release.appstudio.openshift.io/auto-release: "true" - release.appstudio.openshift.io/standing-attribution: 'true' - name: openshift-pipelines-core-1-22-rp -spec: - application: openshift-pipelines-core-1-22 - tenantPipeline: - serviceAccountName: release-registry-openshift-pipelines-core-1-22 - pipelineRef: - resolver: git - params: - - name: url - value: https://github.com/openshift-pipelines/hack.git - - name: revision - # value: release-v1.22.x - value: main - - name: pathInRepo - value: pipelines/release-pipeline.yaml - params: - - name: release_version - value: "1.22.0" - - name: release_to_github - value: "false" diff --git a/.konflux/1-22/openshift-pipelines-core/role.yaml b/.konflux/1-22/openshift-pipelines-core/role.yaml deleted file mode 100644 index 1ee9b84d..00000000 --- a/.konflux/1-22/openshift-pipelines-core/role.yaml +++ /dev/null @@ -1,14 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: rbac.authorization.k8s.io/v1 -kind: RoleBinding -metadata: - name: release-plan-rolebinding-openshift-pipelines-core-1-22 -subjects: - - kind: ServiceAccount - name: release-registry-openshift-pipelines-core-1-22 - apiGroup: "" -roleRef: - kind: ClusterRole - name: konflux-releaser-bot-actions - apiGroup: rbac.authorization.k8s.io \ No newline at end of file diff --git a/.konflux/1-22/openshift-pipelines-core/service-account.yaml b/.konflux/1-22/openshift-pipelines-core/service-account.yaml deleted file mode 100644 index bd00373f..00000000 --- a/.konflux/1-22/openshift-pipelines-core/service-account.yaml +++ /dev/null @@ -1,10 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: v1 -imagePullSecrets: - - name: release-registry-openshift-pipelines-quay -kind: ServiceAccount -metadata: - name: release-registry-openshift-pipelines-core-1-22 -secrets: - - name: release-registry-openshift-pipelines-quay \ No newline at end of file diff --git a/.konflux/1-22/openshift-pipelines-core/tekton-kueue/component-kueue-1.22.yaml b/.konflux/1-22/openshift-pipelines-core/tekton-kueue/component-kueue-1.22.yaml deleted file mode 100644 index fd6573a7..00000000 --- a/.konflux/1-22/openshift-pipelines-core/tekton-kueue/component-kueue-1.22.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: tekton-kueue-1-22-kueue -spec: - componentName: kueue - application: openshift-pipelines-core-1-22 - build-nudges-ref: - - operator-1-22-bundle - source: - git: - url: https://github.com/openshift-pipelines/tekton-kueue.git - dockerfileUrl: .konflux/dockerfiles/kueue.Dockerfile - revision: release-v1.22.x diff --git a/.konflux/1-22/openshift-pipelines-core/tekton-kueue/image-kueue-1.22.yaml b/.konflux/1-22/openshift-pipelines-core/tekton-kueue/image-kueue-1.22.yaml deleted file mode 100644 index 440e7c1c..00000000 --- a/.konflux/1-22/openshift-pipelines-core/tekton-kueue/image-kueue-1.22.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pipelines-kueue-rhel9 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: tekton-kueue-1-22-kueue - appstudio.redhat.com/application: openshift-pipelines-core-1-22 -spec: - image: - name: pipelines-kueue-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/1-22/openshift-pipelines-core/tektoncd-chains/component-controller-1.22.yaml b/.konflux/1-22/openshift-pipelines-core/tektoncd-chains/component-controller-1.22.yaml deleted file mode 100644 index 2a79ce44..00000000 --- a/.konflux/1-22/openshift-pipelines-core/tektoncd-chains/component-controller-1.22.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: tektoncd-chains-1-22-controller -spec: - componentName: controller - application: openshift-pipelines-core-1-22 - build-nudges-ref: - - operator-1-22-bundle - source: - git: - url: https://github.com/openshift-pipelines/tektoncd-chains.git - dockerfileUrl: .konflux/dockerfiles/controller.Dockerfile - revision: release-v1.22.x diff --git a/.konflux/1-22/openshift-pipelines-core/tektoncd-chains/image-controller-1.22.yaml b/.konflux/1-22/openshift-pipelines-core/tektoncd-chains/image-controller-1.22.yaml deleted file mode 100644 index 5b0d1da7..00000000 --- a/.konflux/1-22/openshift-pipelines-core/tektoncd-chains/image-controller-1.22.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pipelines-chains-controller-rhel9 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: tektoncd-chains-1-22-controller - appstudio.redhat.com/application: openshift-pipelines-core-1-22 -spec: - image: - name: pipelines-chains-controller-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/1-22/openshift-pipelines-core/tektoncd-git-clone/component-git-init-1.22.yaml b/.konflux/1-22/openshift-pipelines-core/tektoncd-git-clone/component-git-init-1.22.yaml deleted file mode 100644 index 9a385bf3..00000000 --- a/.konflux/1-22/openshift-pipelines-core/tektoncd-git-clone/component-git-init-1.22.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: tektoncd-git-clone-1-22-git-init -spec: - componentName: git-init - application: openshift-pipelines-core-1-22 - build-nudges-ref: - - operator-1-22-bundle - source: - git: - url: https://github.com/openshift-pipelines/tektoncd-git-clone.git - dockerfileUrl: .konflux/dockerfiles/git-init.Dockerfile - revision: release-v1.22.x diff --git a/.konflux/1-22/openshift-pipelines-core/tektoncd-git-clone/image-git-init-1.22.yaml b/.konflux/1-22/openshift-pipelines-core/tektoncd-git-clone/image-git-init-1.22.yaml deleted file mode 100644 index 182af35e..00000000 --- a/.konflux/1-22/openshift-pipelines-core/tektoncd-git-clone/image-git-init-1.22.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: git-init-rhel9 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: tektoncd-git-clone-1-22-git-init - appstudio.redhat.com/application: openshift-pipelines-core-1-22 -spec: - image: - name: git-init-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/1-22/openshift-pipelines-core/tektoncd-hub/component-api-1.22.yaml b/.konflux/1-22/openshift-pipelines-core/tektoncd-hub/component-api-1.22.yaml deleted file mode 100644 index 981486a3..00000000 --- a/.konflux/1-22/openshift-pipelines-core/tektoncd-hub/component-api-1.22.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: tektoncd-hub-1-22-api -spec: - componentName: api - application: openshift-pipelines-core-1-22 - build-nudges-ref: - - operator-1-22-bundle - source: - git: - url: https://github.com/openshift-pipelines/tektoncd-hub.git - dockerfileUrl: .konflux/dockerfiles/api.Dockerfile - revision: release-v1.22.x diff --git a/.konflux/1-22/openshift-pipelines-core/tektoncd-hub/component-db-migration-1.22.yaml b/.konflux/1-22/openshift-pipelines-core/tektoncd-hub/component-db-migration-1.22.yaml deleted file mode 100644 index 57e1c291..00000000 --- a/.konflux/1-22/openshift-pipelines-core/tektoncd-hub/component-db-migration-1.22.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: tektoncd-hub-1-22-db-migration -spec: - componentName: db-migration - application: openshift-pipelines-core-1-22 - build-nudges-ref: - - operator-1-22-bundle - source: - git: - url: https://github.com/openshift-pipelines/tektoncd-hub.git - dockerfileUrl: .konflux/dockerfiles/db-migration.Dockerfile - revision: release-v1.22.x diff --git a/.konflux/1-22/openshift-pipelines-core/tektoncd-hub/component-ui-1.22.yaml b/.konflux/1-22/openshift-pipelines-core/tektoncd-hub/component-ui-1.22.yaml deleted file mode 100644 index 94e9c47a..00000000 --- a/.konflux/1-22/openshift-pipelines-core/tektoncd-hub/component-ui-1.22.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: tektoncd-hub-1-22-ui -spec: - componentName: ui - application: openshift-pipelines-core-1-22 - build-nudges-ref: - - operator-1-22-bundle - source: - git: - url: https://github.com/openshift-pipelines/tektoncd-hub.git - dockerfileUrl: .konflux/dockerfiles/ui.Dockerfile - revision: release-v1.22.x diff --git a/.konflux/1-22/openshift-pipelines-core/tektoncd-hub/image-api-1.22.yaml b/.konflux/1-22/openshift-pipelines-core/tektoncd-hub/image-api-1.22.yaml deleted file mode 100644 index d7dca7a8..00000000 --- a/.konflux/1-22/openshift-pipelines-core/tektoncd-hub/image-api-1.22.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pipelines-hub-api-rhel9 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: tektoncd-hub-1-22-api - appstudio.redhat.com/application: openshift-pipelines-core-1-22 -spec: - image: - name: pipelines-hub-api-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/1-22/openshift-pipelines-core/tektoncd-hub/image-db-migration-1.22.yaml b/.konflux/1-22/openshift-pipelines-core/tektoncd-hub/image-db-migration-1.22.yaml deleted file mode 100644 index 3852dde7..00000000 --- a/.konflux/1-22/openshift-pipelines-core/tektoncd-hub/image-db-migration-1.22.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pipelines-hub-db-migration-rhel9 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: tektoncd-hub-1-22-db-migration - appstudio.redhat.com/application: openshift-pipelines-core-1-22 -spec: - image: - name: pipelines-hub-db-migration-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/1-22/openshift-pipelines-core/tektoncd-hub/image-ui-1.22.yaml b/.konflux/1-22/openshift-pipelines-core/tektoncd-hub/image-ui-1.22.yaml deleted file mode 100644 index 6f5c4f2f..00000000 --- a/.konflux/1-22/openshift-pipelines-core/tektoncd-hub/image-ui-1.22.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pipelines-hub-ui-rhel9 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: tektoncd-hub-1-22-ui - appstudio.redhat.com/application: openshift-pipelines-core-1-22 -spec: - image: - name: pipelines-hub-ui-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/1-22/openshift-pipelines-core/tektoncd-pipeline/component-controller-1.22.yaml b/.konflux/1-22/openshift-pipelines-core/tektoncd-pipeline/component-controller-1.22.yaml deleted file mode 100644 index fde9653d..00000000 --- a/.konflux/1-22/openshift-pipelines-core/tektoncd-pipeline/component-controller-1.22.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: tektoncd-pipeline-1-22-controller -spec: - componentName: controller - application: openshift-pipelines-core-1-22 - build-nudges-ref: - - operator-1-22-bundle - source: - git: - url: https://github.com/openshift-pipelines/tektoncd-pipeline.git - dockerfileUrl: .konflux/dockerfiles/controller.Dockerfile - revision: release-v1.22.x diff --git a/.konflux/1-22/openshift-pipelines-core/tektoncd-pipeline/component-entrypoint-1.22.yaml b/.konflux/1-22/openshift-pipelines-core/tektoncd-pipeline/component-entrypoint-1.22.yaml deleted file mode 100644 index ea61d0a6..00000000 --- a/.konflux/1-22/openshift-pipelines-core/tektoncd-pipeline/component-entrypoint-1.22.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: tektoncd-pipeline-1-22-entrypoint -spec: - componentName: entrypoint - application: openshift-pipelines-core-1-22 - build-nudges-ref: - - operator-1-22-bundle - source: - git: - url: https://github.com/openshift-pipelines/tektoncd-pipeline.git - dockerfileUrl: .konflux/dockerfiles/entrypoint.Dockerfile - revision: release-v1.22.x diff --git a/.konflux/1-22/openshift-pipelines-core/tektoncd-pipeline/component-events-1.22.yaml b/.konflux/1-22/openshift-pipelines-core/tektoncd-pipeline/component-events-1.22.yaml deleted file mode 100644 index 1ab2dd3a..00000000 --- a/.konflux/1-22/openshift-pipelines-core/tektoncd-pipeline/component-events-1.22.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: tektoncd-pipeline-1-22-events -spec: - componentName: events - application: openshift-pipelines-core-1-22 - build-nudges-ref: - - operator-1-22-bundle - source: - git: - url: https://github.com/openshift-pipelines/tektoncd-pipeline.git - dockerfileUrl: .konflux/dockerfiles/events.Dockerfile - revision: release-v1.22.x diff --git a/.konflux/1-22/openshift-pipelines-core/tektoncd-pipeline/component-nop-1.22.yaml b/.konflux/1-22/openshift-pipelines-core/tektoncd-pipeline/component-nop-1.22.yaml deleted file mode 100644 index 87075f4f..00000000 --- a/.konflux/1-22/openshift-pipelines-core/tektoncd-pipeline/component-nop-1.22.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: tektoncd-pipeline-1-22-nop -spec: - componentName: nop - application: openshift-pipelines-core-1-22 - build-nudges-ref: - - operator-1-22-bundle - source: - git: - url: https://github.com/openshift-pipelines/tektoncd-pipeline.git - dockerfileUrl: .konflux/dockerfiles/nop.Dockerfile - revision: release-v1.22.x diff --git a/.konflux/1-22/openshift-pipelines-core/tektoncd-pipeline/component-resolvers-1.22.yaml b/.konflux/1-22/openshift-pipelines-core/tektoncd-pipeline/component-resolvers-1.22.yaml deleted file mode 100644 index 7710a0cf..00000000 --- a/.konflux/1-22/openshift-pipelines-core/tektoncd-pipeline/component-resolvers-1.22.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: tektoncd-pipeline-1-22-resolvers -spec: - componentName: resolvers - application: openshift-pipelines-core-1-22 - build-nudges-ref: - - operator-1-22-bundle - source: - git: - url: https://github.com/openshift-pipelines/tektoncd-pipeline.git - dockerfileUrl: .konflux/dockerfiles/resolvers.Dockerfile - revision: release-v1.22.x diff --git a/.konflux/1-22/openshift-pipelines-core/tektoncd-pipeline/component-sidecarlogresults-1.22.yaml b/.konflux/1-22/openshift-pipelines-core/tektoncd-pipeline/component-sidecarlogresults-1.22.yaml deleted file mode 100644 index 54aaf940..00000000 --- a/.konflux/1-22/openshift-pipelines-core/tektoncd-pipeline/component-sidecarlogresults-1.22.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: tektoncd-pipeline-1-22-sidecarlogresults -spec: - componentName: sidecarlogresults - application: openshift-pipelines-core-1-22 - build-nudges-ref: - - operator-1-22-bundle - source: - git: - url: https://github.com/openshift-pipelines/tektoncd-pipeline.git - dockerfileUrl: .konflux/dockerfiles/sidecarlogresults.Dockerfile - revision: release-v1.22.x diff --git a/.konflux/1-22/openshift-pipelines-core/tektoncd-pipeline/component-webhook-1.22.yaml b/.konflux/1-22/openshift-pipelines-core/tektoncd-pipeline/component-webhook-1.22.yaml deleted file mode 100644 index 353be9c1..00000000 --- a/.konflux/1-22/openshift-pipelines-core/tektoncd-pipeline/component-webhook-1.22.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: tektoncd-pipeline-1-22-webhook -spec: - componentName: webhook - application: openshift-pipelines-core-1-22 - build-nudges-ref: - - operator-1-22-bundle - source: - git: - url: https://github.com/openshift-pipelines/tektoncd-pipeline.git - dockerfileUrl: .konflux/dockerfiles/webhook.Dockerfile - revision: release-v1.22.x diff --git a/.konflux/1-22/openshift-pipelines-core/tektoncd-pipeline/component-workingdirinit-1.22.yaml b/.konflux/1-22/openshift-pipelines-core/tektoncd-pipeline/component-workingdirinit-1.22.yaml deleted file mode 100644 index a10abcc0..00000000 --- a/.konflux/1-22/openshift-pipelines-core/tektoncd-pipeline/component-workingdirinit-1.22.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: tektoncd-pipeline-1-22-workingdirinit -spec: - componentName: workingdirinit - application: openshift-pipelines-core-1-22 - build-nudges-ref: - - operator-1-22-bundle - source: - git: - url: https://github.com/openshift-pipelines/tektoncd-pipeline.git - dockerfileUrl: .konflux/dockerfiles/workingdirinit.Dockerfile - revision: release-v1.22.x diff --git a/.konflux/1-22/openshift-pipelines-core/tektoncd-pipeline/image-controller-1.22.yaml b/.konflux/1-22/openshift-pipelines-core/tektoncd-pipeline/image-controller-1.22.yaml deleted file mode 100644 index 1c8d6703..00000000 --- a/.konflux/1-22/openshift-pipelines-core/tektoncd-pipeline/image-controller-1.22.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pipelines-controller-rhel9 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: tektoncd-pipeline-1-22-controller - appstudio.redhat.com/application: openshift-pipelines-core-1-22 -spec: - image: - name: pipelines-controller-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/1-22/openshift-pipelines-core/tektoncd-pipeline/image-entrypoint-1.22.yaml b/.konflux/1-22/openshift-pipelines-core/tektoncd-pipeline/image-entrypoint-1.22.yaml deleted file mode 100644 index fafe939b..00000000 --- a/.konflux/1-22/openshift-pipelines-core/tektoncd-pipeline/image-entrypoint-1.22.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pipelines-entrypoint-rhel9 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: tektoncd-pipeline-1-22-entrypoint - appstudio.redhat.com/application: openshift-pipelines-core-1-22 -spec: - image: - name: pipelines-entrypoint-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/1-22/openshift-pipelines-core/tektoncd-pipeline/image-events-1.22.yaml b/.konflux/1-22/openshift-pipelines-core/tektoncd-pipeline/image-events-1.22.yaml deleted file mode 100644 index b6e136d5..00000000 --- a/.konflux/1-22/openshift-pipelines-core/tektoncd-pipeline/image-events-1.22.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pipelines-events-rhel9 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: tektoncd-pipeline-1-22-events - appstudio.redhat.com/application: openshift-pipelines-core-1-22 -spec: - image: - name: pipelines-events-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/1-22/openshift-pipelines-core/tektoncd-pipeline/image-nop-1.22.yaml b/.konflux/1-22/openshift-pipelines-core/tektoncd-pipeline/image-nop-1.22.yaml deleted file mode 100644 index bcd7ae02..00000000 --- a/.konflux/1-22/openshift-pipelines-core/tektoncd-pipeline/image-nop-1.22.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pipelines-nop-rhel9 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: tektoncd-pipeline-1-22-nop - appstudio.redhat.com/application: openshift-pipelines-core-1-22 -spec: - image: - name: pipelines-nop-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/1-22/openshift-pipelines-core/tektoncd-pipeline/image-resolvers-1.22.yaml b/.konflux/1-22/openshift-pipelines-core/tektoncd-pipeline/image-resolvers-1.22.yaml deleted file mode 100644 index f2df259f..00000000 --- a/.konflux/1-22/openshift-pipelines-core/tektoncd-pipeline/image-resolvers-1.22.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pipelines-resolvers-rhel9 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: tektoncd-pipeline-1-22-resolvers - appstudio.redhat.com/application: openshift-pipelines-core-1-22 -spec: - image: - name: pipelines-resolvers-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/1-22/openshift-pipelines-core/tektoncd-pipeline/image-sidecarlogresults-1.22.yaml b/.konflux/1-22/openshift-pipelines-core/tektoncd-pipeline/image-sidecarlogresults-1.22.yaml deleted file mode 100644 index 924750bf..00000000 --- a/.konflux/1-22/openshift-pipelines-core/tektoncd-pipeline/image-sidecarlogresults-1.22.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pipelines-sidecarlogresults-rhel9 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: tektoncd-pipeline-1-22-sidecarlogresults - appstudio.redhat.com/application: openshift-pipelines-core-1-22 -spec: - image: - name: pipelines-sidecarlogresults-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/1-22/openshift-pipelines-core/tektoncd-pipeline/image-webhook-1.22.yaml b/.konflux/1-22/openshift-pipelines-core/tektoncd-pipeline/image-webhook-1.22.yaml deleted file mode 100644 index 734e4b4a..00000000 --- a/.konflux/1-22/openshift-pipelines-core/tektoncd-pipeline/image-webhook-1.22.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pipelines-webhook-rhel9 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: tektoncd-pipeline-1-22-webhook - appstudio.redhat.com/application: openshift-pipelines-core-1-22 -spec: - image: - name: pipelines-webhook-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/1-22/openshift-pipelines-core/tektoncd-pipeline/image-workingdirinit-1.22.yaml b/.konflux/1-22/openshift-pipelines-core/tektoncd-pipeline/image-workingdirinit-1.22.yaml deleted file mode 100644 index 56e6a4bb..00000000 --- a/.konflux/1-22/openshift-pipelines-core/tektoncd-pipeline/image-workingdirinit-1.22.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pipelines-workingdirinit-rhel9 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: tektoncd-pipeline-1-22-workingdirinit - appstudio.redhat.com/application: openshift-pipelines-core-1-22 -spec: - image: - name: pipelines-workingdirinit-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/1-22/openshift-pipelines-core/tektoncd-pruner/component-controller-1.22.yaml b/.konflux/1-22/openshift-pipelines-core/tektoncd-pruner/component-controller-1.22.yaml deleted file mode 100644 index cf2116d3..00000000 --- a/.konflux/1-22/openshift-pipelines-core/tektoncd-pruner/component-controller-1.22.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: tektoncd-pruner-1-22-controller -spec: - componentName: controller - application: openshift-pipelines-core-1-22 - build-nudges-ref: - - operator-1-22-bundle - source: - git: - url: https://github.com/openshift-pipelines/tektoncd-pruner.git - dockerfileUrl: .konflux/dockerfiles/controller.Dockerfile - revision: release-v1.22.x diff --git a/.konflux/1-22/openshift-pipelines-core/tektoncd-pruner/image-controller-1.22.yaml b/.konflux/1-22/openshift-pipelines-core/tektoncd-pruner/image-controller-1.22.yaml deleted file mode 100644 index 9d8ead8f..00000000 --- a/.konflux/1-22/openshift-pipelines-core/tektoncd-pruner/image-controller-1.22.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pipelines-pruner-controller-rhel9 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: tektoncd-pruner-1-22-controller - appstudio.redhat.com/application: openshift-pipelines-core-1-22 -spec: - image: - name: pipelines-pruner-controller-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/1-22/openshift-pipelines-core/tektoncd-results/component-api-1.22.yaml b/.konflux/1-22/openshift-pipelines-core/tektoncd-results/component-api-1.22.yaml deleted file mode 100644 index 67370d38..00000000 --- a/.konflux/1-22/openshift-pipelines-core/tektoncd-results/component-api-1.22.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: tektoncd-results-1-22-api -spec: - componentName: api - application: openshift-pipelines-core-1-22 - build-nudges-ref: - - operator-1-22-bundle - source: - git: - url: https://github.com/openshift-pipelines/tektoncd-results.git - dockerfileUrl: .konflux/dockerfiles/api.Dockerfile - revision: release-v1.22.x diff --git a/.konflux/1-22/openshift-pipelines-core/tektoncd-results/component-retention-policy-agent-1.22.yaml b/.konflux/1-22/openshift-pipelines-core/tektoncd-results/component-retention-policy-agent-1.22.yaml deleted file mode 100644 index ec63d808..00000000 --- a/.konflux/1-22/openshift-pipelines-core/tektoncd-results/component-retention-policy-agent-1.22.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: tektoncd-results-1-22-retention-policy-agent -spec: - componentName: retention-policy-agent - application: openshift-pipelines-core-1-22 - build-nudges-ref: - - operator-1-22-bundle - source: - git: - url: https://github.com/openshift-pipelines/tektoncd-results.git - dockerfileUrl: .konflux/dockerfiles/retention-policy-agent.Dockerfile - revision: release-v1.22.x diff --git a/.konflux/1-22/openshift-pipelines-core/tektoncd-results/component-watcher-1.22.yaml b/.konflux/1-22/openshift-pipelines-core/tektoncd-results/component-watcher-1.22.yaml deleted file mode 100644 index 989f5d72..00000000 --- a/.konflux/1-22/openshift-pipelines-core/tektoncd-results/component-watcher-1.22.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: tektoncd-results-1-22-watcher -spec: - componentName: watcher - application: openshift-pipelines-core-1-22 - build-nudges-ref: - - operator-1-22-bundle - source: - git: - url: https://github.com/openshift-pipelines/tektoncd-results.git - dockerfileUrl: .konflux/dockerfiles/watcher.Dockerfile - revision: release-v1.22.x diff --git a/.konflux/1-22/openshift-pipelines-core/tektoncd-results/image-api-1.22.yaml b/.konflux/1-22/openshift-pipelines-core/tektoncd-results/image-api-1.22.yaml deleted file mode 100644 index c0e81c45..00000000 --- a/.konflux/1-22/openshift-pipelines-core/tektoncd-results/image-api-1.22.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pipelines-results-api-rhel9 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: tektoncd-results-1-22-api - appstudio.redhat.com/application: openshift-pipelines-core-1-22 -spec: - image: - name: pipelines-results-api-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/1-22/openshift-pipelines-core/tektoncd-results/image-retention-policy-agent-1.22.yaml b/.konflux/1-22/openshift-pipelines-core/tektoncd-results/image-retention-policy-agent-1.22.yaml deleted file mode 100644 index 49710f6c..00000000 --- a/.konflux/1-22/openshift-pipelines-core/tektoncd-results/image-retention-policy-agent-1.22.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pipelines-results-retention-policy-agent-rhel9 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: tektoncd-results-1-22-retention-policy-agent - appstudio.redhat.com/application: openshift-pipelines-core-1-22 -spec: - image: - name: pipelines-results-retention-policy-agent-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/1-22/openshift-pipelines-core/tektoncd-results/image-watcher-1.22.yaml b/.konflux/1-22/openshift-pipelines-core/tektoncd-results/image-watcher-1.22.yaml deleted file mode 100644 index 4ca7985b..00000000 --- a/.konflux/1-22/openshift-pipelines-core/tektoncd-results/image-watcher-1.22.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pipelines-results-watcher-rhel9 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: tektoncd-results-1-22-watcher - appstudio.redhat.com/application: openshift-pipelines-core-1-22 -spec: - image: - name: pipelines-results-watcher-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/1-22/openshift-pipelines-core/tektoncd-triggers/component-controller-1.22.yaml b/.konflux/1-22/openshift-pipelines-core/tektoncd-triggers/component-controller-1.22.yaml deleted file mode 100644 index 25805908..00000000 --- a/.konflux/1-22/openshift-pipelines-core/tektoncd-triggers/component-controller-1.22.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: tektoncd-triggers-1-22-controller -spec: - componentName: controller - application: openshift-pipelines-core-1-22 - build-nudges-ref: - - operator-1-22-bundle - source: - git: - url: https://github.com/openshift-pipelines/tektoncd-triggers.git - dockerfileUrl: .konflux/dockerfiles/controller.Dockerfile - revision: release-v1.22.x diff --git a/.konflux/1-22/openshift-pipelines-core/tektoncd-triggers/component-core-interceptors-1.22.yaml b/.konflux/1-22/openshift-pipelines-core/tektoncd-triggers/component-core-interceptors-1.22.yaml deleted file mode 100644 index 11a912ab..00000000 --- a/.konflux/1-22/openshift-pipelines-core/tektoncd-triggers/component-core-interceptors-1.22.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: tektoncd-triggers-1-22-core-interceptors -spec: - componentName: core-interceptors - application: openshift-pipelines-core-1-22 - build-nudges-ref: - - operator-1-22-bundle - source: - git: - url: https://github.com/openshift-pipelines/tektoncd-triggers.git - dockerfileUrl: .konflux/dockerfiles/core-interceptors.Dockerfile - revision: release-v1.22.x diff --git a/.konflux/1-22/openshift-pipelines-core/tektoncd-triggers/component-eventlistenersink-1.22.yaml b/.konflux/1-22/openshift-pipelines-core/tektoncd-triggers/component-eventlistenersink-1.22.yaml deleted file mode 100644 index 9c5e3a47..00000000 --- a/.konflux/1-22/openshift-pipelines-core/tektoncd-triggers/component-eventlistenersink-1.22.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: tektoncd-triggers-1-22-eventlistenersink -spec: - componentName: eventlistenersink - application: openshift-pipelines-core-1-22 - build-nudges-ref: - - operator-1-22-bundle - source: - git: - url: https://github.com/openshift-pipelines/tektoncd-triggers.git - dockerfileUrl: .konflux/dockerfiles/eventlistenersink.Dockerfile - revision: release-v1.22.x diff --git a/.konflux/1-22/openshift-pipelines-core/tektoncd-triggers/component-webhook-1.22.yaml b/.konflux/1-22/openshift-pipelines-core/tektoncd-triggers/component-webhook-1.22.yaml deleted file mode 100644 index 7a2b65bc..00000000 --- a/.konflux/1-22/openshift-pipelines-core/tektoncd-triggers/component-webhook-1.22.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: tektoncd-triggers-1-22-webhook -spec: - componentName: webhook - application: openshift-pipelines-core-1-22 - build-nudges-ref: - - operator-1-22-bundle - source: - git: - url: https://github.com/openshift-pipelines/tektoncd-triggers.git - dockerfileUrl: .konflux/dockerfiles/webhook.Dockerfile - revision: release-v1.22.x diff --git a/.konflux/1-22/openshift-pipelines-core/tektoncd-triggers/image-controller-1.22.yaml b/.konflux/1-22/openshift-pipelines-core/tektoncd-triggers/image-controller-1.22.yaml deleted file mode 100644 index 4f7943e9..00000000 --- a/.konflux/1-22/openshift-pipelines-core/tektoncd-triggers/image-controller-1.22.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pipelines-triggers-controller-rhel9 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: tektoncd-triggers-1-22-controller - appstudio.redhat.com/application: openshift-pipelines-core-1-22 -spec: - image: - name: pipelines-triggers-controller-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/1-22/openshift-pipelines-core/tektoncd-triggers/image-core-interceptors-1.22.yaml b/.konflux/1-22/openshift-pipelines-core/tektoncd-triggers/image-core-interceptors-1.22.yaml deleted file mode 100644 index 4d1f4f2b..00000000 --- a/.konflux/1-22/openshift-pipelines-core/tektoncd-triggers/image-core-interceptors-1.22.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pipelines-triggers-core-interceptors-rhel9 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: tektoncd-triggers-1-22-core-interceptors - appstudio.redhat.com/application: openshift-pipelines-core-1-22 -spec: - image: - name: pipelines-triggers-core-interceptors-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/1-22/openshift-pipelines-core/tektoncd-triggers/image-eventlistenersink-1.22.yaml b/.konflux/1-22/openshift-pipelines-core/tektoncd-triggers/image-eventlistenersink-1.22.yaml deleted file mode 100644 index d105a5ba..00000000 --- a/.konflux/1-22/openshift-pipelines-core/tektoncd-triggers/image-eventlistenersink-1.22.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pipelines-triggers-eventlistenersink-rhel9 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: tektoncd-triggers-1-22-eventlistenersink - appstudio.redhat.com/application: openshift-pipelines-core-1-22 -spec: - image: - name: pipelines-triggers-eventlistenersink-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/1-22/openshift-pipelines-core/tektoncd-triggers/image-webhook-1.22.yaml b/.konflux/1-22/openshift-pipelines-core/tektoncd-triggers/image-webhook-1.22.yaml deleted file mode 100644 index 0ef5979d..00000000 --- a/.konflux/1-22/openshift-pipelines-core/tektoncd-triggers/image-webhook-1.22.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pipelines-triggers-webhook-rhel9 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: tektoncd-triggers-1-22-webhook - appstudio.redhat.com/application: openshift-pipelines-core-1-22 -spec: - image: - name: pipelines-triggers-webhook-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/1-22/openshift-pipelines-core/tests.yaml b/.konflux/1-22/openshift-pipelines-core/tests.yaml deleted file mode 100644 index 0e0b58a2..00000000 --- a/.konflux/1-22/openshift-pipelines-core/tests.yaml +++ /dev/null @@ -1,27 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1beta2 -kind: IntegrationTestScenario -metadata: - name: openshift-pipelines-core-1-22-enterprise-contract -spec: - application: openshift-pipelines-core-1-22 - contexts: - - description: execute the integration test for a component - name: component - params: - - name: POLICY_CONFIGURATION - value: tekton-ecosystem-tenant/tekton-ecosystem-tenant-containers - - name: TIMEOUT - value: "15m0s" - - name: SINGLE_COMPONENT - value: "true" - resolverRef: - params: - - name: url - value: "https://github.com/konflux-ci/build-definitions" - - name: revision - value: main - - name: pathInRepo - value: pipelines/enterprise-contract.yaml - resolver: git diff --git a/.konflux/1-22/openshift-pipelines-index-4.16/application.yaml b/.konflux/1-22/openshift-pipelines-index-4.16/application.yaml deleted file mode 100644 index 6b6244ec..00000000 --- a/.konflux/1-22/openshift-pipelines-index-4.16/application.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.16 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Application -metadata: - name: openshift-pipelines-index-4-16-1-22 -spec: - displayName: openshift-pipelines-index-4-16-1-22 diff --git a/.konflux/1-22/openshift-pipelines-index-4.16/operator/component-index-4.16-1.22.yaml b/.konflux/1-22/openshift-pipelines-index-4.16/operator/component-index-4.16-1.22.yaml deleted file mode 100644 index ddbd7c0e..00000000 --- a/.konflux/1-22/openshift-pipelines-index-4.16/operator/component-index-4.16-1.22.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.16 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: operator-1-22-index-4-16 -spec: - componentName: index-4-16 - application: openshift-pipelines-index-4-16-1-22 - build-nudges-ref: - - - source: - git: - url: https://github.com/openshift-pipelines/operator.git - dockerfileUrl: .konflux/dockerfiles/index-4.16.Dockerfile - revision: release-v1.22.x diff --git a/.konflux/1-22/openshift-pipelines-index-4.16/operator/image-index-4.16-1.22.yaml b/.konflux/1-22/openshift-pipelines-index-4.16/operator/image-index-4.16-1.22.yaml deleted file mode 100644 index 98afea17..00000000 --- a/.konflux/1-22/openshift-pipelines-index-4.16/operator/image-index-4.16-1.22.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.16 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pipelines-index-4-16 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: operator-1-22-index-4-16 - appstudio.redhat.com/application: openshift-pipelines-index-4-16-1-22 -spec: - image: - name: pipelines-index-4.16 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/1-22/openshift-pipelines-index-4.16/release-plan.yaml b/.konflux/1-22/openshift-pipelines-index-4.16/release-plan.yaml deleted file mode 100644 index af253103..00000000 --- a/.konflux/1-22/openshift-pipelines-index-4.16/release-plan.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.16 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ReleasePlan -metadata: - labels: - release.appstudio.openshift.io/auto-release: "true" - release.appstudio.openshift.io/standing-attribution: 'true' - name: openshift-pipelines-index-4-16-1-22-rp -spec: - application: openshift-pipelines-index-4-16-1-22 - tenantPipeline: - serviceAccountName: release-registry-openshift-pipelines-index-4-16-1-22 - pipelineRef: - resolver: git - params: - - name: url - value: https://github.com/openshift-pipelines/hack.git - - name: revision - # value: release-v1.22.x - value: main - - name: pathInRepo - value: pipelines/release-pipeline.yaml - params: - - name: release_version - value: "1.22.0" - - name: release_to_github - value: "false" diff --git a/.konflux/1-22/openshift-pipelines-index-4.16/role.yaml b/.konflux/1-22/openshift-pipelines-index-4.16/role.yaml deleted file mode 100644 index 24060486..00000000 --- a/.konflux/1-22/openshift-pipelines-index-4.16/role.yaml +++ /dev/null @@ -1,14 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.16 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: rbac.authorization.k8s.io/v1 -kind: RoleBinding -metadata: - name: release-plan-rolebinding-openshift-pipelines-index-4-16-1-22 -subjects: - - kind: ServiceAccount - name: release-registry-openshift-pipelines-index-4-16-1-22 - apiGroup: "" -roleRef: - kind: ClusterRole - name: konflux-releaser-bot-actions - apiGroup: rbac.authorization.k8s.io \ No newline at end of file diff --git a/.konflux/1-22/openshift-pipelines-index-4.16/service-account.yaml b/.konflux/1-22/openshift-pipelines-index-4.16/service-account.yaml deleted file mode 100644 index 2bede87b..00000000 --- a/.konflux/1-22/openshift-pipelines-index-4.16/service-account.yaml +++ /dev/null @@ -1,10 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.16 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: v1 -imagePullSecrets: - - name: release-registry-openshift-pipelines-quay -kind: ServiceAccount -metadata: - name: release-registry-openshift-pipelines-index-4-16-1-22 -secrets: - - name: release-registry-openshift-pipelines-quay \ No newline at end of file diff --git a/.konflux/1-22/openshift-pipelines-index-4.16/tests.yaml b/.konflux/1-22/openshift-pipelines-index-4.16/tests.yaml deleted file mode 100644 index 6a8fc859..00000000 --- a/.konflux/1-22/openshift-pipelines-index-4.16/tests.yaml +++ /dev/null @@ -1,27 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.16 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1beta2 -kind: IntegrationTestScenario -metadata: - name: openshift-pipelines-index-4-16-1-22-enterprise-contract -spec: - application: openshift-pipelines-index-4-16-1-22 - contexts: - - description: execute the integration test for a component - name: component - params: - - name: POLICY_CONFIGURATION - value: tekton-ecosystem-tenant/tekton-ecosystem-tenant-indexes - - name: TIMEOUT - value: "15m0s" - - name: SINGLE_COMPONENT - value: "true" - resolverRef: - params: - - name: url - value: "https://github.com/konflux-ci/build-definitions" - - name: revision - value: main - - name: pathInRepo - value: pipelines/enterprise-contract.yaml - resolver: git diff --git a/.konflux/1-22/openshift-pipelines-index-4.17/application.yaml b/.konflux/1-22/openshift-pipelines-index-4.17/application.yaml deleted file mode 100644 index e72a47ca..00000000 --- a/.konflux/1-22/openshift-pipelines-index-4.17/application.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.17 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Application -metadata: - name: openshift-pipelines-index-4-17-1-22 -spec: - displayName: openshift-pipelines-index-4-17-1-22 diff --git a/.konflux/1-22/openshift-pipelines-index-4.17/operator/component-index-4.17-1.22.yaml b/.konflux/1-22/openshift-pipelines-index-4.17/operator/component-index-4.17-1.22.yaml deleted file mode 100644 index 887363b4..00000000 --- a/.konflux/1-22/openshift-pipelines-index-4.17/operator/component-index-4.17-1.22.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.17 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: operator-1-22-index-4-17 -spec: - componentName: index-4-17 - application: openshift-pipelines-index-4-17-1-22 - build-nudges-ref: - - - source: - git: - url: https://github.com/openshift-pipelines/operator.git - dockerfileUrl: .konflux/dockerfiles/index-4.17.Dockerfile - revision: release-v1.22.x diff --git a/.konflux/1-22/openshift-pipelines-index-4.17/operator/image-index-4.17-1.22.yaml b/.konflux/1-22/openshift-pipelines-index-4.17/operator/image-index-4.17-1.22.yaml deleted file mode 100644 index 14871fe7..00000000 --- a/.konflux/1-22/openshift-pipelines-index-4.17/operator/image-index-4.17-1.22.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.17 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pipelines-index-4-17 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: operator-1-22-index-4-17 - appstudio.redhat.com/application: openshift-pipelines-index-4-17-1-22 -spec: - image: - name: pipelines-index-4.17 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/1-22/openshift-pipelines-index-4.17/release-plan.yaml b/.konflux/1-22/openshift-pipelines-index-4.17/release-plan.yaml deleted file mode 100644 index 88a3cb90..00000000 --- a/.konflux/1-22/openshift-pipelines-index-4.17/release-plan.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.17 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ReleasePlan -metadata: - labels: - release.appstudio.openshift.io/auto-release: "true" - release.appstudio.openshift.io/standing-attribution: 'true' - name: openshift-pipelines-index-4-17-1-22-rp -spec: - application: openshift-pipelines-index-4-17-1-22 - tenantPipeline: - serviceAccountName: release-registry-openshift-pipelines-index-4-17-1-22 - pipelineRef: - resolver: git - params: - - name: url - value: https://github.com/openshift-pipelines/hack.git - - name: revision - # value: release-v1.22.x - value: main - - name: pathInRepo - value: pipelines/release-pipeline.yaml - params: - - name: release_version - value: "1.22.0" - - name: release_to_github - value: "false" diff --git a/.konflux/1-22/openshift-pipelines-index-4.17/role.yaml b/.konflux/1-22/openshift-pipelines-index-4.17/role.yaml deleted file mode 100644 index 66aa2d50..00000000 --- a/.konflux/1-22/openshift-pipelines-index-4.17/role.yaml +++ /dev/null @@ -1,14 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.17 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: rbac.authorization.k8s.io/v1 -kind: RoleBinding -metadata: - name: release-plan-rolebinding-openshift-pipelines-index-4-17-1-22 -subjects: - - kind: ServiceAccount - name: release-registry-openshift-pipelines-index-4-17-1-22 - apiGroup: "" -roleRef: - kind: ClusterRole - name: konflux-releaser-bot-actions - apiGroup: rbac.authorization.k8s.io \ No newline at end of file diff --git a/.konflux/1-22/openshift-pipelines-index-4.17/service-account.yaml b/.konflux/1-22/openshift-pipelines-index-4.17/service-account.yaml deleted file mode 100644 index a0ddfdd5..00000000 --- a/.konflux/1-22/openshift-pipelines-index-4.17/service-account.yaml +++ /dev/null @@ -1,10 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.17 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: v1 -imagePullSecrets: - - name: release-registry-openshift-pipelines-quay -kind: ServiceAccount -metadata: - name: release-registry-openshift-pipelines-index-4-17-1-22 -secrets: - - name: release-registry-openshift-pipelines-quay \ No newline at end of file diff --git a/.konflux/1-22/openshift-pipelines-index-4.17/tests.yaml b/.konflux/1-22/openshift-pipelines-index-4.17/tests.yaml deleted file mode 100644 index e19158f9..00000000 --- a/.konflux/1-22/openshift-pipelines-index-4.17/tests.yaml +++ /dev/null @@ -1,27 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.17 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1beta2 -kind: IntegrationTestScenario -metadata: - name: openshift-pipelines-index-4-17-1-22-enterprise-contract -spec: - application: openshift-pipelines-index-4-17-1-22 - contexts: - - description: execute the integration test for a component - name: component - params: - - name: POLICY_CONFIGURATION - value: tekton-ecosystem-tenant/tekton-ecosystem-tenant-indexes - - name: TIMEOUT - value: "15m0s" - - name: SINGLE_COMPONENT - value: "true" - resolverRef: - params: - - name: url - value: "https://github.com/konflux-ci/build-definitions" - - name: revision - value: main - - name: pathInRepo - value: pipelines/enterprise-contract.yaml - resolver: git diff --git a/.konflux/1-22/openshift-pipelines-index-4.18/application.yaml b/.konflux/1-22/openshift-pipelines-index-4.18/application.yaml deleted file mode 100644 index 62d46c21..00000000 --- a/.konflux/1-22/openshift-pipelines-index-4.18/application.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.18 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Application -metadata: - name: openshift-pipelines-index-4-18-1-22 -spec: - displayName: openshift-pipelines-index-4-18-1-22 diff --git a/.konflux/1-22/openshift-pipelines-index-4.18/operator/component-index-4.18-1.22.yaml b/.konflux/1-22/openshift-pipelines-index-4.18/operator/component-index-4.18-1.22.yaml deleted file mode 100644 index ef802333..00000000 --- a/.konflux/1-22/openshift-pipelines-index-4.18/operator/component-index-4.18-1.22.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.18 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: operator-1-22-index-4-18 -spec: - componentName: index-4-18 - application: openshift-pipelines-index-4-18-1-22 - build-nudges-ref: - - - source: - git: - url: https://github.com/openshift-pipelines/operator.git - dockerfileUrl: .konflux/dockerfiles/index-4.18.Dockerfile - revision: release-v1.22.x diff --git a/.konflux/1-22/openshift-pipelines-index-4.18/operator/image-index-4.18-1.22.yaml b/.konflux/1-22/openshift-pipelines-index-4.18/operator/image-index-4.18-1.22.yaml deleted file mode 100644 index b13ea1c6..00000000 --- a/.konflux/1-22/openshift-pipelines-index-4.18/operator/image-index-4.18-1.22.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.18 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pipelines-index-4-18 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: operator-1-22-index-4-18 - appstudio.redhat.com/application: openshift-pipelines-index-4-18-1-22 -spec: - image: - name: pipelines-index-4.18 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/1-22/openshift-pipelines-index-4.18/release-plan.yaml b/.konflux/1-22/openshift-pipelines-index-4.18/release-plan.yaml deleted file mode 100644 index c1aa4f63..00000000 --- a/.konflux/1-22/openshift-pipelines-index-4.18/release-plan.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.18 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ReleasePlan -metadata: - labels: - release.appstudio.openshift.io/auto-release: "true" - release.appstudio.openshift.io/standing-attribution: 'true' - name: openshift-pipelines-index-4-18-1-22-rp -spec: - application: openshift-pipelines-index-4-18-1-22 - tenantPipeline: - serviceAccountName: release-registry-openshift-pipelines-index-4-18-1-22 - pipelineRef: - resolver: git - params: - - name: url - value: https://github.com/openshift-pipelines/hack.git - - name: revision - # value: release-v1.22.x - value: main - - name: pathInRepo - value: pipelines/release-pipeline.yaml - params: - - name: release_version - value: "1.22.0" - - name: release_to_github - value: "false" diff --git a/.konflux/1-22/openshift-pipelines-index-4.18/role.yaml b/.konflux/1-22/openshift-pipelines-index-4.18/role.yaml deleted file mode 100644 index 53a19d74..00000000 --- a/.konflux/1-22/openshift-pipelines-index-4.18/role.yaml +++ /dev/null @@ -1,14 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.18 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: rbac.authorization.k8s.io/v1 -kind: RoleBinding -metadata: - name: release-plan-rolebinding-openshift-pipelines-index-4-18-1-22 -subjects: - - kind: ServiceAccount - name: release-registry-openshift-pipelines-index-4-18-1-22 - apiGroup: "" -roleRef: - kind: ClusterRole - name: konflux-releaser-bot-actions - apiGroup: rbac.authorization.k8s.io \ No newline at end of file diff --git a/.konflux/1-22/openshift-pipelines-index-4.18/service-account.yaml b/.konflux/1-22/openshift-pipelines-index-4.18/service-account.yaml deleted file mode 100644 index 20ceeaa3..00000000 --- a/.konflux/1-22/openshift-pipelines-index-4.18/service-account.yaml +++ /dev/null @@ -1,10 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.18 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: v1 -imagePullSecrets: - - name: release-registry-openshift-pipelines-quay -kind: ServiceAccount -metadata: - name: release-registry-openshift-pipelines-index-4-18-1-22 -secrets: - - name: release-registry-openshift-pipelines-quay \ No newline at end of file diff --git a/.konflux/1-22/openshift-pipelines-index-4.18/tests.yaml b/.konflux/1-22/openshift-pipelines-index-4.18/tests.yaml deleted file mode 100644 index 70d3f477..00000000 --- a/.konflux/1-22/openshift-pipelines-index-4.18/tests.yaml +++ /dev/null @@ -1,27 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.18 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1beta2 -kind: IntegrationTestScenario -metadata: - name: openshift-pipelines-index-4-18-1-22-enterprise-contract -spec: - application: openshift-pipelines-index-4-18-1-22 - contexts: - - description: execute the integration test for a component - name: component - params: - - name: POLICY_CONFIGURATION - value: tekton-ecosystem-tenant/tekton-ecosystem-tenant-indexes - - name: TIMEOUT - value: "15m0s" - - name: SINGLE_COMPONENT - value: "true" - resolverRef: - params: - - name: url - value: "https://github.com/konflux-ci/build-definitions" - - name: revision - value: main - - name: pathInRepo - value: pipelines/enterprise-contract.yaml - resolver: git diff --git a/.konflux/1-22/openshift-pipelines-index-4.19/application.yaml b/.konflux/1-22/openshift-pipelines-index-4.19/application.yaml deleted file mode 100644 index eb4c5bae..00000000 --- a/.konflux/1-22/openshift-pipelines-index-4.19/application.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.19 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Application -metadata: - name: openshift-pipelines-index-4-19-1-22 -spec: - displayName: openshift-pipelines-index-4-19-1-22 diff --git a/.konflux/1-22/openshift-pipelines-index-4.19/operator/component-index-4.19-1.22.yaml b/.konflux/1-22/openshift-pipelines-index-4.19/operator/component-index-4.19-1.22.yaml deleted file mode 100644 index 2442da19..00000000 --- a/.konflux/1-22/openshift-pipelines-index-4.19/operator/component-index-4.19-1.22.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.19 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: operator-1-22-index-4-19 -spec: - componentName: index-4-19 - application: openshift-pipelines-index-4-19-1-22 - build-nudges-ref: - - - source: - git: - url: https://github.com/openshift-pipelines/operator.git - dockerfileUrl: .konflux/dockerfiles/index-4.19.Dockerfile - revision: release-v1.22.x diff --git a/.konflux/1-22/openshift-pipelines-index-4.19/operator/image-index-4.19-1.22.yaml b/.konflux/1-22/openshift-pipelines-index-4.19/operator/image-index-4.19-1.22.yaml deleted file mode 100644 index 8a0d947f..00000000 --- a/.konflux/1-22/openshift-pipelines-index-4.19/operator/image-index-4.19-1.22.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.19 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pipelines-index-4-19 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: operator-1-22-index-4-19 - appstudio.redhat.com/application: openshift-pipelines-index-4-19-1-22 -spec: - image: - name: pipelines-index-4.19 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/1-22/openshift-pipelines-index-4.19/release-plan.yaml b/.konflux/1-22/openshift-pipelines-index-4.19/release-plan.yaml deleted file mode 100644 index 2d07e0a7..00000000 --- a/.konflux/1-22/openshift-pipelines-index-4.19/release-plan.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.19 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ReleasePlan -metadata: - labels: - release.appstudio.openshift.io/auto-release: "true" - release.appstudio.openshift.io/standing-attribution: 'true' - name: openshift-pipelines-index-4-19-1-22-rp -spec: - application: openshift-pipelines-index-4-19-1-22 - tenantPipeline: - serviceAccountName: release-registry-openshift-pipelines-index-4-19-1-22 - pipelineRef: - resolver: git - params: - - name: url - value: https://github.com/openshift-pipelines/hack.git - - name: revision - # value: release-v1.22.x - value: main - - name: pathInRepo - value: pipelines/release-pipeline.yaml - params: - - name: release_version - value: "1.22.0" - - name: release_to_github - value: "false" diff --git a/.konflux/1-22/openshift-pipelines-index-4.19/role.yaml b/.konflux/1-22/openshift-pipelines-index-4.19/role.yaml deleted file mode 100644 index bc252518..00000000 --- a/.konflux/1-22/openshift-pipelines-index-4.19/role.yaml +++ /dev/null @@ -1,14 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.19 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: rbac.authorization.k8s.io/v1 -kind: RoleBinding -metadata: - name: release-plan-rolebinding-openshift-pipelines-index-4-19-1-22 -subjects: - - kind: ServiceAccount - name: release-registry-openshift-pipelines-index-4-19-1-22 - apiGroup: "" -roleRef: - kind: ClusterRole - name: konflux-releaser-bot-actions - apiGroup: rbac.authorization.k8s.io \ No newline at end of file diff --git a/.konflux/1-22/openshift-pipelines-index-4.19/service-account.yaml b/.konflux/1-22/openshift-pipelines-index-4.19/service-account.yaml deleted file mode 100644 index cd5c5ee3..00000000 --- a/.konflux/1-22/openshift-pipelines-index-4.19/service-account.yaml +++ /dev/null @@ -1,10 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.19 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: v1 -imagePullSecrets: - - name: release-registry-openshift-pipelines-quay -kind: ServiceAccount -metadata: - name: release-registry-openshift-pipelines-index-4-19-1-22 -secrets: - - name: release-registry-openshift-pipelines-quay \ No newline at end of file diff --git a/.konflux/1-22/openshift-pipelines-index-4.19/tests.yaml b/.konflux/1-22/openshift-pipelines-index-4.19/tests.yaml deleted file mode 100644 index 8b54f238..00000000 --- a/.konflux/1-22/openshift-pipelines-index-4.19/tests.yaml +++ /dev/null @@ -1,27 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.19 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1beta2 -kind: IntegrationTestScenario -metadata: - name: openshift-pipelines-index-4-19-1-22-enterprise-contract -spec: - application: openshift-pipelines-index-4-19-1-22 - contexts: - - description: execute the integration test for a component - name: component - params: - - name: POLICY_CONFIGURATION - value: tekton-ecosystem-tenant/tekton-ecosystem-tenant-indexes - - name: TIMEOUT - value: "15m0s" - - name: SINGLE_COMPONENT - value: "true" - resolverRef: - params: - - name: url - value: "https://github.com/konflux-ci/build-definitions" - - name: revision - value: main - - name: pathInRepo - value: pipelines/enterprise-contract.yaml - resolver: git diff --git a/.konflux/1-22/openshift-pipelines-index-4.20/application.yaml b/.konflux/1-22/openshift-pipelines-index-4.20/application.yaml deleted file mode 100644 index b2f30223..00000000 --- a/.konflux/1-22/openshift-pipelines-index-4.20/application.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.20 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Application -metadata: - name: openshift-pipelines-index-4-20-1-22 -spec: - displayName: openshift-pipelines-index-4-20-1-22 diff --git a/.konflux/1-22/openshift-pipelines-index-4.20/operator/component-index-4.20-1.22.yaml b/.konflux/1-22/openshift-pipelines-index-4.20/operator/component-index-4.20-1.22.yaml deleted file mode 100644 index 6f4c85e5..00000000 --- a/.konflux/1-22/openshift-pipelines-index-4.20/operator/component-index-4.20-1.22.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.20 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: operator-1-22-index-4-20 -spec: - componentName: index-4-20 - application: openshift-pipelines-index-4-20-1-22 - build-nudges-ref: - - - source: - git: - url: https://github.com/openshift-pipelines/operator.git - dockerfileUrl: .konflux/dockerfiles/index-4.20.Dockerfile - revision: release-v1.22.x diff --git a/.konflux/1-22/openshift-pipelines-index-4.20/operator/image-index-4.20-1.22.yaml b/.konflux/1-22/openshift-pipelines-index-4.20/operator/image-index-4.20-1.22.yaml deleted file mode 100644 index dfdcb4f4..00000000 --- a/.konflux/1-22/openshift-pipelines-index-4.20/operator/image-index-4.20-1.22.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.20 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pipelines-index-4-20 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: operator-1-22-index-4-20 - appstudio.redhat.com/application: openshift-pipelines-index-4-20-1-22 -spec: - image: - name: pipelines-index-4.20 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/1-22/openshift-pipelines-index-4.20/release-plan.yaml b/.konflux/1-22/openshift-pipelines-index-4.20/release-plan.yaml deleted file mode 100644 index 1dedcbed..00000000 --- a/.konflux/1-22/openshift-pipelines-index-4.20/release-plan.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.20 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ReleasePlan -metadata: - labels: - release.appstudio.openshift.io/auto-release: "true" - release.appstudio.openshift.io/standing-attribution: 'true' - name: openshift-pipelines-index-4-20-1-22-rp -spec: - application: openshift-pipelines-index-4-20-1-22 - tenantPipeline: - serviceAccountName: release-registry-openshift-pipelines-index-4-20-1-22 - pipelineRef: - resolver: git - params: - - name: url - value: https://github.com/openshift-pipelines/hack.git - - name: revision - # value: release-v1.22.x - value: main - - name: pathInRepo - value: pipelines/release-pipeline.yaml - params: - - name: release_version - value: "1.22.0" - - name: release_to_github - value: "false" diff --git a/.konflux/1-22/openshift-pipelines-index-4.20/role.yaml b/.konflux/1-22/openshift-pipelines-index-4.20/role.yaml deleted file mode 100644 index cab8e447..00000000 --- a/.konflux/1-22/openshift-pipelines-index-4.20/role.yaml +++ /dev/null @@ -1,14 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.20 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: rbac.authorization.k8s.io/v1 -kind: RoleBinding -metadata: - name: release-plan-rolebinding-openshift-pipelines-index-4-20-1-22 -subjects: - - kind: ServiceAccount - name: release-registry-openshift-pipelines-index-4-20-1-22 - apiGroup: "" -roleRef: - kind: ClusterRole - name: konflux-releaser-bot-actions - apiGroup: rbac.authorization.k8s.io \ No newline at end of file diff --git a/.konflux/1-22/openshift-pipelines-index-4.20/service-account.yaml b/.konflux/1-22/openshift-pipelines-index-4.20/service-account.yaml deleted file mode 100644 index 1775b9be..00000000 --- a/.konflux/1-22/openshift-pipelines-index-4.20/service-account.yaml +++ /dev/null @@ -1,10 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.20 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: v1 -imagePullSecrets: - - name: release-registry-openshift-pipelines-quay -kind: ServiceAccount -metadata: - name: release-registry-openshift-pipelines-index-4-20-1-22 -secrets: - - name: release-registry-openshift-pipelines-quay \ No newline at end of file diff --git a/.konflux/1-22/openshift-pipelines-index-4.20/tests.yaml b/.konflux/1-22/openshift-pipelines-index-4.20/tests.yaml deleted file mode 100644 index b5cbd16f..00000000 --- a/.konflux/1-22/openshift-pipelines-index-4.20/tests.yaml +++ /dev/null @@ -1,27 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.20 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1beta2 -kind: IntegrationTestScenario -metadata: - name: openshift-pipelines-index-4-20-1-22-enterprise-contract -spec: - application: openshift-pipelines-index-4-20-1-22 - contexts: - - description: execute the integration test for a component - name: component - params: - - name: POLICY_CONFIGURATION - value: tekton-ecosystem-tenant/tekton-ecosystem-tenant-indexes - - name: TIMEOUT - value: "15m0s" - - name: SINGLE_COMPONENT - value: "true" - resolverRef: - params: - - name: url - value: "https://github.com/konflux-ci/build-definitions" - - name: revision - value: main - - name: pathInRepo - value: pipelines/enterprise-contract.yaml - resolver: git diff --git a/.konflux/1-22/openshift-pipelines-operator/application.yaml b/.konflux/1-22/openshift-pipelines-operator/application.yaml deleted file mode 100644 index aa46d079..00000000 --- a/.konflux/1-22/openshift-pipelines-operator/application.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-operator by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Application -metadata: - name: openshift-pipelines-operator-1-22 -spec: - displayName: openshift-pipelines-operator-1-22 diff --git a/.konflux/1-22/openshift-pipelines-operator/operator/component-bundle-1.22.yaml b/.konflux/1-22/openshift-pipelines-operator/operator/component-bundle-1.22.yaml deleted file mode 100644 index b068ab68..00000000 --- a/.konflux/1-22/openshift-pipelines-operator/operator/component-bundle-1.22.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-operator by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: operator-1-22-bundle -spec: - componentName: bundle - application: openshift-pipelines-operator-1-22 - build-nudges-ref: - - operator-1-22-index-4-20 - source: - git: - url: https://github.com/openshift-pipelines/operator.git - dockerfileUrl: .konflux/dockerfiles/bundle.Dockerfile - revision: release-v1.22.x diff --git a/.konflux/1-22/openshift-pipelines-operator/operator/component-operator-1.22.yaml b/.konflux/1-22/openshift-pipelines-operator/operator/component-operator-1.22.yaml deleted file mode 100644 index a296a800..00000000 --- a/.konflux/1-22/openshift-pipelines-operator/operator/component-operator-1.22.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-operator by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: operator-1-22-operator -spec: - componentName: operator - application: openshift-pipelines-operator-1-22 - build-nudges-ref: - - operator-1-22-bundle - source: - git: - url: https://github.com/openshift-pipelines/operator.git - dockerfileUrl: .konflux/dockerfiles/operator.Dockerfile - revision: release-v1.22.x diff --git a/.konflux/1-22/openshift-pipelines-operator/operator/component-proxy-1.22.yaml b/.konflux/1-22/openshift-pipelines-operator/operator/component-proxy-1.22.yaml deleted file mode 100644 index 75eadbbb..00000000 --- a/.konflux/1-22/openshift-pipelines-operator/operator/component-proxy-1.22.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-operator by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: operator-1-22-proxy -spec: - componentName: proxy - application: openshift-pipelines-operator-1-22 - build-nudges-ref: - - operator-1-22-bundle - source: - git: - url: https://github.com/openshift-pipelines/operator.git - dockerfileUrl: .konflux/dockerfiles/proxy.Dockerfile - revision: release-v1.22.x diff --git a/.konflux/1-22/openshift-pipelines-operator/operator/component-webhook-1.22.yaml b/.konflux/1-22/openshift-pipelines-operator/operator/component-webhook-1.22.yaml deleted file mode 100644 index 727fe75d..00000000 --- a/.konflux/1-22/openshift-pipelines-operator/operator/component-webhook-1.22.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-operator by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: operator-1-22-webhook -spec: - componentName: webhook - application: openshift-pipelines-operator-1-22 - build-nudges-ref: - - operator-1-22-bundle - source: - git: - url: https://github.com/openshift-pipelines/operator.git - dockerfileUrl: .konflux/dockerfiles/webhook.Dockerfile - revision: release-v1.22.x diff --git a/.konflux/1-22/openshift-pipelines-operator/operator/image-bundle-1.22.yaml b/.konflux/1-22/openshift-pipelines-operator/operator/image-bundle-1.22.yaml deleted file mode 100644 index 1efcab6a..00000000 --- a/.konflux/1-22/openshift-pipelines-operator/operator/image-bundle-1.22.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-operator by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pipelines-operator-bundle - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: operator-1-22-bundle - appstudio.redhat.com/application: openshift-pipelines-operator-1-22 -spec: - image: - name: pipelines-operator-bundle - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/1-22/openshift-pipelines-operator/operator/image-operator-1.22.yaml b/.konflux/1-22/openshift-pipelines-operator/operator/image-operator-1.22.yaml deleted file mode 100644 index b0e56738..00000000 --- a/.konflux/1-22/openshift-pipelines-operator/operator/image-operator-1.22.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-operator by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pipelines-rhel9-operator - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: operator-1-22-operator - appstudio.redhat.com/application: openshift-pipelines-operator-1-22 -spec: - image: - name: pipelines-rhel9-operator - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/1-22/openshift-pipelines-operator/operator/image-proxy-1.22.yaml b/.konflux/1-22/openshift-pipelines-operator/operator/image-proxy-1.22.yaml deleted file mode 100644 index 27d8530c..00000000 --- a/.konflux/1-22/openshift-pipelines-operator/operator/image-proxy-1.22.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-operator by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pipelines-operator-proxy-rhel9 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: operator-1-22-proxy - appstudio.redhat.com/application: openshift-pipelines-operator-1-22 -spec: - image: - name: pipelines-operator-proxy-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/1-22/openshift-pipelines-operator/operator/image-webhook-1.22.yaml b/.konflux/1-22/openshift-pipelines-operator/operator/image-webhook-1.22.yaml deleted file mode 100644 index ad104f96..00000000 --- a/.konflux/1-22/openshift-pipelines-operator/operator/image-webhook-1.22.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-operator by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pipelines-operator-webhook-rhel9 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: operator-1-22-webhook - appstudio.redhat.com/application: openshift-pipelines-operator-1-22 -spec: - image: - name: pipelines-operator-webhook-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/1-22/openshift-pipelines-operator/release-plan.yaml b/.konflux/1-22/openshift-pipelines-operator/release-plan.yaml deleted file mode 100644 index 75844844..00000000 --- a/.konflux/1-22/openshift-pipelines-operator/release-plan.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-operator by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ReleasePlan -metadata: - labels: - release.appstudio.openshift.io/auto-release: "true" - release.appstudio.openshift.io/standing-attribution: 'true' - name: openshift-pipelines-operator-1-22-rp -spec: - application: openshift-pipelines-operator-1-22 - tenantPipeline: - serviceAccountName: release-registry-openshift-pipelines-operator-1-22 - pipelineRef: - resolver: git - params: - - name: url - value: https://github.com/openshift-pipelines/hack.git - - name: revision - # value: release-v1.22.x - value: main - - name: pathInRepo - value: pipelines/release-pipeline.yaml - params: - - name: release_version - value: "1.22.0" - - name: release_to_github - value: "false" diff --git a/.konflux/1-22/openshift-pipelines-operator/role.yaml b/.konflux/1-22/openshift-pipelines-operator/role.yaml deleted file mode 100644 index cf9fce69..00000000 --- a/.konflux/1-22/openshift-pipelines-operator/role.yaml +++ /dev/null @@ -1,14 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-operator by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: rbac.authorization.k8s.io/v1 -kind: RoleBinding -metadata: - name: release-plan-rolebinding-openshift-pipelines-operator-1-22 -subjects: - - kind: ServiceAccount - name: release-registry-openshift-pipelines-operator-1-22 - apiGroup: "" -roleRef: - kind: ClusterRole - name: konflux-releaser-bot-actions - apiGroup: rbac.authorization.k8s.io \ No newline at end of file diff --git a/.konflux/1-22/openshift-pipelines-operator/service-account.yaml b/.konflux/1-22/openshift-pipelines-operator/service-account.yaml deleted file mode 100644 index 62c1d78e..00000000 --- a/.konflux/1-22/openshift-pipelines-operator/service-account.yaml +++ /dev/null @@ -1,10 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-operator by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: v1 -imagePullSecrets: - - name: release-registry-openshift-pipelines-quay -kind: ServiceAccount -metadata: - name: release-registry-openshift-pipelines-operator-1-22 -secrets: - - name: release-registry-openshift-pipelines-quay \ No newline at end of file diff --git a/.konflux/1-22/openshift-pipelines-operator/tests.yaml b/.konflux/1-22/openshift-pipelines-operator/tests.yaml deleted file mode 100644 index 8350d1dc..00000000 --- a/.konflux/1-22/openshift-pipelines-operator/tests.yaml +++ /dev/null @@ -1,27 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-operator by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1beta2 -kind: IntegrationTestScenario -metadata: - name: openshift-pipelines-operator-1-22-enterprise-contract -spec: - application: openshift-pipelines-operator-1-22 - contexts: - - description: execute the integration test for a component - name: component - params: - - name: POLICY_CONFIGURATION - value: tekton-ecosystem-tenant/tekton-ecosystem-tenant-containers - - name: TIMEOUT - value: "15m0s" - - name: SINGLE_COMPONENT - value: "true" - resolverRef: - params: - - name: url - value: "https://github.com/konflux-ci/build-definitions" - - name: revision - value: main - - name: pathInRepo - value: pipelines/enterprise-contract.yaml - resolver: git diff --git a/.konflux/next/openshift-pipelines-cli/application.yaml b/.konflux/next/openshift-pipelines-cli/application.yaml deleted file mode 100644 index 1945e306..00000000 --- a/.konflux/next/openshift-pipelines-cli/application.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-cli by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Application -metadata: - name: openshift-pipelines-cli-next -spec: - displayName: openshift-pipelines-cli-next diff --git a/.konflux/next/openshift-pipelines-cli/p12n-opc/component-opc-next.yaml b/.konflux/next/openshift-pipelines-cli/p12n-opc/component-opc-next.yaml deleted file mode 100644 index 08a6146c..00000000 --- a/.konflux/next/openshift-pipelines-cli/p12n-opc/component-opc-next.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-cli by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: p12n-opc-next-opc -spec: - componentName: opc - application: openshift-pipelines-cli-next - build-nudges-ref: - - operator-next-bundle - source: - git: - url: https://github.com/openshift-pipelines/p12n-opc.git - dockerfileUrl: .konflux/dockerfiles/opc.Dockerfile - revision: next diff --git a/.konflux/next/openshift-pipelines-cli/p12n-opc/image-opc-next.yaml b/.konflux/next/openshift-pipelines-cli/p12n-opc/image-opc-next.yaml deleted file mode 100644 index 6d87f43f..00000000 --- a/.konflux/next/openshift-pipelines-cli/p12n-opc/image-opc-next.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-cli by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pipelines-opc-rhel9 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: p12n-opc-next-opc - appstudio.redhat.com/application: openshift-pipelines-cli-next -spec: - image: - name: pipelines-opc-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/next/openshift-pipelines-cli/release-plan.yaml b/.konflux/next/openshift-pipelines-cli/release-plan.yaml deleted file mode 100644 index d2d55a26..00000000 --- a/.konflux/next/openshift-pipelines-cli/release-plan.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-cli by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ReleasePlan -metadata: - labels: - release.appstudio.openshift.io/auto-release: "true" - release.appstudio.openshift.io/standing-attribution: 'true' - name: openshift-pipelines-cli-next-rp -spec: - application: openshift-pipelines-cli-next - tenantPipeline: - serviceAccountName: release-registry-openshift-pipelines-cli-next - pipelineRef: - resolver: git - params: - - name: url - value: https://github.com/openshift-pipelines/hack.git - - name: revision - # value: next - value: main - - name: pathInRepo - value: pipelines/release-pipeline.yaml - params: - - name: release_version - value: "next" - - name: release_to_github - value: "false" diff --git a/.konflux/next/openshift-pipelines-cli/role.yaml b/.konflux/next/openshift-pipelines-cli/role.yaml deleted file mode 100644 index 7da30d20..00000000 --- a/.konflux/next/openshift-pipelines-cli/role.yaml +++ /dev/null @@ -1,14 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-cli by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: rbac.authorization.k8s.io/v1 -kind: RoleBinding -metadata: - name: release-plan-rolebinding-openshift-pipelines-cli-next -subjects: - - kind: ServiceAccount - name: release-registry-openshift-pipelines-cli-next - apiGroup: "" -roleRef: - kind: ClusterRole - name: konflux-releaser-bot-actions - apiGroup: rbac.authorization.k8s.io \ No newline at end of file diff --git a/.konflux/next/openshift-pipelines-cli/serve-tkn-cli/component-cli-next.yaml b/.konflux/next/openshift-pipelines-cli/serve-tkn-cli/component-cli-next.yaml deleted file mode 100644 index 93eda9ea..00000000 --- a/.konflux/next/openshift-pipelines-cli/serve-tkn-cli/component-cli-next.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-cli by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: serve-tkn-cli-next-cli -spec: - componentName: cli - application: openshift-pipelines-cli-next - build-nudges-ref: - - operator-next-bundle - source: - git: - url: https://github.com/openshift-pipelines/serve-tkn-cli.git - dockerfileUrl: .konflux/dockerfiles/cli.Dockerfile - revision: next diff --git a/.konflux/next/openshift-pipelines-cli/serve-tkn-cli/component-opc-next.yaml b/.konflux/next/openshift-pipelines-cli/serve-tkn-cli/component-opc-next.yaml deleted file mode 100644 index 623ff733..00000000 --- a/.konflux/next/openshift-pipelines-cli/serve-tkn-cli/component-opc-next.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-cli by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: serve-tkn-cli-next-opc -spec: - componentName: opc - application: openshift-pipelines-cli-next - build-nudges-ref: - - serve-tkn-cli-next-serve-tkn-cli - source: - git: - url: https://github.com/openshift-pipelines/serve-tkn-cli.git - dockerfileUrl: .konflux/dockerfiles/opc.Dockerfile - revision: next diff --git a/.konflux/next/openshift-pipelines-cli/serve-tkn-cli/component-serve-tkn-cli-next.yaml b/.konflux/next/openshift-pipelines-cli/serve-tkn-cli/component-serve-tkn-cli-next.yaml deleted file mode 100644 index 02c700b0..00000000 --- a/.konflux/next/openshift-pipelines-cli/serve-tkn-cli/component-serve-tkn-cli-next.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-cli by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: serve-tkn-cli-next-serve-tkn-cli -spec: - componentName: serve-tkn-cli - application: openshift-pipelines-cli-next - build-nudges-ref: - - operator-next-bundle - source: - git: - url: https://github.com/openshift-pipelines/serve-tkn-cli.git - dockerfileUrl: .konflux/dockerfiles/serve-tkn-cli.Dockerfile - revision: next diff --git a/.konflux/next/openshift-pipelines-cli/serve-tkn-cli/component-tkn-next.yaml b/.konflux/next/openshift-pipelines-cli/serve-tkn-cli/component-tkn-next.yaml deleted file mode 100644 index 83bea5f8..00000000 --- a/.konflux/next/openshift-pipelines-cli/serve-tkn-cli/component-tkn-next.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-cli by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: serve-tkn-cli-next-tkn -spec: - componentName: tkn - application: openshift-pipelines-cli-next - build-nudges-ref: - - serve-tkn-cli-next-serve-tkn-cli - source: - git: - url: https://github.com/openshift-pipelines/serve-tkn-cli.git - dockerfileUrl: .konflux/dockerfiles/tkn.Dockerfile - revision: next diff --git a/.konflux/next/openshift-pipelines-cli/serve-tkn-cli/component-tkn-pac-next.yaml b/.konflux/next/openshift-pipelines-cli/serve-tkn-cli/component-tkn-pac-next.yaml deleted file mode 100644 index c074ea36..00000000 --- a/.konflux/next/openshift-pipelines-cli/serve-tkn-cli/component-tkn-pac-next.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-cli by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: serve-tkn-cli-next-tkn-pac -spec: - componentName: tkn-pac - application: openshift-pipelines-cli-next - build-nudges-ref: - - serve-tkn-cli-next-serve-tkn-cli - source: - git: - url: https://github.com/openshift-pipelines/serve-tkn-cli.git - dockerfileUrl: .konflux/dockerfiles/tkn-pac.Dockerfile - revision: next diff --git a/.konflux/next/openshift-pipelines-cli/serve-tkn-cli/image-cli-next.yaml b/.konflux/next/openshift-pipelines-cli/serve-tkn-cli/image-cli-next.yaml deleted file mode 100644 index 6b09270a..00000000 --- a/.konflux/next/openshift-pipelines-cli/serve-tkn-cli/image-cli-next.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-cli by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pipelines-cli-rhel9 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: serve-tkn-cli-next-cli - appstudio.redhat.com/application: openshift-pipelines-cli-next -spec: - image: - name: pipelines-cli-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/next/openshift-pipelines-cli/serve-tkn-cli/image-opc-next.yaml b/.konflux/next/openshift-pipelines-cli/serve-tkn-cli/image-opc-next.yaml deleted file mode 100644 index 00b1b9ac..00000000 --- a/.konflux/next/openshift-pipelines-cli/serve-tkn-cli/image-opc-next.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-cli by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pipelines-opc-rhel9 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: serve-tkn-cli-next-opc - appstudio.redhat.com/application: openshift-pipelines-cli-next -spec: - image: - name: pipelines-opc-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/next/openshift-pipelines-cli/serve-tkn-cli/image-serve-tkn-cli-next.yaml b/.konflux/next/openshift-pipelines-cli/serve-tkn-cli/image-serve-tkn-cli-next.yaml deleted file mode 100644 index 10a8fd80..00000000 --- a/.konflux/next/openshift-pipelines-cli/serve-tkn-cli/image-serve-tkn-cli-next.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-cli by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pipelines-serve-tkn-cli-rhel9 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: serve-tkn-cli-next-serve-tkn-cli - appstudio.redhat.com/application: openshift-pipelines-cli-next -spec: - image: - name: pipelines-serve-tkn-cli-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/next/openshift-pipelines-cli/serve-tkn-cli/image-tkn-next.yaml b/.konflux/next/openshift-pipelines-cli/serve-tkn-cli/image-tkn-next.yaml deleted file mode 100644 index cda330d6..00000000 --- a/.konflux/next/openshift-pipelines-cli/serve-tkn-cli/image-tkn-next.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-cli by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pipelines-tkn-rhel9 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: serve-tkn-cli-next-tkn - appstudio.redhat.com/application: openshift-pipelines-cli-next -spec: - image: - name: pipelines-tkn-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/next/openshift-pipelines-cli/serve-tkn-cli/image-tkn-pac-next.yaml b/.konflux/next/openshift-pipelines-cli/serve-tkn-cli/image-tkn-pac-next.yaml deleted file mode 100644 index ac046399..00000000 --- a/.konflux/next/openshift-pipelines-cli/serve-tkn-cli/image-tkn-pac-next.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-cli by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pipelines-tkn-pac-rhel9 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: serve-tkn-cli-next-tkn-pac - appstudio.redhat.com/application: openshift-pipelines-cli-next -spec: - image: - name: pipelines-tkn-pac-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/next/openshift-pipelines-cli/service-account.yaml b/.konflux/next/openshift-pipelines-cli/service-account.yaml deleted file mode 100644 index 88ffc518..00000000 --- a/.konflux/next/openshift-pipelines-cli/service-account.yaml +++ /dev/null @@ -1,10 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-cli by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: v1 -imagePullSecrets: - - name: release-registry-openshift-pipelines-quay -kind: ServiceAccount -metadata: - name: release-registry-openshift-pipelines-cli-next -secrets: - - name: release-registry-openshift-pipelines-quay \ No newline at end of file diff --git a/.konflux/next/openshift-pipelines-cli/tektoncd-cli/component-tkn-next.yaml b/.konflux/next/openshift-pipelines-cli/tektoncd-cli/component-tkn-next.yaml deleted file mode 100644 index 1d579862..00000000 --- a/.konflux/next/openshift-pipelines-cli/tektoncd-cli/component-tkn-next.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-cli by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: tektoncd-cli-next-tkn -spec: - componentName: tkn - application: openshift-pipelines-cli-next - build-nudges-ref: - - operator-next-bundle - source: - git: - url: https://github.com/openshift-pipelines/tektoncd-cli.git - dockerfileUrl: .konflux/dockerfiles/tkn.Dockerfile - revision: next diff --git a/.konflux/next/openshift-pipelines-cli/tektoncd-cli/image-tkn-next.yaml b/.konflux/next/openshift-pipelines-cli/tektoncd-cli/image-tkn-next.yaml deleted file mode 100644 index b9c82c44..00000000 --- a/.konflux/next/openshift-pipelines-cli/tektoncd-cli/image-tkn-next.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-cli by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pipelines-cli-tkn-rhel9 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: tektoncd-cli-next-tkn - appstudio.redhat.com/application: openshift-pipelines-cli-next -spec: - image: - name: pipelines-cli-tkn-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/next/openshift-pipelines-cli/tests.yaml b/.konflux/next/openshift-pipelines-cli/tests.yaml deleted file mode 100644 index 773709a8..00000000 --- a/.konflux/next/openshift-pipelines-cli/tests.yaml +++ /dev/null @@ -1,27 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-cli by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1beta2 -kind: IntegrationTestScenario -metadata: - name: openshift-pipelines-cli-next-enterprise-contract -spec: - application: openshift-pipelines-cli-next - contexts: - - description: execute the integration test for a component - name: component - params: - - name: POLICY_CONFIGURATION - value: tekton-ecosystem-tenant/tekton-ecosystem-tenant-containers - - name: TIMEOUT - value: "15m0s" - - name: SINGLE_COMPONENT - value: "true" - resolverRef: - params: - - name: url - value: "https://github.com/konflux-ci/build-definitions" - - name: revision - value: main - - name: pathInRepo - value: pipelines/enterprise-contract.yaml - resolver: git diff --git a/.konflux/next/openshift-pipelines-core/application.yaml b/.konflux/next/openshift-pipelines-core/application.yaml deleted file mode 100644 index 2a2ff4d5..00000000 --- a/.konflux/next/openshift-pipelines-core/application.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Application -metadata: - name: openshift-pipelines-core-next -spec: - displayName: openshift-pipelines-core-next diff --git a/.konflux/next/openshift-pipelines-core/p12n-console-plugin/component-console-plugin-next.yaml b/.konflux/next/openshift-pipelines-core/p12n-console-plugin/component-console-plugin-next.yaml deleted file mode 100644 index e828ccc3..00000000 --- a/.konflux/next/openshift-pipelines-core/p12n-console-plugin/component-console-plugin-next.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: p12n-console-plugin-next-console-plugin -spec: - componentName: console-plugin - application: openshift-pipelines-core-next - build-nudges-ref: - - operator-next-bundle - source: - git: - url: https://github.com/openshift-pipelines/p12n-console-plugin.git - dockerfileUrl: .konflux/dockerfiles/console-plugin.Dockerfile - revision: next diff --git a/.konflux/next/openshift-pipelines-core/p12n-console-plugin/image-console-plugin-next.yaml b/.konflux/next/openshift-pipelines-core/p12n-console-plugin/image-console-plugin-next.yaml deleted file mode 100644 index f8b546b2..00000000 --- a/.konflux/next/openshift-pipelines-core/p12n-console-plugin/image-console-plugin-next.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: console-plugin-rhel9 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: p12n-console-plugin-next-console-plugin - appstudio.redhat.com/application: openshift-pipelines-core-next -spec: - image: - name: console-plugin-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/next/openshift-pipelines-core/p12n-manual-approval-gate/component-controller-next.yaml b/.konflux/next/openshift-pipelines-core/p12n-manual-approval-gate/component-controller-next.yaml deleted file mode 100644 index a145de39..00000000 --- a/.konflux/next/openshift-pipelines-core/p12n-manual-approval-gate/component-controller-next.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: p12n-manual-approval-gate-next-controller -spec: - componentName: controller - application: openshift-pipelines-core-next - build-nudges-ref: - - operator-next-bundle - source: - git: - url: https://github.com/openshift-pipelines/p12n-manual-approval-gate.git - dockerfileUrl: .konflux/dockerfiles/controller.Dockerfile - revision: next diff --git a/.konflux/next/openshift-pipelines-core/p12n-manual-approval-gate/component-webhook-next.yaml b/.konflux/next/openshift-pipelines-core/p12n-manual-approval-gate/component-webhook-next.yaml deleted file mode 100644 index b7a4861b..00000000 --- a/.konflux/next/openshift-pipelines-core/p12n-manual-approval-gate/component-webhook-next.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: p12n-manual-approval-gate-next-webhook -spec: - componentName: webhook - application: openshift-pipelines-core-next - build-nudges-ref: - - operator-next-bundle - source: - git: - url: https://github.com/openshift-pipelines/p12n-manual-approval-gate.git - dockerfileUrl: .konflux/dockerfiles/webhook.Dockerfile - revision: next diff --git a/.konflux/next/openshift-pipelines-core/p12n-manual-approval-gate/image-controller-next.yaml b/.konflux/next/openshift-pipelines-core/p12n-manual-approval-gate/image-controller-next.yaml deleted file mode 100644 index caf02b77..00000000 --- a/.konflux/next/openshift-pipelines-core/p12n-manual-approval-gate/image-controller-next.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pipelines-manual-approval-gate-controller-rhel9 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: p12n-manual-approval-gate-next-controller - appstudio.redhat.com/application: openshift-pipelines-core-next -spec: - image: - name: pipelines-manual-approval-gate-controller-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/next/openshift-pipelines-core/p12n-manual-approval-gate/image-webhook-next.yaml b/.konflux/next/openshift-pipelines-core/p12n-manual-approval-gate/image-webhook-next.yaml deleted file mode 100644 index b67cddce..00000000 --- a/.konflux/next/openshift-pipelines-core/p12n-manual-approval-gate/image-webhook-next.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pipelines-manual-approval-gate-webhook-rhel9 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: p12n-manual-approval-gate-next-webhook - appstudio.redhat.com/application: openshift-pipelines-core-next -spec: - image: - name: pipelines-manual-approval-gate-webhook-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/next/openshift-pipelines-core/p12n-tekton-assist/component-tekton-assist-next.yaml b/.konflux/next/openshift-pipelines-core/p12n-tekton-assist/component-tekton-assist-next.yaml deleted file mode 100644 index 3f6214f1..00000000 --- a/.konflux/next/openshift-pipelines-core/p12n-tekton-assist/component-tekton-assist-next.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: p12n-tekton-assist-next-tekton-assist -spec: - componentName: tekton-assist - application: openshift-pipelines-core-next - build-nudges-ref: - - operator-next-bundle - source: - git: - url: https://github.com/openshift-pipelines/p12n-tekton-assist.git - dockerfileUrl: .konflux/dockerfiles/tekton-assist.Dockerfile - revision: next diff --git a/.konflux/next/openshift-pipelines-core/p12n-tekton-assist/image-tekton-assist-next.yaml b/.konflux/next/openshift-pipelines-core/p12n-tekton-assist/image-tekton-assist-next.yaml deleted file mode 100644 index f2550809..00000000 --- a/.konflux/next/openshift-pipelines-core/p12n-tekton-assist/image-tekton-assist-next.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pipelines-tekton-assist-rhel9 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: p12n-tekton-assist-next-tekton-assist - appstudio.redhat.com/application: openshift-pipelines-core-next -spec: - image: - name: pipelines-tekton-assist-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/next/openshift-pipelines-core/p12n-tekton-caches/component-cache-next.yaml b/.konflux/next/openshift-pipelines-core/p12n-tekton-caches/component-cache-next.yaml deleted file mode 100644 index 6849bd18..00000000 --- a/.konflux/next/openshift-pipelines-core/p12n-tekton-caches/component-cache-next.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: p12n-tekton-caches-next-cache -spec: - componentName: cache - application: openshift-pipelines-core-next - build-nudges-ref: - - operator-next-bundle - source: - git: - url: https://github.com/openshift-pipelines/p12n-tekton-caches.git - dockerfileUrl: .konflux/dockerfiles/cache.Dockerfile - revision: next diff --git a/.konflux/next/openshift-pipelines-core/p12n-tekton-caches/image-cache-next.yaml b/.konflux/next/openshift-pipelines-core/p12n-tekton-caches/image-cache-next.yaml deleted file mode 100644 index 801a1912..00000000 --- a/.konflux/next/openshift-pipelines-core/p12n-tekton-caches/image-cache-next.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pipelines-cache-rhel9 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: p12n-tekton-caches-next-cache - appstudio.redhat.com/application: openshift-pipelines-core-next -spec: - image: - name: pipelines-cache-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/next/openshift-pipelines-core/pac-downstream/component-cli-next.yaml b/.konflux/next/openshift-pipelines-core/pac-downstream/component-cli-next.yaml deleted file mode 100644 index f6ef4808..00000000 --- a/.konflux/next/openshift-pipelines-core/pac-downstream/component-cli-next.yaml +++ /dev/null @@ -1,19 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: pac-downstream-next-cli -spec: - componentName: cli - application: openshift-pipelines-core-next - build-nudges-ref: - - operator-next-bundle - - tektoncd-cli-next-tkn - source: - git: - url: https://github.com/openshift-pipelines/pac-downstream.git - dockerfileUrl: .konflux/dockerfiles/cli.Dockerfile - revision: next diff --git a/.konflux/next/openshift-pipelines-core/pac-downstream/component-controller-next.yaml b/.konflux/next/openshift-pipelines-core/pac-downstream/component-controller-next.yaml deleted file mode 100644 index 2e14f65b..00000000 --- a/.konflux/next/openshift-pipelines-core/pac-downstream/component-controller-next.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: pac-downstream-next-controller -spec: - componentName: controller - application: openshift-pipelines-core-next - build-nudges-ref: - - operator-next-bundle - source: - git: - url: https://github.com/openshift-pipelines/pac-downstream.git - dockerfileUrl: .konflux/dockerfiles/controller.Dockerfile - revision: next diff --git a/.konflux/next/openshift-pipelines-core/pac-downstream/component-watcher-next.yaml b/.konflux/next/openshift-pipelines-core/pac-downstream/component-watcher-next.yaml deleted file mode 100644 index 5ccdbd0c..00000000 --- a/.konflux/next/openshift-pipelines-core/pac-downstream/component-watcher-next.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: pac-downstream-next-watcher -spec: - componentName: watcher - application: openshift-pipelines-core-next - build-nudges-ref: - - operator-next-bundle - source: - git: - url: https://github.com/openshift-pipelines/pac-downstream.git - dockerfileUrl: .konflux/dockerfiles/watcher.Dockerfile - revision: next diff --git a/.konflux/next/openshift-pipelines-core/pac-downstream/component-webhook-next.yaml b/.konflux/next/openshift-pipelines-core/pac-downstream/component-webhook-next.yaml deleted file mode 100644 index 86e700ca..00000000 --- a/.konflux/next/openshift-pipelines-core/pac-downstream/component-webhook-next.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: pac-downstream-next-webhook -spec: - componentName: webhook - application: openshift-pipelines-core-next - build-nudges-ref: - - operator-next-bundle - source: - git: - url: https://github.com/openshift-pipelines/pac-downstream.git - dockerfileUrl: .konflux/dockerfiles/webhook.Dockerfile - revision: next diff --git a/.konflux/next/openshift-pipelines-core/pac-downstream/image-cli-next.yaml b/.konflux/next/openshift-pipelines-core/pac-downstream/image-cli-next.yaml deleted file mode 100644 index 85dabf28..00000000 --- a/.konflux/next/openshift-pipelines-core/pac-downstream/image-cli-next.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pipelines-pipelines-as-code-cli-rhel9 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: pac-downstream-next-cli - appstudio.redhat.com/application: openshift-pipelines-core-next -spec: - image: - name: pipelines-pipelines-as-code-cli-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/next/openshift-pipelines-core/pac-downstream/image-controller-next.yaml b/.konflux/next/openshift-pipelines-core/pac-downstream/image-controller-next.yaml deleted file mode 100644 index cd6fb6b9..00000000 --- a/.konflux/next/openshift-pipelines-core/pac-downstream/image-controller-next.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pipelines-pipelines-as-code-controller-rhel9 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: pac-downstream-next-controller - appstudio.redhat.com/application: openshift-pipelines-core-next -spec: - image: - name: pipelines-pipelines-as-code-controller-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/next/openshift-pipelines-core/pac-downstream/image-watcher-next.yaml b/.konflux/next/openshift-pipelines-core/pac-downstream/image-watcher-next.yaml deleted file mode 100644 index fccb1780..00000000 --- a/.konflux/next/openshift-pipelines-core/pac-downstream/image-watcher-next.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pipelines-pipelines-as-code-watcher-rhel9 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: pac-downstream-next-watcher - appstudio.redhat.com/application: openshift-pipelines-core-next -spec: - image: - name: pipelines-pipelines-as-code-watcher-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/next/openshift-pipelines-core/pac-downstream/image-webhook-next.yaml b/.konflux/next/openshift-pipelines-core/pac-downstream/image-webhook-next.yaml deleted file mode 100644 index 820895ed..00000000 --- a/.konflux/next/openshift-pipelines-core/pac-downstream/image-webhook-next.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pipelines-pipelines-as-code-webhook-rhel9 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: pac-downstream-next-webhook - appstudio.redhat.com/application: openshift-pipelines-core-next -spec: - image: - name: pipelines-pipelines-as-code-webhook-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/next/openshift-pipelines-core/release-plan.yaml b/.konflux/next/openshift-pipelines-core/release-plan.yaml deleted file mode 100644 index 9b673dbc..00000000 --- a/.konflux/next/openshift-pipelines-core/release-plan.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ReleasePlan -metadata: - labels: - release.appstudio.openshift.io/auto-release: "true" - release.appstudio.openshift.io/standing-attribution: 'true' - name: openshift-pipelines-core-next-rp -spec: - application: openshift-pipelines-core-next - tenantPipeline: - serviceAccountName: release-registry-openshift-pipelines-core-next - pipelineRef: - resolver: git - params: - - name: url - value: https://github.com/openshift-pipelines/hack.git - - name: revision - # value: next - value: main - - name: pathInRepo - value: pipelines/release-pipeline.yaml - params: - - name: release_version - value: "next" - - name: release_to_github - value: "false" diff --git a/.konflux/next/openshift-pipelines-core/role.yaml b/.konflux/next/openshift-pipelines-core/role.yaml deleted file mode 100644 index 527559d2..00000000 --- a/.konflux/next/openshift-pipelines-core/role.yaml +++ /dev/null @@ -1,14 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: rbac.authorization.k8s.io/v1 -kind: RoleBinding -metadata: - name: release-plan-rolebinding-openshift-pipelines-core-next -subjects: - - kind: ServiceAccount - name: release-registry-openshift-pipelines-core-next - apiGroup: "" -roleRef: - kind: ClusterRole - name: konflux-releaser-bot-actions - apiGroup: rbac.authorization.k8s.io \ No newline at end of file diff --git a/.konflux/next/openshift-pipelines-core/service-account.yaml b/.konflux/next/openshift-pipelines-core/service-account.yaml deleted file mode 100644 index ed49b410..00000000 --- a/.konflux/next/openshift-pipelines-core/service-account.yaml +++ /dev/null @@ -1,10 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: v1 -imagePullSecrets: - - name: release-registry-openshift-pipelines-quay -kind: ServiceAccount -metadata: - name: release-registry-openshift-pipelines-core-next -secrets: - - name: release-registry-openshift-pipelines-quay \ No newline at end of file diff --git a/.konflux/next/openshift-pipelines-core/tekton-kueue/component-kueue-next.yaml b/.konflux/next/openshift-pipelines-core/tekton-kueue/component-kueue-next.yaml deleted file mode 100644 index 4ba39c30..00000000 --- a/.konflux/next/openshift-pipelines-core/tekton-kueue/component-kueue-next.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: tekton-kueue-next-kueue -spec: - componentName: kueue - application: openshift-pipelines-core-next - build-nudges-ref: - - operator-next-bundle - source: - git: - url: https://github.com/openshift-pipelines/tekton-kueue.git - dockerfileUrl: .konflux/dockerfiles/kueue.Dockerfile - revision: next diff --git a/.konflux/next/openshift-pipelines-core/tekton-kueue/image-kueue-next.yaml b/.konflux/next/openshift-pipelines-core/tekton-kueue/image-kueue-next.yaml deleted file mode 100644 index 1fa28492..00000000 --- a/.konflux/next/openshift-pipelines-core/tekton-kueue/image-kueue-next.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pipelines-kueue-rhel9 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: tekton-kueue-next-kueue - appstudio.redhat.com/application: openshift-pipelines-core-next -spec: - image: - name: pipelines-kueue-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/next/openshift-pipelines-core/tektoncd-chains/component-controller-next.yaml b/.konflux/next/openshift-pipelines-core/tektoncd-chains/component-controller-next.yaml deleted file mode 100644 index acfda9b9..00000000 --- a/.konflux/next/openshift-pipelines-core/tektoncd-chains/component-controller-next.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: tektoncd-chains-next-controller -spec: - componentName: controller - application: openshift-pipelines-core-next - build-nudges-ref: - - operator-next-bundle - source: - git: - url: https://github.com/openshift-pipelines/tektoncd-chains.git - dockerfileUrl: .konflux/dockerfiles/controller.Dockerfile - revision: next diff --git a/.konflux/next/openshift-pipelines-core/tektoncd-chains/image-controller-next.yaml b/.konflux/next/openshift-pipelines-core/tektoncd-chains/image-controller-next.yaml deleted file mode 100644 index 9b7de390..00000000 --- a/.konflux/next/openshift-pipelines-core/tektoncd-chains/image-controller-next.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pipelines-chains-controller-rhel9 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: tektoncd-chains-next-controller - appstudio.redhat.com/application: openshift-pipelines-core-next -spec: - image: - name: pipelines-chains-controller-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/next/openshift-pipelines-core/tektoncd-git-clone/component-git-init-next.yaml b/.konflux/next/openshift-pipelines-core/tektoncd-git-clone/component-git-init-next.yaml deleted file mode 100644 index c011bbec..00000000 --- a/.konflux/next/openshift-pipelines-core/tektoncd-git-clone/component-git-init-next.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: tektoncd-git-clone-next-git-init -spec: - componentName: git-init - application: openshift-pipelines-core-next - build-nudges-ref: - - operator-next-bundle - source: - git: - url: https://github.com/openshift-pipelines/tektoncd-git-clone.git - dockerfileUrl: .konflux/dockerfiles/git-init.Dockerfile - revision: next diff --git a/.konflux/next/openshift-pipelines-core/tektoncd-git-clone/image-git-init-next.yaml b/.konflux/next/openshift-pipelines-core/tektoncd-git-clone/image-git-init-next.yaml deleted file mode 100644 index abd4dc86..00000000 --- a/.konflux/next/openshift-pipelines-core/tektoncd-git-clone/image-git-init-next.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: git-init-rhel9 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: tektoncd-git-clone-next-git-init - appstudio.redhat.com/application: openshift-pipelines-core-next -spec: - image: - name: git-init-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/next/openshift-pipelines-core/tektoncd-hub/component-api-next.yaml b/.konflux/next/openshift-pipelines-core/tektoncd-hub/component-api-next.yaml deleted file mode 100644 index e5b2c15b..00000000 --- a/.konflux/next/openshift-pipelines-core/tektoncd-hub/component-api-next.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: tektoncd-hub-next-api -spec: - componentName: api - application: openshift-pipelines-core-next - build-nudges-ref: - - operator-next-bundle - source: - git: - url: https://github.com/openshift-pipelines/tektoncd-hub.git - dockerfileUrl: .konflux/dockerfiles/api.Dockerfile - revision: next diff --git a/.konflux/next/openshift-pipelines-core/tektoncd-hub/component-db-migration-next.yaml b/.konflux/next/openshift-pipelines-core/tektoncd-hub/component-db-migration-next.yaml deleted file mode 100644 index 6ff849fb..00000000 --- a/.konflux/next/openshift-pipelines-core/tektoncd-hub/component-db-migration-next.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: tektoncd-hub-next-db-migration -spec: - componentName: db-migration - application: openshift-pipelines-core-next - build-nudges-ref: - - operator-next-bundle - source: - git: - url: https://github.com/openshift-pipelines/tektoncd-hub.git - dockerfileUrl: .konflux/dockerfiles/db-migration.Dockerfile - revision: next diff --git a/.konflux/next/openshift-pipelines-core/tektoncd-hub/component-ui-next.yaml b/.konflux/next/openshift-pipelines-core/tektoncd-hub/component-ui-next.yaml deleted file mode 100644 index 54898d35..00000000 --- a/.konflux/next/openshift-pipelines-core/tektoncd-hub/component-ui-next.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: tektoncd-hub-next-ui -spec: - componentName: ui - application: openshift-pipelines-core-next - build-nudges-ref: - - operator-next-bundle - source: - git: - url: https://github.com/openshift-pipelines/tektoncd-hub.git - dockerfileUrl: .konflux/dockerfiles/ui.Dockerfile - revision: next diff --git a/.konflux/next/openshift-pipelines-core/tektoncd-hub/image-api-next.yaml b/.konflux/next/openshift-pipelines-core/tektoncd-hub/image-api-next.yaml deleted file mode 100644 index def0ce78..00000000 --- a/.konflux/next/openshift-pipelines-core/tektoncd-hub/image-api-next.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pipelines-hub-api-rhel9 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: tektoncd-hub-next-api - appstudio.redhat.com/application: openshift-pipelines-core-next -spec: - image: - name: pipelines-hub-api-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/next/openshift-pipelines-core/tektoncd-hub/image-db-migration-next.yaml b/.konflux/next/openshift-pipelines-core/tektoncd-hub/image-db-migration-next.yaml deleted file mode 100644 index 21531269..00000000 --- a/.konflux/next/openshift-pipelines-core/tektoncd-hub/image-db-migration-next.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pipelines-hub-db-migration-rhel9 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: tektoncd-hub-next-db-migration - appstudio.redhat.com/application: openshift-pipelines-core-next -spec: - image: - name: pipelines-hub-db-migration-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/next/openshift-pipelines-core/tektoncd-hub/image-ui-next.yaml b/.konflux/next/openshift-pipelines-core/tektoncd-hub/image-ui-next.yaml deleted file mode 100644 index edbbb245..00000000 --- a/.konflux/next/openshift-pipelines-core/tektoncd-hub/image-ui-next.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pipelines-hub-ui-rhel9 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: tektoncd-hub-next-ui - appstudio.redhat.com/application: openshift-pipelines-core-next -spec: - image: - name: pipelines-hub-ui-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/next/openshift-pipelines-core/tektoncd-pipeline/component-controller-next.yaml b/.konflux/next/openshift-pipelines-core/tektoncd-pipeline/component-controller-next.yaml deleted file mode 100644 index 9ddc09e9..00000000 --- a/.konflux/next/openshift-pipelines-core/tektoncd-pipeline/component-controller-next.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: tektoncd-pipeline-next-controller -spec: - componentName: controller - application: openshift-pipelines-core-next - build-nudges-ref: - - operator-next-bundle - source: - git: - url: https://github.com/openshift-pipelines/tektoncd-pipeline.git - dockerfileUrl: .konflux/dockerfiles/controller.Dockerfile - revision: next diff --git a/.konflux/next/openshift-pipelines-core/tektoncd-pipeline/component-entrypoint-next.yaml b/.konflux/next/openshift-pipelines-core/tektoncd-pipeline/component-entrypoint-next.yaml deleted file mode 100644 index fcc6919d..00000000 --- a/.konflux/next/openshift-pipelines-core/tektoncd-pipeline/component-entrypoint-next.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: tektoncd-pipeline-next-entrypoint -spec: - componentName: entrypoint - application: openshift-pipelines-core-next - build-nudges-ref: - - operator-next-bundle - source: - git: - url: https://github.com/openshift-pipelines/tektoncd-pipeline.git - dockerfileUrl: .konflux/dockerfiles/entrypoint.Dockerfile - revision: next diff --git a/.konflux/next/openshift-pipelines-core/tektoncd-pipeline/component-events-next.yaml b/.konflux/next/openshift-pipelines-core/tektoncd-pipeline/component-events-next.yaml deleted file mode 100644 index c964c593..00000000 --- a/.konflux/next/openshift-pipelines-core/tektoncd-pipeline/component-events-next.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: tektoncd-pipeline-next-events -spec: - componentName: events - application: openshift-pipelines-core-next - build-nudges-ref: - - operator-next-bundle - source: - git: - url: https://github.com/openshift-pipelines/tektoncd-pipeline.git - dockerfileUrl: .konflux/dockerfiles/events.Dockerfile - revision: next diff --git a/.konflux/next/openshift-pipelines-core/tektoncd-pipeline/component-nop-next.yaml b/.konflux/next/openshift-pipelines-core/tektoncd-pipeline/component-nop-next.yaml deleted file mode 100644 index 5671e990..00000000 --- a/.konflux/next/openshift-pipelines-core/tektoncd-pipeline/component-nop-next.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: tektoncd-pipeline-next-nop -spec: - componentName: nop - application: openshift-pipelines-core-next - build-nudges-ref: - - operator-next-bundle - source: - git: - url: https://github.com/openshift-pipelines/tektoncd-pipeline.git - dockerfileUrl: .konflux/dockerfiles/nop.Dockerfile - revision: next diff --git a/.konflux/next/openshift-pipelines-core/tektoncd-pipeline/component-resolvers-next.yaml b/.konflux/next/openshift-pipelines-core/tektoncd-pipeline/component-resolvers-next.yaml deleted file mode 100644 index 49f50816..00000000 --- a/.konflux/next/openshift-pipelines-core/tektoncd-pipeline/component-resolvers-next.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: tektoncd-pipeline-next-resolvers -spec: - componentName: resolvers - application: openshift-pipelines-core-next - build-nudges-ref: - - operator-next-bundle - source: - git: - url: https://github.com/openshift-pipelines/tektoncd-pipeline.git - dockerfileUrl: .konflux/dockerfiles/resolvers.Dockerfile - revision: next diff --git a/.konflux/next/openshift-pipelines-core/tektoncd-pipeline/component-sidecarlogresults-next.yaml b/.konflux/next/openshift-pipelines-core/tektoncd-pipeline/component-sidecarlogresults-next.yaml deleted file mode 100644 index bb69817f..00000000 --- a/.konflux/next/openshift-pipelines-core/tektoncd-pipeline/component-sidecarlogresults-next.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: tektoncd-pipeline-next-sidecarlogresults -spec: - componentName: sidecarlogresults - application: openshift-pipelines-core-next - build-nudges-ref: - - operator-next-bundle - source: - git: - url: https://github.com/openshift-pipelines/tektoncd-pipeline.git - dockerfileUrl: .konflux/dockerfiles/sidecarlogresults.Dockerfile - revision: next diff --git a/.konflux/next/openshift-pipelines-core/tektoncd-pipeline/component-webhook-next.yaml b/.konflux/next/openshift-pipelines-core/tektoncd-pipeline/component-webhook-next.yaml deleted file mode 100644 index 41aa3c3d..00000000 --- a/.konflux/next/openshift-pipelines-core/tektoncd-pipeline/component-webhook-next.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: tektoncd-pipeline-next-webhook -spec: - componentName: webhook - application: openshift-pipelines-core-next - build-nudges-ref: - - operator-next-bundle - source: - git: - url: https://github.com/openshift-pipelines/tektoncd-pipeline.git - dockerfileUrl: .konflux/dockerfiles/webhook.Dockerfile - revision: next diff --git a/.konflux/next/openshift-pipelines-core/tektoncd-pipeline/component-workingdirinit-next.yaml b/.konflux/next/openshift-pipelines-core/tektoncd-pipeline/component-workingdirinit-next.yaml deleted file mode 100644 index 699bd547..00000000 --- a/.konflux/next/openshift-pipelines-core/tektoncd-pipeline/component-workingdirinit-next.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: tektoncd-pipeline-next-workingdirinit -spec: - componentName: workingdirinit - application: openshift-pipelines-core-next - build-nudges-ref: - - operator-next-bundle - source: - git: - url: https://github.com/openshift-pipelines/tektoncd-pipeline.git - dockerfileUrl: .konflux/dockerfiles/workingdirinit.Dockerfile - revision: next diff --git a/.konflux/next/openshift-pipelines-core/tektoncd-pipeline/image-controller-next.yaml b/.konflux/next/openshift-pipelines-core/tektoncd-pipeline/image-controller-next.yaml deleted file mode 100644 index be581609..00000000 --- a/.konflux/next/openshift-pipelines-core/tektoncd-pipeline/image-controller-next.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pipelines-controller-rhel9 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: tektoncd-pipeline-next-controller - appstudio.redhat.com/application: openshift-pipelines-core-next -spec: - image: - name: pipelines-controller-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/next/openshift-pipelines-core/tektoncd-pipeline/image-entrypoint-next.yaml b/.konflux/next/openshift-pipelines-core/tektoncd-pipeline/image-entrypoint-next.yaml deleted file mode 100644 index 9ec1e892..00000000 --- a/.konflux/next/openshift-pipelines-core/tektoncd-pipeline/image-entrypoint-next.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pipelines-entrypoint-rhel9 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: tektoncd-pipeline-next-entrypoint - appstudio.redhat.com/application: openshift-pipelines-core-next -spec: - image: - name: pipelines-entrypoint-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/next/openshift-pipelines-core/tektoncd-pipeline/image-events-next.yaml b/.konflux/next/openshift-pipelines-core/tektoncd-pipeline/image-events-next.yaml deleted file mode 100644 index 9104b7d4..00000000 --- a/.konflux/next/openshift-pipelines-core/tektoncd-pipeline/image-events-next.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pipelines-events-rhel9 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: tektoncd-pipeline-next-events - appstudio.redhat.com/application: openshift-pipelines-core-next -spec: - image: - name: pipelines-events-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/next/openshift-pipelines-core/tektoncd-pipeline/image-nop-next.yaml b/.konflux/next/openshift-pipelines-core/tektoncd-pipeline/image-nop-next.yaml deleted file mode 100644 index 9745be19..00000000 --- a/.konflux/next/openshift-pipelines-core/tektoncd-pipeline/image-nop-next.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pipelines-nop-rhel9 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: tektoncd-pipeline-next-nop - appstudio.redhat.com/application: openshift-pipelines-core-next -spec: - image: - name: pipelines-nop-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/next/openshift-pipelines-core/tektoncd-pipeline/image-resolvers-next.yaml b/.konflux/next/openshift-pipelines-core/tektoncd-pipeline/image-resolvers-next.yaml deleted file mode 100644 index 2a71c246..00000000 --- a/.konflux/next/openshift-pipelines-core/tektoncd-pipeline/image-resolvers-next.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pipelines-resolvers-rhel9 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: tektoncd-pipeline-next-resolvers - appstudio.redhat.com/application: openshift-pipelines-core-next -spec: - image: - name: pipelines-resolvers-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/next/openshift-pipelines-core/tektoncd-pipeline/image-sidecarlogresults-next.yaml b/.konflux/next/openshift-pipelines-core/tektoncd-pipeline/image-sidecarlogresults-next.yaml deleted file mode 100644 index 58273c51..00000000 --- a/.konflux/next/openshift-pipelines-core/tektoncd-pipeline/image-sidecarlogresults-next.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pipelines-sidecarlogresults-rhel9 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: tektoncd-pipeline-next-sidecarlogresults - appstudio.redhat.com/application: openshift-pipelines-core-next -spec: - image: - name: pipelines-sidecarlogresults-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/next/openshift-pipelines-core/tektoncd-pipeline/image-webhook-next.yaml b/.konflux/next/openshift-pipelines-core/tektoncd-pipeline/image-webhook-next.yaml deleted file mode 100644 index 4966c4a8..00000000 --- a/.konflux/next/openshift-pipelines-core/tektoncd-pipeline/image-webhook-next.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pipelines-webhook-rhel9 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: tektoncd-pipeline-next-webhook - appstudio.redhat.com/application: openshift-pipelines-core-next -spec: - image: - name: pipelines-webhook-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/next/openshift-pipelines-core/tektoncd-pipeline/image-workingdirinit-next.yaml b/.konflux/next/openshift-pipelines-core/tektoncd-pipeline/image-workingdirinit-next.yaml deleted file mode 100644 index 3b6d5591..00000000 --- a/.konflux/next/openshift-pipelines-core/tektoncd-pipeline/image-workingdirinit-next.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pipelines-workingdirinit-rhel9 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: tektoncd-pipeline-next-workingdirinit - appstudio.redhat.com/application: openshift-pipelines-core-next -spec: - image: - name: pipelines-workingdirinit-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/next/openshift-pipelines-core/tektoncd-pruner/component-controller-next.yaml b/.konflux/next/openshift-pipelines-core/tektoncd-pruner/component-controller-next.yaml deleted file mode 100644 index 59d3458c..00000000 --- a/.konflux/next/openshift-pipelines-core/tektoncd-pruner/component-controller-next.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: tektoncd-pruner-next-controller -spec: - componentName: controller - application: openshift-pipelines-core-next - build-nudges-ref: - - operator-next-bundle - source: - git: - url: https://github.com/openshift-pipelines/tektoncd-pruner.git - dockerfileUrl: .konflux/dockerfiles/controller.Dockerfile - revision: next diff --git a/.konflux/next/openshift-pipelines-core/tektoncd-pruner/image-controller-next.yaml b/.konflux/next/openshift-pipelines-core/tektoncd-pruner/image-controller-next.yaml deleted file mode 100644 index 1b92c4bb..00000000 --- a/.konflux/next/openshift-pipelines-core/tektoncd-pruner/image-controller-next.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pipelines-pruner-controller-rhel9 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: tektoncd-pruner-next-controller - appstudio.redhat.com/application: openshift-pipelines-core-next -spec: - image: - name: pipelines-pruner-controller-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/next/openshift-pipelines-core/tektoncd-results/component-api-next.yaml b/.konflux/next/openshift-pipelines-core/tektoncd-results/component-api-next.yaml deleted file mode 100644 index e707515d..00000000 --- a/.konflux/next/openshift-pipelines-core/tektoncd-results/component-api-next.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: tektoncd-results-next-api -spec: - componentName: api - application: openshift-pipelines-core-next - build-nudges-ref: - - operator-next-bundle - source: - git: - url: https://github.com/openshift-pipelines/tektoncd-results.git - dockerfileUrl: .konflux/dockerfiles/api.Dockerfile - revision: next diff --git a/.konflux/next/openshift-pipelines-core/tektoncd-results/component-retention-policy-agent-next.yaml b/.konflux/next/openshift-pipelines-core/tektoncd-results/component-retention-policy-agent-next.yaml deleted file mode 100644 index 5d196bb1..00000000 --- a/.konflux/next/openshift-pipelines-core/tektoncd-results/component-retention-policy-agent-next.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: tektoncd-results-next-retention-policy-agent -spec: - componentName: retention-policy-agent - application: openshift-pipelines-core-next - build-nudges-ref: - - operator-next-bundle - source: - git: - url: https://github.com/openshift-pipelines/tektoncd-results.git - dockerfileUrl: .konflux/dockerfiles/retention-policy-agent.Dockerfile - revision: next diff --git a/.konflux/next/openshift-pipelines-core/tektoncd-results/component-watcher-next.yaml b/.konflux/next/openshift-pipelines-core/tektoncd-results/component-watcher-next.yaml deleted file mode 100644 index fa2c5f7f..00000000 --- a/.konflux/next/openshift-pipelines-core/tektoncd-results/component-watcher-next.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: tektoncd-results-next-watcher -spec: - componentName: watcher - application: openshift-pipelines-core-next - build-nudges-ref: - - operator-next-bundle - source: - git: - url: https://github.com/openshift-pipelines/tektoncd-results.git - dockerfileUrl: .konflux/dockerfiles/watcher.Dockerfile - revision: next diff --git a/.konflux/next/openshift-pipelines-core/tektoncd-results/image-api-next.yaml b/.konflux/next/openshift-pipelines-core/tektoncd-results/image-api-next.yaml deleted file mode 100644 index d76d0845..00000000 --- a/.konflux/next/openshift-pipelines-core/tektoncd-results/image-api-next.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pipelines-results-api-rhel9 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: tektoncd-results-next-api - appstudio.redhat.com/application: openshift-pipelines-core-next -spec: - image: - name: pipelines-results-api-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/next/openshift-pipelines-core/tektoncd-results/image-retention-policy-agent-next.yaml b/.konflux/next/openshift-pipelines-core/tektoncd-results/image-retention-policy-agent-next.yaml deleted file mode 100644 index 08b4eaa9..00000000 --- a/.konflux/next/openshift-pipelines-core/tektoncd-results/image-retention-policy-agent-next.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pipelines-results-retention-policy-agent-rhel9 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: tektoncd-results-next-retention-policy-agent - appstudio.redhat.com/application: openshift-pipelines-core-next -spec: - image: - name: pipelines-results-retention-policy-agent-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/next/openshift-pipelines-core/tektoncd-results/image-watcher-next.yaml b/.konflux/next/openshift-pipelines-core/tektoncd-results/image-watcher-next.yaml deleted file mode 100644 index c698c322..00000000 --- a/.konflux/next/openshift-pipelines-core/tektoncd-results/image-watcher-next.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pipelines-results-watcher-rhel9 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: tektoncd-results-next-watcher - appstudio.redhat.com/application: openshift-pipelines-core-next -spec: - image: - name: pipelines-results-watcher-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/next/openshift-pipelines-core/tektoncd-triggers/component-controller-next.yaml b/.konflux/next/openshift-pipelines-core/tektoncd-triggers/component-controller-next.yaml deleted file mode 100644 index 1b077bd0..00000000 --- a/.konflux/next/openshift-pipelines-core/tektoncd-triggers/component-controller-next.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: tektoncd-triggers-next-controller -spec: - componentName: controller - application: openshift-pipelines-core-next - build-nudges-ref: - - operator-next-bundle - source: - git: - url: https://github.com/openshift-pipelines/tektoncd-triggers.git - dockerfileUrl: .konflux/dockerfiles/controller.Dockerfile - revision: next diff --git a/.konflux/next/openshift-pipelines-core/tektoncd-triggers/component-core-interceptors-next.yaml b/.konflux/next/openshift-pipelines-core/tektoncd-triggers/component-core-interceptors-next.yaml deleted file mode 100644 index e9fc6dd6..00000000 --- a/.konflux/next/openshift-pipelines-core/tektoncd-triggers/component-core-interceptors-next.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: tektoncd-triggers-next-core-interceptors -spec: - componentName: core-interceptors - application: openshift-pipelines-core-next - build-nudges-ref: - - operator-next-bundle - source: - git: - url: https://github.com/openshift-pipelines/tektoncd-triggers.git - dockerfileUrl: .konflux/dockerfiles/core-interceptors.Dockerfile - revision: next diff --git a/.konflux/next/openshift-pipelines-core/tektoncd-triggers/component-eventlistenersink-next.yaml b/.konflux/next/openshift-pipelines-core/tektoncd-triggers/component-eventlistenersink-next.yaml deleted file mode 100644 index f5516fc8..00000000 --- a/.konflux/next/openshift-pipelines-core/tektoncd-triggers/component-eventlistenersink-next.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: tektoncd-triggers-next-eventlistenersink -spec: - componentName: eventlistenersink - application: openshift-pipelines-core-next - build-nudges-ref: - - operator-next-bundle - source: - git: - url: https://github.com/openshift-pipelines/tektoncd-triggers.git - dockerfileUrl: .konflux/dockerfiles/eventlistenersink.Dockerfile - revision: next diff --git a/.konflux/next/openshift-pipelines-core/tektoncd-triggers/component-webhook-next.yaml b/.konflux/next/openshift-pipelines-core/tektoncd-triggers/component-webhook-next.yaml deleted file mode 100644 index ed920f8f..00000000 --- a/.konflux/next/openshift-pipelines-core/tektoncd-triggers/component-webhook-next.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: tektoncd-triggers-next-webhook -spec: - componentName: webhook - application: openshift-pipelines-core-next - build-nudges-ref: - - operator-next-bundle - source: - git: - url: https://github.com/openshift-pipelines/tektoncd-triggers.git - dockerfileUrl: .konflux/dockerfiles/webhook.Dockerfile - revision: next diff --git a/.konflux/next/openshift-pipelines-core/tektoncd-triggers/image-controller-next.yaml b/.konflux/next/openshift-pipelines-core/tektoncd-triggers/image-controller-next.yaml deleted file mode 100644 index 1cf9b33f..00000000 --- a/.konflux/next/openshift-pipelines-core/tektoncd-triggers/image-controller-next.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pipelines-triggers-controller-rhel9 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: tektoncd-triggers-next-controller - appstudio.redhat.com/application: openshift-pipelines-core-next -spec: - image: - name: pipelines-triggers-controller-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/next/openshift-pipelines-core/tektoncd-triggers/image-core-interceptors-next.yaml b/.konflux/next/openshift-pipelines-core/tektoncd-triggers/image-core-interceptors-next.yaml deleted file mode 100644 index 7d14a54a..00000000 --- a/.konflux/next/openshift-pipelines-core/tektoncd-triggers/image-core-interceptors-next.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pipelines-triggers-core-interceptors-rhel9 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: tektoncd-triggers-next-core-interceptors - appstudio.redhat.com/application: openshift-pipelines-core-next -spec: - image: - name: pipelines-triggers-core-interceptors-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/next/openshift-pipelines-core/tektoncd-triggers/image-eventlistenersink-next.yaml b/.konflux/next/openshift-pipelines-core/tektoncd-triggers/image-eventlistenersink-next.yaml deleted file mode 100644 index 8b837d47..00000000 --- a/.konflux/next/openshift-pipelines-core/tektoncd-triggers/image-eventlistenersink-next.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pipelines-triggers-eventlistenersink-rhel9 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: tektoncd-triggers-next-eventlistenersink - appstudio.redhat.com/application: openshift-pipelines-core-next -spec: - image: - name: pipelines-triggers-eventlistenersink-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/next/openshift-pipelines-core/tektoncd-triggers/image-webhook-next.yaml b/.konflux/next/openshift-pipelines-core/tektoncd-triggers/image-webhook-next.yaml deleted file mode 100644 index d34bd99d..00000000 --- a/.konflux/next/openshift-pipelines-core/tektoncd-triggers/image-webhook-next.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pipelines-triggers-webhook-rhel9 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: tektoncd-triggers-next-webhook - appstudio.redhat.com/application: openshift-pipelines-core-next -spec: - image: - name: pipelines-triggers-webhook-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/next/openshift-pipelines-core/tests.yaml b/.konflux/next/openshift-pipelines-core/tests.yaml deleted file mode 100644 index 787eae2d..00000000 --- a/.konflux/next/openshift-pipelines-core/tests.yaml +++ /dev/null @@ -1,27 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1beta2 -kind: IntegrationTestScenario -metadata: - name: openshift-pipelines-core-next-enterprise-contract -spec: - application: openshift-pipelines-core-next - contexts: - - description: execute the integration test for a component - name: component - params: - - name: POLICY_CONFIGURATION - value: tekton-ecosystem-tenant/tekton-ecosystem-tenant-containers - - name: TIMEOUT - value: "15m0s" - - name: SINGLE_COMPONENT - value: "true" - resolverRef: - params: - - name: url - value: "https://github.com/konflux-ci/build-definitions" - - name: revision - value: main - - name: pathInRepo - value: pipelines/enterprise-contract.yaml - resolver: git diff --git a/.konflux/next/openshift-pipelines-index-4.16/application.yaml b/.konflux/next/openshift-pipelines-index-4.16/application.yaml deleted file mode 100644 index c8cc3f91..00000000 --- a/.konflux/next/openshift-pipelines-index-4.16/application.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.16 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Application -metadata: - name: openshift-pipelines-index-4-16-next -spec: - displayName: openshift-pipelines-index-4-16-next diff --git a/.konflux/next/openshift-pipelines-index-4.16/operator/component-index-4.16-next.yaml b/.konflux/next/openshift-pipelines-index-4.16/operator/component-index-4.16-next.yaml deleted file mode 100644 index 8057e161..00000000 --- a/.konflux/next/openshift-pipelines-index-4.16/operator/component-index-4.16-next.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.16 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: operator-next-index-4-16 -spec: - componentName: index-4-16 - application: openshift-pipelines-index-4-16-next - build-nudges-ref: - - - source: - git: - url: https://github.com/openshift-pipelines/operator.git - dockerfileUrl: .konflux/dockerfiles/index-4.16.Dockerfile - revision: next diff --git a/.konflux/next/openshift-pipelines-index-4.16/operator/image-index-4.16-next.yaml b/.konflux/next/openshift-pipelines-index-4.16/operator/image-index-4.16-next.yaml deleted file mode 100644 index 1ad6c006..00000000 --- a/.konflux/next/openshift-pipelines-index-4.16/operator/image-index-4.16-next.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.16 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pipelines-index-4-16 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: operator-next-index-4-16 - appstudio.redhat.com/application: openshift-pipelines-index-4-16-next -spec: - image: - name: pipelines-index-4.16 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/next/openshift-pipelines-index-4.16/release-plan.yaml b/.konflux/next/openshift-pipelines-index-4.16/release-plan.yaml deleted file mode 100644 index 4ac38373..00000000 --- a/.konflux/next/openshift-pipelines-index-4.16/release-plan.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.16 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ReleasePlan -metadata: - labels: - release.appstudio.openshift.io/auto-release: "true" - release.appstudio.openshift.io/standing-attribution: 'true' - name: openshift-pipelines-index-4-16-next-rp -spec: - application: openshift-pipelines-index-4-16-next - tenantPipeline: - serviceAccountName: release-registry-openshift-pipelines-index-4-16-next - pipelineRef: - resolver: git - params: - - name: url - value: https://github.com/openshift-pipelines/hack.git - - name: revision - # value: next - value: main - - name: pathInRepo - value: pipelines/release-pipeline.yaml - params: - - name: release_version - value: "next" - - name: release_to_github - value: "false" diff --git a/.konflux/next/openshift-pipelines-index-4.16/role.yaml b/.konflux/next/openshift-pipelines-index-4.16/role.yaml deleted file mode 100644 index 533e059f..00000000 --- a/.konflux/next/openshift-pipelines-index-4.16/role.yaml +++ /dev/null @@ -1,14 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.16 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: rbac.authorization.k8s.io/v1 -kind: RoleBinding -metadata: - name: release-plan-rolebinding-openshift-pipelines-index-4-16-next -subjects: - - kind: ServiceAccount - name: release-registry-openshift-pipelines-index-4-16-next - apiGroup: "" -roleRef: - kind: ClusterRole - name: konflux-releaser-bot-actions - apiGroup: rbac.authorization.k8s.io \ No newline at end of file diff --git a/.konflux/next/openshift-pipelines-index-4.16/service-account.yaml b/.konflux/next/openshift-pipelines-index-4.16/service-account.yaml deleted file mode 100644 index dae6e910..00000000 --- a/.konflux/next/openshift-pipelines-index-4.16/service-account.yaml +++ /dev/null @@ -1,10 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.16 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: v1 -imagePullSecrets: - - name: release-registry-openshift-pipelines-quay -kind: ServiceAccount -metadata: - name: release-registry-openshift-pipelines-index-4-16-next -secrets: - - name: release-registry-openshift-pipelines-quay \ No newline at end of file diff --git a/.konflux/next/openshift-pipelines-index-4.16/tests.yaml b/.konflux/next/openshift-pipelines-index-4.16/tests.yaml deleted file mode 100644 index 22d498c5..00000000 --- a/.konflux/next/openshift-pipelines-index-4.16/tests.yaml +++ /dev/null @@ -1,27 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.16 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1beta2 -kind: IntegrationTestScenario -metadata: - name: openshift-pipelines-index-4-16-next-enterprise-contract -spec: - application: openshift-pipelines-index-4-16-next - contexts: - - description: execute the integration test for a component - name: component - params: - - name: POLICY_CONFIGURATION - value: tekton-ecosystem-tenant/tekton-ecosystem-tenant-indexes - - name: TIMEOUT - value: "15m0s" - - name: SINGLE_COMPONENT - value: "true" - resolverRef: - params: - - name: url - value: "https://github.com/konflux-ci/build-definitions" - - name: revision - value: main - - name: pathInRepo - value: pipelines/enterprise-contract.yaml - resolver: git diff --git a/.konflux/next/openshift-pipelines-index-4.17/application.yaml b/.konflux/next/openshift-pipelines-index-4.17/application.yaml deleted file mode 100644 index 804c242e..00000000 --- a/.konflux/next/openshift-pipelines-index-4.17/application.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.17 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Application -metadata: - name: openshift-pipelines-index-4-17-next -spec: - displayName: openshift-pipelines-index-4-17-next diff --git a/.konflux/next/openshift-pipelines-index-4.17/operator/component-index-4.17-next.yaml b/.konflux/next/openshift-pipelines-index-4.17/operator/component-index-4.17-next.yaml deleted file mode 100644 index 16eb1a66..00000000 --- a/.konflux/next/openshift-pipelines-index-4.17/operator/component-index-4.17-next.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.17 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: operator-next-index-4-17 -spec: - componentName: index-4-17 - application: openshift-pipelines-index-4-17-next - build-nudges-ref: - - - source: - git: - url: https://github.com/openshift-pipelines/operator.git - dockerfileUrl: .konflux/dockerfiles/index-4.17.Dockerfile - revision: next diff --git a/.konflux/next/openshift-pipelines-index-4.17/operator/image-index-4.17-next.yaml b/.konflux/next/openshift-pipelines-index-4.17/operator/image-index-4.17-next.yaml deleted file mode 100644 index 83c1b4fa..00000000 --- a/.konflux/next/openshift-pipelines-index-4.17/operator/image-index-4.17-next.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.17 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pipelines-index-4-17 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: operator-next-index-4-17 - appstudio.redhat.com/application: openshift-pipelines-index-4-17-next -spec: - image: - name: pipelines-index-4.17 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/next/openshift-pipelines-index-4.17/release-plan.yaml b/.konflux/next/openshift-pipelines-index-4.17/release-plan.yaml deleted file mode 100644 index 5a36c431..00000000 --- a/.konflux/next/openshift-pipelines-index-4.17/release-plan.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.17 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ReleasePlan -metadata: - labels: - release.appstudio.openshift.io/auto-release: "true" - release.appstudio.openshift.io/standing-attribution: 'true' - name: openshift-pipelines-index-4-17-next-rp -spec: - application: openshift-pipelines-index-4-17-next - tenantPipeline: - serviceAccountName: release-registry-openshift-pipelines-index-4-17-next - pipelineRef: - resolver: git - params: - - name: url - value: https://github.com/openshift-pipelines/hack.git - - name: revision - # value: next - value: main - - name: pathInRepo - value: pipelines/release-pipeline.yaml - params: - - name: release_version - value: "next" - - name: release_to_github - value: "false" diff --git a/.konflux/next/openshift-pipelines-index-4.17/role.yaml b/.konflux/next/openshift-pipelines-index-4.17/role.yaml deleted file mode 100644 index 6ac2292c..00000000 --- a/.konflux/next/openshift-pipelines-index-4.17/role.yaml +++ /dev/null @@ -1,14 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.17 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: rbac.authorization.k8s.io/v1 -kind: RoleBinding -metadata: - name: release-plan-rolebinding-openshift-pipelines-index-4-17-next -subjects: - - kind: ServiceAccount - name: release-registry-openshift-pipelines-index-4-17-next - apiGroup: "" -roleRef: - kind: ClusterRole - name: konflux-releaser-bot-actions - apiGroup: rbac.authorization.k8s.io \ No newline at end of file diff --git a/.konflux/next/openshift-pipelines-index-4.17/service-account.yaml b/.konflux/next/openshift-pipelines-index-4.17/service-account.yaml deleted file mode 100644 index bd27053f..00000000 --- a/.konflux/next/openshift-pipelines-index-4.17/service-account.yaml +++ /dev/null @@ -1,10 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.17 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: v1 -imagePullSecrets: - - name: release-registry-openshift-pipelines-quay -kind: ServiceAccount -metadata: - name: release-registry-openshift-pipelines-index-4-17-next -secrets: - - name: release-registry-openshift-pipelines-quay \ No newline at end of file diff --git a/.konflux/next/openshift-pipelines-index-4.17/tests.yaml b/.konflux/next/openshift-pipelines-index-4.17/tests.yaml deleted file mode 100644 index dedc8076..00000000 --- a/.konflux/next/openshift-pipelines-index-4.17/tests.yaml +++ /dev/null @@ -1,27 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.17 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1beta2 -kind: IntegrationTestScenario -metadata: - name: openshift-pipelines-index-4-17-next-enterprise-contract -spec: - application: openshift-pipelines-index-4-17-next - contexts: - - description: execute the integration test for a component - name: component - params: - - name: POLICY_CONFIGURATION - value: tekton-ecosystem-tenant/tekton-ecosystem-tenant-indexes - - name: TIMEOUT - value: "15m0s" - - name: SINGLE_COMPONENT - value: "true" - resolverRef: - params: - - name: url - value: "https://github.com/konflux-ci/build-definitions" - - name: revision - value: main - - name: pathInRepo - value: pipelines/enterprise-contract.yaml - resolver: git diff --git a/.konflux/next/openshift-pipelines-index-4.18/application.yaml b/.konflux/next/openshift-pipelines-index-4.18/application.yaml deleted file mode 100644 index 83473b1f..00000000 --- a/.konflux/next/openshift-pipelines-index-4.18/application.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.18 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Application -metadata: - name: openshift-pipelines-index-4-18-next -spec: - displayName: openshift-pipelines-index-4-18-next diff --git a/.konflux/next/openshift-pipelines-index-4.18/operator/component-index-4.18-next.yaml b/.konflux/next/openshift-pipelines-index-4.18/operator/component-index-4.18-next.yaml deleted file mode 100644 index a2bf6434..00000000 --- a/.konflux/next/openshift-pipelines-index-4.18/operator/component-index-4.18-next.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.18 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: operator-next-index-4-18 -spec: - componentName: index-4-18 - application: openshift-pipelines-index-4-18-next - build-nudges-ref: - - - source: - git: - url: https://github.com/openshift-pipelines/operator.git - dockerfileUrl: .konflux/dockerfiles/index-4.18.Dockerfile - revision: next diff --git a/.konflux/next/openshift-pipelines-index-4.18/operator/image-index-4.18-next.yaml b/.konflux/next/openshift-pipelines-index-4.18/operator/image-index-4.18-next.yaml deleted file mode 100644 index 690968ac..00000000 --- a/.konflux/next/openshift-pipelines-index-4.18/operator/image-index-4.18-next.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.18 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pipelines-index-4-18 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: operator-next-index-4-18 - appstudio.redhat.com/application: openshift-pipelines-index-4-18-next -spec: - image: - name: pipelines-index-4.18 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/next/openshift-pipelines-index-4.18/release-plan.yaml b/.konflux/next/openshift-pipelines-index-4.18/release-plan.yaml deleted file mode 100644 index 420a196e..00000000 --- a/.konflux/next/openshift-pipelines-index-4.18/release-plan.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.18 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ReleasePlan -metadata: - labels: - release.appstudio.openshift.io/auto-release: "true" - release.appstudio.openshift.io/standing-attribution: 'true' - name: openshift-pipelines-index-4-18-next-rp -spec: - application: openshift-pipelines-index-4-18-next - tenantPipeline: - serviceAccountName: release-registry-openshift-pipelines-index-4-18-next - pipelineRef: - resolver: git - params: - - name: url - value: https://github.com/openshift-pipelines/hack.git - - name: revision - # value: next - value: main - - name: pathInRepo - value: pipelines/release-pipeline.yaml - params: - - name: release_version - value: "next" - - name: release_to_github - value: "false" diff --git a/.konflux/next/openshift-pipelines-index-4.18/role.yaml b/.konflux/next/openshift-pipelines-index-4.18/role.yaml deleted file mode 100644 index b1cf18c9..00000000 --- a/.konflux/next/openshift-pipelines-index-4.18/role.yaml +++ /dev/null @@ -1,14 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.18 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: rbac.authorization.k8s.io/v1 -kind: RoleBinding -metadata: - name: release-plan-rolebinding-openshift-pipelines-index-4-18-next -subjects: - - kind: ServiceAccount - name: release-registry-openshift-pipelines-index-4-18-next - apiGroup: "" -roleRef: - kind: ClusterRole - name: konflux-releaser-bot-actions - apiGroup: rbac.authorization.k8s.io \ No newline at end of file diff --git a/.konflux/next/openshift-pipelines-index-4.18/service-account.yaml b/.konflux/next/openshift-pipelines-index-4.18/service-account.yaml deleted file mode 100644 index 88c235c5..00000000 --- a/.konflux/next/openshift-pipelines-index-4.18/service-account.yaml +++ /dev/null @@ -1,10 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.18 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: v1 -imagePullSecrets: - - name: release-registry-openshift-pipelines-quay -kind: ServiceAccount -metadata: - name: release-registry-openshift-pipelines-index-4-18-next -secrets: - - name: release-registry-openshift-pipelines-quay \ No newline at end of file diff --git a/.konflux/next/openshift-pipelines-index-4.18/tests.yaml b/.konflux/next/openshift-pipelines-index-4.18/tests.yaml deleted file mode 100644 index 48e19fa4..00000000 --- a/.konflux/next/openshift-pipelines-index-4.18/tests.yaml +++ /dev/null @@ -1,27 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.18 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1beta2 -kind: IntegrationTestScenario -metadata: - name: openshift-pipelines-index-4-18-next-enterprise-contract -spec: - application: openshift-pipelines-index-4-18-next - contexts: - - description: execute the integration test for a component - name: component - params: - - name: POLICY_CONFIGURATION - value: tekton-ecosystem-tenant/tekton-ecosystem-tenant-indexes - - name: TIMEOUT - value: "15m0s" - - name: SINGLE_COMPONENT - value: "true" - resolverRef: - params: - - name: url - value: "https://github.com/konflux-ci/build-definitions" - - name: revision - value: main - - name: pathInRepo - value: pipelines/enterprise-contract.yaml - resolver: git diff --git a/.konflux/next/openshift-pipelines-index-4.19/application.yaml b/.konflux/next/openshift-pipelines-index-4.19/application.yaml deleted file mode 100644 index d36f00ca..00000000 --- a/.konflux/next/openshift-pipelines-index-4.19/application.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.19 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Application -metadata: - name: openshift-pipelines-index-4-19-next -spec: - displayName: openshift-pipelines-index-4-19-next diff --git a/.konflux/next/openshift-pipelines-index-4.19/operator/component-index-4.19-next.yaml b/.konflux/next/openshift-pipelines-index-4.19/operator/component-index-4.19-next.yaml deleted file mode 100644 index f9bc0ab6..00000000 --- a/.konflux/next/openshift-pipelines-index-4.19/operator/component-index-4.19-next.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.19 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: operator-next-index-4-19 -spec: - componentName: index-4-19 - application: openshift-pipelines-index-4-19-next - build-nudges-ref: - - - source: - git: - url: https://github.com/openshift-pipelines/operator.git - dockerfileUrl: .konflux/dockerfiles/index-4.19.Dockerfile - revision: next diff --git a/.konflux/next/openshift-pipelines-index-4.19/operator/image-index-4.19-next.yaml b/.konflux/next/openshift-pipelines-index-4.19/operator/image-index-4.19-next.yaml deleted file mode 100644 index 01d9beb5..00000000 --- a/.konflux/next/openshift-pipelines-index-4.19/operator/image-index-4.19-next.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.19 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pipelines-index-4-19 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: operator-next-index-4-19 - appstudio.redhat.com/application: openshift-pipelines-index-4-19-next -spec: - image: - name: pipelines-index-4.19 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/next/openshift-pipelines-index-4.19/release-plan.yaml b/.konflux/next/openshift-pipelines-index-4.19/release-plan.yaml deleted file mode 100644 index 13debeb6..00000000 --- a/.konflux/next/openshift-pipelines-index-4.19/release-plan.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.19 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ReleasePlan -metadata: - labels: - release.appstudio.openshift.io/auto-release: "true" - release.appstudio.openshift.io/standing-attribution: 'true' - name: openshift-pipelines-index-4-19-next-rp -spec: - application: openshift-pipelines-index-4-19-next - tenantPipeline: - serviceAccountName: release-registry-openshift-pipelines-index-4-19-next - pipelineRef: - resolver: git - params: - - name: url - value: https://github.com/openshift-pipelines/hack.git - - name: revision - # value: next - value: main - - name: pathInRepo - value: pipelines/release-pipeline.yaml - params: - - name: release_version - value: "next" - - name: release_to_github - value: "false" diff --git a/.konflux/next/openshift-pipelines-index-4.19/role.yaml b/.konflux/next/openshift-pipelines-index-4.19/role.yaml deleted file mode 100644 index 0f8b651c..00000000 --- a/.konflux/next/openshift-pipelines-index-4.19/role.yaml +++ /dev/null @@ -1,14 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.19 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: rbac.authorization.k8s.io/v1 -kind: RoleBinding -metadata: - name: release-plan-rolebinding-openshift-pipelines-index-4-19-next -subjects: - - kind: ServiceAccount - name: release-registry-openshift-pipelines-index-4-19-next - apiGroup: "" -roleRef: - kind: ClusterRole - name: konflux-releaser-bot-actions - apiGroup: rbac.authorization.k8s.io \ No newline at end of file diff --git a/.konflux/next/openshift-pipelines-index-4.19/service-account.yaml b/.konflux/next/openshift-pipelines-index-4.19/service-account.yaml deleted file mode 100644 index 775157b1..00000000 --- a/.konflux/next/openshift-pipelines-index-4.19/service-account.yaml +++ /dev/null @@ -1,10 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.19 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: v1 -imagePullSecrets: - - name: release-registry-openshift-pipelines-quay -kind: ServiceAccount -metadata: - name: release-registry-openshift-pipelines-index-4-19-next -secrets: - - name: release-registry-openshift-pipelines-quay \ No newline at end of file diff --git a/.konflux/next/openshift-pipelines-index-4.19/tests.yaml b/.konflux/next/openshift-pipelines-index-4.19/tests.yaml deleted file mode 100644 index 8fc4c239..00000000 --- a/.konflux/next/openshift-pipelines-index-4.19/tests.yaml +++ /dev/null @@ -1,27 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.19 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1beta2 -kind: IntegrationTestScenario -metadata: - name: openshift-pipelines-index-4-19-next-enterprise-contract -spec: - application: openshift-pipelines-index-4-19-next - contexts: - - description: execute the integration test for a component - name: component - params: - - name: POLICY_CONFIGURATION - value: tekton-ecosystem-tenant/tekton-ecosystem-tenant-indexes - - name: TIMEOUT - value: "15m0s" - - name: SINGLE_COMPONENT - value: "true" - resolverRef: - params: - - name: url - value: "https://github.com/konflux-ci/build-definitions" - - name: revision - value: main - - name: pathInRepo - value: pipelines/enterprise-contract.yaml - resolver: git diff --git a/.konflux/next/openshift-pipelines-index-4.20/application.yaml b/.konflux/next/openshift-pipelines-index-4.20/application.yaml deleted file mode 100644 index b685bb96..00000000 --- a/.konflux/next/openshift-pipelines-index-4.20/application.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.20 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Application -metadata: - name: openshift-pipelines-index-4-20-next -spec: - displayName: openshift-pipelines-index-4-20-next diff --git a/.konflux/next/openshift-pipelines-index-4.20/operator/component-index-4.20-next.yaml b/.konflux/next/openshift-pipelines-index-4.20/operator/component-index-4.20-next.yaml deleted file mode 100644 index f7b5ddca..00000000 --- a/.konflux/next/openshift-pipelines-index-4.20/operator/component-index-4.20-next.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.20 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: operator-next-index-4-20 -spec: - componentName: index-4-20 - application: openshift-pipelines-index-4-20-next - build-nudges-ref: - - - source: - git: - url: https://github.com/openshift-pipelines/operator.git - dockerfileUrl: .konflux/dockerfiles/index-4.20.Dockerfile - revision: next diff --git a/.konflux/next/openshift-pipelines-index-4.20/operator/image-index-4.20-next.yaml b/.konflux/next/openshift-pipelines-index-4.20/operator/image-index-4.20-next.yaml deleted file mode 100644 index 51084f7f..00000000 --- a/.konflux/next/openshift-pipelines-index-4.20/operator/image-index-4.20-next.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.20 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pipelines-index-4-20 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: operator-next-index-4-20 - appstudio.redhat.com/application: openshift-pipelines-index-4-20-next -spec: - image: - name: pipelines-index-4.20 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/next/openshift-pipelines-index-4.20/release-plan.yaml b/.konflux/next/openshift-pipelines-index-4.20/release-plan.yaml deleted file mode 100644 index a0e5c511..00000000 --- a/.konflux/next/openshift-pipelines-index-4.20/release-plan.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.20 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ReleasePlan -metadata: - labels: - release.appstudio.openshift.io/auto-release: "true" - release.appstudio.openshift.io/standing-attribution: 'true' - name: openshift-pipelines-index-4-20-next-rp -spec: - application: openshift-pipelines-index-4-20-next - tenantPipeline: - serviceAccountName: release-registry-openshift-pipelines-index-4-20-next - pipelineRef: - resolver: git - params: - - name: url - value: https://github.com/openshift-pipelines/hack.git - - name: revision - # value: next - value: main - - name: pathInRepo - value: pipelines/release-pipeline.yaml - params: - - name: release_version - value: "next" - - name: release_to_github - value: "false" diff --git a/.konflux/next/openshift-pipelines-index-4.20/role.yaml b/.konflux/next/openshift-pipelines-index-4.20/role.yaml deleted file mode 100644 index 22c61b43..00000000 --- a/.konflux/next/openshift-pipelines-index-4.20/role.yaml +++ /dev/null @@ -1,14 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.20 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: rbac.authorization.k8s.io/v1 -kind: RoleBinding -metadata: - name: release-plan-rolebinding-openshift-pipelines-index-4-20-next -subjects: - - kind: ServiceAccount - name: release-registry-openshift-pipelines-index-4-20-next - apiGroup: "" -roleRef: - kind: ClusterRole - name: konflux-releaser-bot-actions - apiGroup: rbac.authorization.k8s.io \ No newline at end of file diff --git a/.konflux/next/openshift-pipelines-index-4.20/service-account.yaml b/.konflux/next/openshift-pipelines-index-4.20/service-account.yaml deleted file mode 100644 index ef44a04f..00000000 --- a/.konflux/next/openshift-pipelines-index-4.20/service-account.yaml +++ /dev/null @@ -1,10 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.20 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: v1 -imagePullSecrets: - - name: release-registry-openshift-pipelines-quay -kind: ServiceAccount -metadata: - name: release-registry-openshift-pipelines-index-4-20-next -secrets: - - name: release-registry-openshift-pipelines-quay \ No newline at end of file diff --git a/.konflux/next/openshift-pipelines-index-4.20/tests.yaml b/.konflux/next/openshift-pipelines-index-4.20/tests.yaml deleted file mode 100644 index 0a954dd6..00000000 --- a/.konflux/next/openshift-pipelines-index-4.20/tests.yaml +++ /dev/null @@ -1,27 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.20 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1beta2 -kind: IntegrationTestScenario -metadata: - name: openshift-pipelines-index-4-20-next-enterprise-contract -spec: - application: openshift-pipelines-index-4-20-next - contexts: - - description: execute the integration test for a component - name: component - params: - - name: POLICY_CONFIGURATION - value: tekton-ecosystem-tenant/tekton-ecosystem-tenant-indexes - - name: TIMEOUT - value: "15m0s" - - name: SINGLE_COMPONENT - value: "true" - resolverRef: - params: - - name: url - value: "https://github.com/konflux-ci/build-definitions" - - name: revision - value: main - - name: pathInRepo - value: pipelines/enterprise-contract.yaml - resolver: git diff --git a/.konflux/next/openshift-pipelines-index-4.21/application.yaml b/.konflux/next/openshift-pipelines-index-4.21/application.yaml deleted file mode 100644 index 4e97cfc1..00000000 --- a/.konflux/next/openshift-pipelines-index-4.21/application.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.21 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Application -metadata: - name: openshift-pipelines-index-4-21-next -spec: - displayName: openshift-pipelines-index-4-21-next diff --git a/.konflux/next/openshift-pipelines-index-4.21/operator/component-index-4.21-next.yaml b/.konflux/next/openshift-pipelines-index-4.21/operator/component-index-4.21-next.yaml deleted file mode 100644 index e66ce288..00000000 --- a/.konflux/next/openshift-pipelines-index-4.21/operator/component-index-4.21-next.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.21 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: operator-next-index-4-21 -spec: - componentName: index-4-21 - application: openshift-pipelines-index-4-21-next - build-nudges-ref: - - - source: - git: - url: https://github.com/openshift-pipelines/operator.git - dockerfileUrl: .konflux/dockerfiles/index-4.21.Dockerfile - revision: next diff --git a/.konflux/next/openshift-pipelines-index-4.21/operator/image-index-4.21-next.yaml b/.konflux/next/openshift-pipelines-index-4.21/operator/image-index-4.21-next.yaml deleted file mode 100644 index 97bec156..00000000 --- a/.konflux/next/openshift-pipelines-index-4.21/operator/image-index-4.21-next.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.21 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pipelines-index-4-21 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: operator-next-index-4-21 - appstudio.redhat.com/application: openshift-pipelines-index-4-21-next -spec: - image: - name: pipelines-index-4.21 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/next/openshift-pipelines-index-4.21/release-plan.yaml b/.konflux/next/openshift-pipelines-index-4.21/release-plan.yaml deleted file mode 100644 index 19b8e958..00000000 --- a/.konflux/next/openshift-pipelines-index-4.21/release-plan.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.21 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ReleasePlan -metadata: - labels: - release.appstudio.openshift.io/auto-release: "true" - release.appstudio.openshift.io/standing-attribution: 'true' - name: openshift-pipelines-index-4-21-next-rp -spec: - application: openshift-pipelines-index-4-21-next - tenantPipeline: - serviceAccountName: release-registry-openshift-pipelines-index-4-21-next - pipelineRef: - resolver: git - params: - - name: url - value: https://github.com/openshift-pipelines/hack.git - - name: revision - # value: next - value: main - - name: pathInRepo - value: pipelines/release-pipeline.yaml - params: - - name: release_version - value: "next" - - name: release_to_github - value: "false" diff --git a/.konflux/next/openshift-pipelines-index-4.21/role.yaml b/.konflux/next/openshift-pipelines-index-4.21/role.yaml deleted file mode 100644 index 46860a81..00000000 --- a/.konflux/next/openshift-pipelines-index-4.21/role.yaml +++ /dev/null @@ -1,14 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.21 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: rbac.authorization.k8s.io/v1 -kind: RoleBinding -metadata: - name: release-plan-rolebinding-openshift-pipelines-index-4-21-next -subjects: - - kind: ServiceAccount - name: release-registry-openshift-pipelines-index-4-21-next - apiGroup: "" -roleRef: - kind: ClusterRole - name: konflux-releaser-bot-actions - apiGroup: rbac.authorization.k8s.io \ No newline at end of file diff --git a/.konflux/next/openshift-pipelines-index-4.21/service-account.yaml b/.konflux/next/openshift-pipelines-index-4.21/service-account.yaml deleted file mode 100644 index 39446868..00000000 --- a/.konflux/next/openshift-pipelines-index-4.21/service-account.yaml +++ /dev/null @@ -1,10 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.21 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: v1 -imagePullSecrets: - - name: release-registry-openshift-pipelines-quay -kind: ServiceAccount -metadata: - name: release-registry-openshift-pipelines-index-4-21-next -secrets: - - name: release-registry-openshift-pipelines-quay \ No newline at end of file diff --git a/.konflux/next/openshift-pipelines-index-4.21/tests.yaml b/.konflux/next/openshift-pipelines-index-4.21/tests.yaml deleted file mode 100644 index 8d0495a5..00000000 --- a/.konflux/next/openshift-pipelines-index-4.21/tests.yaml +++ /dev/null @@ -1,27 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.21 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1beta2 -kind: IntegrationTestScenario -metadata: - name: openshift-pipelines-index-4-21-next-enterprise-contract -spec: - application: openshift-pipelines-index-4-21-next - contexts: - - description: execute the integration test for a component - name: component - params: - - name: POLICY_CONFIGURATION - value: tekton-ecosystem-tenant/tekton-ecosystem-tenant-indexes - - name: TIMEOUT - value: "15m0s" - - name: SINGLE_COMPONENT - value: "true" - resolverRef: - params: - - name: url - value: "https://github.com/konflux-ci/build-definitions" - - name: revision - value: main - - name: pathInRepo - value: pipelines/enterprise-contract.yaml - resolver: git diff --git a/.konflux/next/openshift-pipelines-operator/application.yaml b/.konflux/next/openshift-pipelines-operator/application.yaml deleted file mode 100644 index cccd7676..00000000 --- a/.konflux/next/openshift-pipelines-operator/application.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-operator by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Application -metadata: - name: openshift-pipelines-operator-next -spec: - displayName: openshift-pipelines-operator-next diff --git a/.konflux/next/openshift-pipelines-operator/operator/component-bundle-next.yaml b/.konflux/next/openshift-pipelines-operator/operator/component-bundle-next.yaml deleted file mode 100644 index edd88ef8..00000000 --- a/.konflux/next/openshift-pipelines-operator/operator/component-bundle-next.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-operator by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: operator-next-bundle -spec: - componentName: bundle - application: openshift-pipelines-operator-next - build-nudges-ref: - - operator-next-index-4-20 - source: - git: - url: https://github.com/openshift-pipelines/operator.git - dockerfileUrl: .konflux/dockerfiles/bundle.Dockerfile - revision: next diff --git a/.konflux/next/openshift-pipelines-operator/operator/component-operator-next.yaml b/.konflux/next/openshift-pipelines-operator/operator/component-operator-next.yaml deleted file mode 100644 index fcf3c147..00000000 --- a/.konflux/next/openshift-pipelines-operator/operator/component-operator-next.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-operator by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: operator-next-operator -spec: - componentName: operator - application: openshift-pipelines-operator-next - build-nudges-ref: - - operator-next-bundle - source: - git: - url: https://github.com/openshift-pipelines/operator.git - dockerfileUrl: .konflux/dockerfiles/operator.Dockerfile - revision: next diff --git a/.konflux/next/openshift-pipelines-operator/operator/component-proxy-next.yaml b/.konflux/next/openshift-pipelines-operator/operator/component-proxy-next.yaml deleted file mode 100644 index e867e66f..00000000 --- a/.konflux/next/openshift-pipelines-operator/operator/component-proxy-next.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-operator by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: operator-next-proxy -spec: - componentName: proxy - application: openshift-pipelines-operator-next - build-nudges-ref: - - operator-next-bundle - source: - git: - url: https://github.com/openshift-pipelines/operator.git - dockerfileUrl: .konflux/dockerfiles/proxy.Dockerfile - revision: next diff --git a/.konflux/next/openshift-pipelines-operator/operator/component-webhook-next.yaml b/.konflux/next/openshift-pipelines-operator/operator/component-webhook-next.yaml deleted file mode 100644 index ecac7cff..00000000 --- a/.konflux/next/openshift-pipelines-operator/operator/component-webhook-next.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-operator by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: operator-next-webhook -spec: - componentName: webhook - application: openshift-pipelines-operator-next - build-nudges-ref: - - operator-next-bundle - source: - git: - url: https://github.com/openshift-pipelines/operator.git - dockerfileUrl: .konflux/dockerfiles/webhook.Dockerfile - revision: next diff --git a/.konflux/next/openshift-pipelines-operator/operator/image-bundle-next.yaml b/.konflux/next/openshift-pipelines-operator/operator/image-bundle-next.yaml deleted file mode 100644 index 9a7a61c0..00000000 --- a/.konflux/next/openshift-pipelines-operator/operator/image-bundle-next.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-operator by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pipelines-operator-bundle - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: operator-next-bundle - appstudio.redhat.com/application: openshift-pipelines-operator-next -spec: - image: - name: pipelines-operator-bundle - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/next/openshift-pipelines-operator/operator/image-operator-next.yaml b/.konflux/next/openshift-pipelines-operator/operator/image-operator-next.yaml deleted file mode 100644 index 6c143c75..00000000 --- a/.konflux/next/openshift-pipelines-operator/operator/image-operator-next.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-operator by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pipelines-rhel9-operator - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: operator-next-operator - appstudio.redhat.com/application: openshift-pipelines-operator-next -spec: - image: - name: pipelines-rhel9-operator - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/next/openshift-pipelines-operator/operator/image-proxy-next.yaml b/.konflux/next/openshift-pipelines-operator/operator/image-proxy-next.yaml deleted file mode 100644 index ccf5c97a..00000000 --- a/.konflux/next/openshift-pipelines-operator/operator/image-proxy-next.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-operator by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pipelines-operator-proxy-rhel9 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: operator-next-proxy - appstudio.redhat.com/application: openshift-pipelines-operator-next -spec: - image: - name: pipelines-operator-proxy-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/next/openshift-pipelines-operator/operator/image-webhook-next.yaml b/.konflux/next/openshift-pipelines-operator/operator/image-webhook-next.yaml deleted file mode 100644 index d60a8d66..00000000 --- a/.konflux/next/openshift-pipelines-operator/operator/image-webhook-next.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-operator by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pipelines-operator-webhook-rhel9 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: operator-next-webhook - appstudio.redhat.com/application: openshift-pipelines-operator-next -spec: - image: - name: pipelines-operator-webhook-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/next/openshift-pipelines-operator/release-plan.yaml b/.konflux/next/openshift-pipelines-operator/release-plan.yaml deleted file mode 100644 index 35702e53..00000000 --- a/.konflux/next/openshift-pipelines-operator/release-plan.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-operator by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ReleasePlan -metadata: - labels: - release.appstudio.openshift.io/auto-release: "true" - release.appstudio.openshift.io/standing-attribution: 'true' - name: openshift-pipelines-operator-next-rp -spec: - application: openshift-pipelines-operator-next - tenantPipeline: - serviceAccountName: release-registry-openshift-pipelines-operator-next - pipelineRef: - resolver: git - params: - - name: url - value: https://github.com/openshift-pipelines/hack.git - - name: revision - # value: next - value: main - - name: pathInRepo - value: pipelines/release-pipeline.yaml - params: - - name: release_version - value: "next" - - name: release_to_github - value: "false" diff --git a/.konflux/next/openshift-pipelines-operator/role.yaml b/.konflux/next/openshift-pipelines-operator/role.yaml deleted file mode 100644 index f154a2b9..00000000 --- a/.konflux/next/openshift-pipelines-operator/role.yaml +++ /dev/null @@ -1,14 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-operator by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: rbac.authorization.k8s.io/v1 -kind: RoleBinding -metadata: - name: release-plan-rolebinding-openshift-pipelines-operator-next -subjects: - - kind: ServiceAccount - name: release-registry-openshift-pipelines-operator-next - apiGroup: "" -roleRef: - kind: ClusterRole - name: konflux-releaser-bot-actions - apiGroup: rbac.authorization.k8s.io \ No newline at end of file diff --git a/.konflux/next/openshift-pipelines-operator/service-account.yaml b/.konflux/next/openshift-pipelines-operator/service-account.yaml deleted file mode 100644 index 2f9d5890..00000000 --- a/.konflux/next/openshift-pipelines-operator/service-account.yaml +++ /dev/null @@ -1,10 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-operator by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: v1 -imagePullSecrets: - - name: release-registry-openshift-pipelines-quay -kind: ServiceAccount -metadata: - name: release-registry-openshift-pipelines-operator-next -secrets: - - name: release-registry-openshift-pipelines-quay \ No newline at end of file diff --git a/.konflux/next/openshift-pipelines-operator/tests.yaml b/.konflux/next/openshift-pipelines-operator/tests.yaml deleted file mode 100644 index 6d042d75..00000000 --- a/.konflux/next/openshift-pipelines-operator/tests.yaml +++ /dev/null @@ -1,27 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-operator by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1beta2 -kind: IntegrationTestScenario -metadata: - name: openshift-pipelines-operator-next-enterprise-contract -spec: - application: openshift-pipelines-operator-next - contexts: - - description: execute the integration test for a component - name: component - params: - - name: POLICY_CONFIGURATION - value: tekton-ecosystem-tenant/tekton-ecosystem-tenant-containers - - name: TIMEOUT - value: "15m0s" - - name: SINGLE_COMPONENT - value: "true" - resolverRef: - params: - - name: url - value: "https://github.com/konflux-ci/build-definitions" - - name: revision - value: main - - name: pathInRepo - value: pipelines/enterprise-contract.yaml - resolver: git From 42aee5584261da2a156113360cc07c90a4abf4f4 Mon Sep 17 00:00:00 2001 From: Pramod Bindal Date: Fri, 30 Jan 2026 15:32:59 +0530 Subject: [PATCH 04/18] Add tekton kueue --- config/downstream/repos/tekton-kueue.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/downstream/repos/tekton-kueue.yaml b/config/downstream/repos/tekton-kueue.yaml index 07454277..ca767a56 100644 --- a/config/downstream/repos/tekton-kueue.yaml +++ b/config/downstream/repos/tekton-kueue.yaml @@ -2,6 +2,6 @@ name: tekton-kueue upstream: konflux-ci/tekton-kueue no-prefix-upstream: true components: - - name: kueue + - name: scheduler prefetch-input: | {"type": "gomod", "path": "upstream"} From f24be55b14c3ae8e6bec463d27372a130e0832e6 Mon Sep 17 00:00:00 2001 From: openshift-pipelines-bot Date: Tue, 3 Feb 2026 07:21:42 +0000 Subject: [PATCH 05/18] [bot: 1.22] Release Action: update-upstream-versions Generated by workflow [Automated Release Actions](https://github.com/openshift-pipelines/hack/actions/runs/21620955570) Triggered by pramodbindal --- config/downstream/releases/1.22.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/downstream/releases/1.22.yaml b/config/downstream/releases/1.22.yaml index fd2170a3..023d2048 100644 --- a/config/downstream/releases/1.22.yaml +++ b/config/downstream/releases/1.22.yaml @@ -23,7 +23,7 @@ branches: tektoncd-hub: upstream: release-v1.23.6 tektoncd-operator: - upstream: release-v0.78.x + upstream: main tektoncd-pipeline: upstream: release-v1.9.x tektoncd-pruner: From eaaa61181b55f9635a7736ec2b65ae89628a12e6 Mon Sep 17 00:00:00 2001 From: Pramod Bindal Date: Mon, 2 Feb 2026 14:18:19 +0530 Subject: [PATCH 06/18] update release tag --- .../component-proxy-server-1.22.yaml | 18 ------------ .../image-controller-1.22.yaml | 22 --------------- .../component-controller-1.22.yaml | 18 ------------ .../image-controller-1.22.yaml | 22 --------------- .../component-proxy-server-next.yaml | 18 ------------ .../image-controller-next.yaml | 22 --------------- .../component-controller-next.yaml | 18 ------------ .../image-controller-next.yaml | 22 --------------- .../1-22/application.yaml | 8 ------ .../1-22/p12n-opc/component-opc-1.22.yaml | 18 ------------ .../1-22/p12n-opc/image-opc-1.22.yaml | 22 --------------- .../1-22/release-plan.yaml | 28 ------------------- .../component-serve-tkn-cli-1.22.yaml | 18 ------------ .../image-serve-tkn-cli-1.22.yaml | 22 --------------- .../1-22/tektoncd-cli/component-tkn-1.22.yaml | 18 ------------ .../1-22/tektoncd-cli/image-tkn-1.22.yaml | 22 --------------- .../openshift-pipelines-cli/1-22/tests.yaml | 27 ------------------ .../next/application.yaml | 8 ------ .../next/p12n-opc/component-opc-next.yaml | 18 ------------ .../next/p12n-opc/image-opc-next.yaml | 22 --------------- .../next/release-plan.yaml | 28 ------------------- .../component-serve-tkn-cli-next.yaml | 18 ------------ .../image-serve-tkn-cli-next.yaml | 22 --------------- .../next/tektoncd-cli/component-tkn-next.yaml | 18 ------------ .../next/tektoncd-cli/image-tkn-next.yaml | 22 --------------- .../openshift-pipelines-cli/next/tests.yaml | 27 ------------------ .konflux/openshift-pipelines-cli/role.yaml | 14 ---------- .../service-account.yaml | 10 ------- .../1-22/application.yaml | 8 ------ .../component-console-plugin-1.22.yaml | 18 ------------ .../image-console-plugin-1.22.yaml | 22 --------------- .../component-controller-1.22.yaml | 18 ------------ .../component-webhook-1.22.yaml | 18 ------------ .../image-controller-1.22.yaml | 22 --------------- .../image-webhook-1.22.yaml | 22 --------------- .../component-proxy-server-1.22.yaml | 18 ------------ .../image-proxy-server-1.22.yaml | 22 --------------- .../component-controller-1.22.yaml | 18 ------------ .../image-controller-1.22.yaml | 22 --------------- .../component-tekton-assist-1.22.yaml | 18 ------------ .../image-tekton-assist-1.22.yaml | 22 --------------- .../component-cache-1.22.yaml | 18 ------------ .../p12n-tekton-caches/image-cache-1.22.yaml | 22 --------------- .../pac-downstream/component-cli-1.22.yaml | 19 ------------- .../component-controller-1.22.yaml | 18 ------------ .../component-watcher-1.22.yaml | 18 ------------ .../component-webhook-1.22.yaml | 18 ------------ .../1-22/pac-downstream/image-cli-1.22.yaml | 22 --------------- .../pac-downstream/image-controller-1.22.yaml | 22 --------------- .../pac-downstream/image-watcher-1.22.yaml | 22 --------------- .../pac-downstream/image-webhook-1.22.yaml | 22 --------------- .../1-22/release-plan.yaml | 28 ------------------- .../tekton-kueue/component-kueue-1.22.yaml | 18 ------------ .../1-22/tekton-kueue/image-kueue-1.22.yaml | 22 --------------- .../component-controller-1.22.yaml | 18 ------------ .../image-controller-1.22.yaml | 22 --------------- .../component-git-init-1.22.yaml | 18 ------------ .../image-git-init-1.22.yaml | 22 --------------- .../1-22/tektoncd-hub/component-api-1.22.yaml | 18 ------------ .../component-db-migration-1.22.yaml | 18 ------------ .../1-22/tektoncd-hub/component-ui-1.22.yaml | 18 ------------ .../1-22/tektoncd-hub/image-api-1.22.yaml | 22 --------------- .../tektoncd-hub/image-db-migration-1.22.yaml | 22 --------------- .../1-22/tektoncd-hub/image-ui-1.22.yaml | 22 --------------- .../component-controller-1.22.yaml | 18 ------------ .../component-entrypoint-1.22.yaml | 18 ------------ .../component-events-1.22.yaml | 18 ------------ .../tektoncd-pipeline/component-nop-1.22.yaml | 18 ------------ .../component-resolvers-1.22.yaml | 18 ------------ .../component-sidecarlogresults-1.22.yaml | 18 ------------ .../component-webhook-1.22.yaml | 18 ------------ .../component-workingdirinit-1.22.yaml | 18 ------------ .../image-controller-1.22.yaml | 22 --------------- .../image-entrypoint-1.22.yaml | 22 --------------- .../tektoncd-pipeline/image-events-1.22.yaml | 22 --------------- .../tektoncd-pipeline/image-nop-1.22.yaml | 22 --------------- .../image-resolvers-1.22.yaml | 22 --------------- .../image-sidecarlogresults-1.22.yaml | 22 --------------- .../tektoncd-pipeline/image-webhook-1.22.yaml | 22 --------------- .../image-workingdirinit-1.22.yaml | 22 --------------- .../component-controller-1.22.yaml | 18 ------------ .../image-controller-1.22.yaml | 22 --------------- .../tektoncd-results/component-api-1.22.yaml | 18 ------------ ...component-retention-policy-agent-1.22.yaml | 18 ------------ .../component-watcher-1.22.yaml | 18 ------------ .../1-22/tektoncd-results/image-api-1.22.yaml | 22 --------------- .../image-retention-policy-agent-1.22.yaml | 22 --------------- .../tektoncd-results/image-watcher-1.22.yaml | 22 --------------- .../component-controller-1.22.yaml | 18 ------------ .../component-core-interceptors-1.22.yaml | 18 ------------ .../component-eventlistenersink-1.22.yaml | 18 ------------ .../component-webhook-1.22.yaml | 18 ------------ .../image-controller-1.22.yaml | 22 --------------- .../image-core-interceptors-1.22.yaml | 22 --------------- .../image-eventlistenersink-1.22.yaml | 22 --------------- .../tektoncd-triggers/image-webhook-1.22.yaml | 22 --------------- .../openshift-pipelines-core/1-22/tests.yaml | 27 ------------------ .../next/application.yaml | 8 ------ .../component-console-plugin-next.yaml | 18 ------------ .../image-console-plugin-next.yaml | 22 --------------- .../component-controller-next.yaml | 18 ------------ .../component-webhook-next.yaml | 18 ------------ .../image-controller-next.yaml | 22 --------------- .../image-webhook-next.yaml | 22 --------------- .../component-proxy-server-next.yaml | 18 ------------ .../image-proxy-server-next.yaml | 22 --------------- .../component-controller-next.yaml | 18 ------------ .../image-controller-next.yaml | 22 --------------- .../component-tekton-assist-next.yaml | 18 ------------ .../image-tekton-assist-next.yaml | 22 --------------- .../component-cache-next.yaml | 18 ------------ .../p12n-tekton-caches/image-cache-next.yaml | 22 --------------- .../pac-downstream/component-cli-next.yaml | 19 ------------- .../component-controller-next.yaml | 18 ------------ .../component-watcher-next.yaml | 18 ------------ .../component-webhook-next.yaml | 18 ------------ .../next/pac-downstream/image-cli-next.yaml | 22 --------------- .../pac-downstream/image-controller-next.yaml | 22 --------------- .../pac-downstream/image-watcher-next.yaml | 22 --------------- .../pac-downstream/image-webhook-next.yaml | 22 --------------- .../next/release-plan.yaml | 28 ------------------- .../tekton-kueue/component-kueue-next.yaml | 18 ------------ .../next/tekton-kueue/image-kueue-next.yaml | 22 --------------- .../component-controller-next.yaml | 18 ------------ .../image-controller-next.yaml | 22 --------------- .../component-git-init-next.yaml | 18 ------------ .../image-git-init-next.yaml | 22 --------------- .../next/tektoncd-hub/component-api-next.yaml | 18 ------------ .../component-db-migration-next.yaml | 18 ------------ .../next/tektoncd-hub/component-ui-next.yaml | 18 ------------ .../next/tektoncd-hub/image-api-next.yaml | 22 --------------- .../tektoncd-hub/image-db-migration-next.yaml | 22 --------------- .../next/tektoncd-hub/image-ui-next.yaml | 22 --------------- .../component-controller-next.yaml | 18 ------------ .../component-entrypoint-next.yaml | 18 ------------ .../component-events-next.yaml | 18 ------------ .../tektoncd-pipeline/component-nop-next.yaml | 18 ------------ .../component-resolvers-next.yaml | 18 ------------ .../component-sidecarlogresults-next.yaml | 18 ------------ .../component-webhook-next.yaml | 18 ------------ .../component-workingdirinit-next.yaml | 18 ------------ .../image-controller-next.yaml | 22 --------------- .../image-entrypoint-next.yaml | 22 --------------- .../tektoncd-pipeline/image-events-next.yaml | 22 --------------- .../tektoncd-pipeline/image-nop-next.yaml | 22 --------------- .../image-resolvers-next.yaml | 22 --------------- .../image-sidecarlogresults-next.yaml | 22 --------------- .../tektoncd-pipeline/image-webhook-next.yaml | 22 --------------- .../image-workingdirinit-next.yaml | 22 --------------- .../component-controller-next.yaml | 18 ------------ .../image-controller-next.yaml | 22 --------------- .../tektoncd-results/component-api-next.yaml | 18 ------------ ...component-retention-policy-agent-next.yaml | 18 ------------ .../component-watcher-next.yaml | 18 ------------ .../next/tektoncd-results/image-api-next.yaml | 22 --------------- .../image-retention-policy-agent-next.yaml | 22 --------------- .../tektoncd-results/image-watcher-next.yaml | 22 --------------- .../component-controller-next.yaml | 18 ------------ .../component-core-interceptors-next.yaml | 18 ------------ .../component-eventlistenersink-next.yaml | 18 ------------ .../component-webhook-next.yaml | 18 ------------ .../image-controller-next.yaml | 22 --------------- .../image-core-interceptors-next.yaml | 22 --------------- .../image-eventlistenersink-next.yaml | 22 --------------- .../tektoncd-triggers/image-webhook-next.yaml | 22 --------------- .../openshift-pipelines-core/next/tests.yaml | 27 ------------------ .konflux/openshift-pipelines-core/role.yaml | 14 ---------- .../service-account.yaml | 10 ------- .../1-22/application.yaml | 8 ------ .../operator/component-index-4.16-1.22.yaml | 18 ------------ .../1-22/operator/image-index-4.16-1.22.yaml | 22 --------------- .../1-22/release-plan.yaml | 28 ------------------- .../1-22/tests.yaml | 27 ------------------ .../next/application.yaml | 8 ------ .../operator/component-index-4.16-next.yaml | 18 ------------ .../next/operator/image-index-4.16-next.yaml | 22 --------------- .../next/release-plan.yaml | 28 ------------------- .../next/tests.yaml | 27 ------------------ .../openshift-pipelines-index-4.16/role.yaml | 14 ---------- .../service-account.yaml | 10 ------- .../1-22/application.yaml | 8 ------ .../operator/component-index-4.17-1.22.yaml | 18 ------------ .../1-22/operator/image-index-4.17-1.22.yaml | 22 --------------- .../1-22/release-plan.yaml | 28 ------------------- .../1-22/tests.yaml | 27 ------------------ .../next/application.yaml | 8 ------ .../operator/component-index-4.17-next.yaml | 18 ------------ .../next/operator/image-index-4.17-next.yaml | 22 --------------- .../next/release-plan.yaml | 28 ------------------- .../next/tests.yaml | 27 ------------------ .../openshift-pipelines-index-4.17/role.yaml | 14 ---------- .../service-account.yaml | 10 ------- .../1-22/application.yaml | 8 ------ .../operator/component-index-4.18-1.22.yaml | 18 ------------ .../1-22/operator/image-index-4.18-1.22.yaml | 22 --------------- .../1-22/release-plan.yaml | 28 ------------------- .../1-22/tests.yaml | 27 ------------------ .../next/application.yaml | 8 ------ .../operator/component-index-4.18-next.yaml | 18 ------------ .../next/operator/image-index-4.18-next.yaml | 22 --------------- .../next/release-plan.yaml | 28 ------------------- .../next/tests.yaml | 27 ------------------ .../openshift-pipelines-index-4.18/role.yaml | 14 ---------- .../service-account.yaml | 10 ------- .../1-22/application.yaml | 8 ------ .../operator/component-index-4.19-1.22.yaml | 18 ------------ .../1-22/operator/image-index-4.19-1.22.yaml | 22 --------------- .../1-22/release-plan.yaml | 28 ------------------- .../1-22/tests.yaml | 27 ------------------ .../next/application.yaml | 8 ------ .../operator/component-index-4.19-next.yaml | 18 ------------ .../next/operator/image-index-4.19-next.yaml | 22 --------------- .../next/release-plan.yaml | 28 ------------------- .../next/tests.yaml | 27 ------------------ .../openshift-pipelines-index-4.19/role.yaml | 14 ---------- .../service-account.yaml | 10 ------- .../1-22/application.yaml | 8 ------ .../operator/component-index-4.20-1.22.yaml | 18 ------------ .../1-22/operator/image-index-4.20-1.22.yaml | 22 --------------- .../1-22/release-plan.yaml | 28 ------------------- .../1-22/tests.yaml | 27 ------------------ .../next/application.yaml | 8 ------ .../operator/component-index-4.20-next.yaml | 18 ------------ .../next/operator/image-index-4.20-next.yaml | 22 --------------- .../next/release-plan.yaml | 28 ------------------- .../next/tests.yaml | 27 ------------------ .../openshift-pipelines-index-4.20/role.yaml | 14 ---------- .../service-account.yaml | 10 ------- .../1-22/application.yaml | 8 ------ .../1-22/operator/component-bundle-1.22.yaml | 18 ------------ .../operator/component-operator-1.22.yaml | 18 ------------ .../1-22/operator/component-proxy-1.22.yaml | 18 ------------ .../1-22/operator/component-webhook-1.22.yaml | 18 ------------ .../1-22/operator/image-bundle-1.22.yaml | 22 --------------- .../1-22/operator/image-operator-1.22.yaml | 22 --------------- .../1-22/operator/image-proxy-1.22.yaml | 22 --------------- .../1-22/operator/image-webhook-1.22.yaml | 22 --------------- .../1-22/release-plan.yaml | 28 ------------------- .../1-22/tests.yaml | 27 ------------------ .../next/application.yaml | 8 ------ .../next/operator/component-bundle-next.yaml | 18 ------------ .../operator/component-operator-next.yaml | 18 ------------ .../next/operator/component-proxy-next.yaml | 18 ------------ .../next/operator/component-webhook-next.yaml | 18 ------------ .../next/operator/image-bundle-next.yaml | 22 --------------- .../next/operator/image-operator-next.yaml | 22 --------------- .../next/operator/image-proxy-next.yaml | 22 --------------- .../next/operator/image-webhook-next.yaml | 22 --------------- .../next/release-plan.yaml | 28 ------------------- .../next/tests.yaml | 27 ------------------ .../openshift-pipelines-operator/role.yaml | 14 ---------- .../service-account.yaml | 10 ------- cmd/konflux/main.go | 12 ++++++-- config/downstream/konflux.yaml | 1 + internal/konflux/config.go | 1 + internal/konflux/config_generator.go | 2 +- 256 files changed, 13 insertions(+), 4965 deletions(-) delete mode 100644 .konflux/1-22/openshift-pipelines-core/p12n-multicluster-proxy-aae/component-proxy-server-1.22.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-core/p12n-multicluster-proxy-aae/image-controller-1.22.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-core/p12n-syncer-service/component-controller-1.22.yaml delete mode 100644 .konflux/1-22/openshift-pipelines-core/p12n-syncer-service/image-controller-1.22.yaml delete mode 100644 .konflux/next/openshift-pipelines-core/p12n-multicluster-proxy-aae/component-proxy-server-next.yaml delete mode 100644 .konflux/next/openshift-pipelines-core/p12n-multicluster-proxy-aae/image-controller-next.yaml delete mode 100644 .konflux/next/openshift-pipelines-core/p12n-syncer-service/component-controller-next.yaml delete mode 100644 .konflux/next/openshift-pipelines-core/p12n-syncer-service/image-controller-next.yaml delete mode 100644 .konflux/openshift-pipelines-cli/1-22/application.yaml delete mode 100644 .konflux/openshift-pipelines-cli/1-22/p12n-opc/component-opc-1.22.yaml delete mode 100644 .konflux/openshift-pipelines-cli/1-22/p12n-opc/image-opc-1.22.yaml delete mode 100644 .konflux/openshift-pipelines-cli/1-22/release-plan.yaml delete mode 100644 .konflux/openshift-pipelines-cli/1-22/serve-tkn-cli/component-serve-tkn-cli-1.22.yaml delete mode 100644 .konflux/openshift-pipelines-cli/1-22/serve-tkn-cli/image-serve-tkn-cli-1.22.yaml delete mode 100644 .konflux/openshift-pipelines-cli/1-22/tektoncd-cli/component-tkn-1.22.yaml delete mode 100644 .konflux/openshift-pipelines-cli/1-22/tektoncd-cli/image-tkn-1.22.yaml delete mode 100644 .konflux/openshift-pipelines-cli/1-22/tests.yaml delete mode 100644 .konflux/openshift-pipelines-cli/next/application.yaml delete mode 100644 .konflux/openshift-pipelines-cli/next/p12n-opc/component-opc-next.yaml delete mode 100644 .konflux/openshift-pipelines-cli/next/p12n-opc/image-opc-next.yaml delete mode 100644 .konflux/openshift-pipelines-cli/next/release-plan.yaml delete mode 100644 .konflux/openshift-pipelines-cli/next/serve-tkn-cli/component-serve-tkn-cli-next.yaml delete mode 100644 .konflux/openshift-pipelines-cli/next/serve-tkn-cli/image-serve-tkn-cli-next.yaml delete mode 100644 .konflux/openshift-pipelines-cli/next/tektoncd-cli/component-tkn-next.yaml delete mode 100644 .konflux/openshift-pipelines-cli/next/tektoncd-cli/image-tkn-next.yaml delete mode 100644 .konflux/openshift-pipelines-cli/next/tests.yaml delete mode 100644 .konflux/openshift-pipelines-cli/role.yaml delete mode 100644 .konflux/openshift-pipelines-cli/service-account.yaml delete mode 100644 .konflux/openshift-pipelines-core/1-22/application.yaml delete mode 100644 .konflux/openshift-pipelines-core/1-22/console-plugin/component-console-plugin-1.22.yaml delete mode 100644 .konflux/openshift-pipelines-core/1-22/console-plugin/image-console-plugin-1.22.yaml delete mode 100644 .konflux/openshift-pipelines-core/1-22/p12n-manual-approval-gate/component-controller-1.22.yaml delete mode 100644 .konflux/openshift-pipelines-core/1-22/p12n-manual-approval-gate/component-webhook-1.22.yaml delete mode 100644 .konflux/openshift-pipelines-core/1-22/p12n-manual-approval-gate/image-controller-1.22.yaml delete mode 100644 .konflux/openshift-pipelines-core/1-22/p12n-manual-approval-gate/image-webhook-1.22.yaml delete mode 100644 .konflux/openshift-pipelines-core/1-22/p12n-multicluster-proxy-aae/component-proxy-server-1.22.yaml delete mode 100644 .konflux/openshift-pipelines-core/1-22/p12n-multicluster-proxy-aae/image-proxy-server-1.22.yaml delete mode 100644 .konflux/openshift-pipelines-core/1-22/p12n-syncer-service/component-controller-1.22.yaml delete mode 100644 .konflux/openshift-pipelines-core/1-22/p12n-syncer-service/image-controller-1.22.yaml delete mode 100644 .konflux/openshift-pipelines-core/1-22/p12n-tekton-assist/component-tekton-assist-1.22.yaml delete mode 100644 .konflux/openshift-pipelines-core/1-22/p12n-tekton-assist/image-tekton-assist-1.22.yaml delete mode 100644 .konflux/openshift-pipelines-core/1-22/p12n-tekton-caches/component-cache-1.22.yaml delete mode 100644 .konflux/openshift-pipelines-core/1-22/p12n-tekton-caches/image-cache-1.22.yaml delete mode 100644 .konflux/openshift-pipelines-core/1-22/pac-downstream/component-cli-1.22.yaml delete mode 100644 .konflux/openshift-pipelines-core/1-22/pac-downstream/component-controller-1.22.yaml delete mode 100644 .konflux/openshift-pipelines-core/1-22/pac-downstream/component-watcher-1.22.yaml delete mode 100644 .konflux/openshift-pipelines-core/1-22/pac-downstream/component-webhook-1.22.yaml delete mode 100644 .konflux/openshift-pipelines-core/1-22/pac-downstream/image-cli-1.22.yaml delete mode 100644 .konflux/openshift-pipelines-core/1-22/pac-downstream/image-controller-1.22.yaml delete mode 100644 .konflux/openshift-pipelines-core/1-22/pac-downstream/image-watcher-1.22.yaml delete mode 100644 .konflux/openshift-pipelines-core/1-22/pac-downstream/image-webhook-1.22.yaml delete mode 100644 .konflux/openshift-pipelines-core/1-22/release-plan.yaml delete mode 100644 .konflux/openshift-pipelines-core/1-22/tekton-kueue/component-kueue-1.22.yaml delete mode 100644 .konflux/openshift-pipelines-core/1-22/tekton-kueue/image-kueue-1.22.yaml delete mode 100644 .konflux/openshift-pipelines-core/1-22/tektoncd-chains/component-controller-1.22.yaml delete mode 100644 .konflux/openshift-pipelines-core/1-22/tektoncd-chains/image-controller-1.22.yaml delete mode 100644 .konflux/openshift-pipelines-core/1-22/tektoncd-git-clone/component-git-init-1.22.yaml delete mode 100644 .konflux/openshift-pipelines-core/1-22/tektoncd-git-clone/image-git-init-1.22.yaml delete mode 100644 .konflux/openshift-pipelines-core/1-22/tektoncd-hub/component-api-1.22.yaml delete mode 100644 .konflux/openshift-pipelines-core/1-22/tektoncd-hub/component-db-migration-1.22.yaml delete mode 100644 .konflux/openshift-pipelines-core/1-22/tektoncd-hub/component-ui-1.22.yaml delete mode 100644 .konflux/openshift-pipelines-core/1-22/tektoncd-hub/image-api-1.22.yaml delete mode 100644 .konflux/openshift-pipelines-core/1-22/tektoncd-hub/image-db-migration-1.22.yaml delete mode 100644 .konflux/openshift-pipelines-core/1-22/tektoncd-hub/image-ui-1.22.yaml delete mode 100644 .konflux/openshift-pipelines-core/1-22/tektoncd-pipeline/component-controller-1.22.yaml delete mode 100644 .konflux/openshift-pipelines-core/1-22/tektoncd-pipeline/component-entrypoint-1.22.yaml delete mode 100644 .konflux/openshift-pipelines-core/1-22/tektoncd-pipeline/component-events-1.22.yaml delete mode 100644 .konflux/openshift-pipelines-core/1-22/tektoncd-pipeline/component-nop-1.22.yaml delete mode 100644 .konflux/openshift-pipelines-core/1-22/tektoncd-pipeline/component-resolvers-1.22.yaml delete mode 100644 .konflux/openshift-pipelines-core/1-22/tektoncd-pipeline/component-sidecarlogresults-1.22.yaml delete mode 100644 .konflux/openshift-pipelines-core/1-22/tektoncd-pipeline/component-webhook-1.22.yaml delete mode 100644 .konflux/openshift-pipelines-core/1-22/tektoncd-pipeline/component-workingdirinit-1.22.yaml delete mode 100644 .konflux/openshift-pipelines-core/1-22/tektoncd-pipeline/image-controller-1.22.yaml delete mode 100644 .konflux/openshift-pipelines-core/1-22/tektoncd-pipeline/image-entrypoint-1.22.yaml delete mode 100644 .konflux/openshift-pipelines-core/1-22/tektoncd-pipeline/image-events-1.22.yaml delete mode 100644 .konflux/openshift-pipelines-core/1-22/tektoncd-pipeline/image-nop-1.22.yaml delete mode 100644 .konflux/openshift-pipelines-core/1-22/tektoncd-pipeline/image-resolvers-1.22.yaml delete mode 100644 .konflux/openshift-pipelines-core/1-22/tektoncd-pipeline/image-sidecarlogresults-1.22.yaml delete mode 100644 .konflux/openshift-pipelines-core/1-22/tektoncd-pipeline/image-webhook-1.22.yaml delete mode 100644 .konflux/openshift-pipelines-core/1-22/tektoncd-pipeline/image-workingdirinit-1.22.yaml delete mode 100644 .konflux/openshift-pipelines-core/1-22/tektoncd-pruner/component-controller-1.22.yaml delete mode 100644 .konflux/openshift-pipelines-core/1-22/tektoncd-pruner/image-controller-1.22.yaml delete mode 100644 .konflux/openshift-pipelines-core/1-22/tektoncd-results/component-api-1.22.yaml delete mode 100644 .konflux/openshift-pipelines-core/1-22/tektoncd-results/component-retention-policy-agent-1.22.yaml delete mode 100644 .konflux/openshift-pipelines-core/1-22/tektoncd-results/component-watcher-1.22.yaml delete mode 100644 .konflux/openshift-pipelines-core/1-22/tektoncd-results/image-api-1.22.yaml delete mode 100644 .konflux/openshift-pipelines-core/1-22/tektoncd-results/image-retention-policy-agent-1.22.yaml delete mode 100644 .konflux/openshift-pipelines-core/1-22/tektoncd-results/image-watcher-1.22.yaml delete mode 100644 .konflux/openshift-pipelines-core/1-22/tektoncd-triggers/component-controller-1.22.yaml delete mode 100644 .konflux/openshift-pipelines-core/1-22/tektoncd-triggers/component-core-interceptors-1.22.yaml delete mode 100644 .konflux/openshift-pipelines-core/1-22/tektoncd-triggers/component-eventlistenersink-1.22.yaml delete mode 100644 .konflux/openshift-pipelines-core/1-22/tektoncd-triggers/component-webhook-1.22.yaml delete mode 100644 .konflux/openshift-pipelines-core/1-22/tektoncd-triggers/image-controller-1.22.yaml delete mode 100644 .konflux/openshift-pipelines-core/1-22/tektoncd-triggers/image-core-interceptors-1.22.yaml delete mode 100644 .konflux/openshift-pipelines-core/1-22/tektoncd-triggers/image-eventlistenersink-1.22.yaml delete mode 100644 .konflux/openshift-pipelines-core/1-22/tektoncd-triggers/image-webhook-1.22.yaml delete mode 100644 .konflux/openshift-pipelines-core/1-22/tests.yaml delete mode 100644 .konflux/openshift-pipelines-core/next/application.yaml delete mode 100644 .konflux/openshift-pipelines-core/next/console-plugin/component-console-plugin-next.yaml delete mode 100644 .konflux/openshift-pipelines-core/next/console-plugin/image-console-plugin-next.yaml delete mode 100644 .konflux/openshift-pipelines-core/next/p12n-manual-approval-gate/component-controller-next.yaml delete mode 100644 .konflux/openshift-pipelines-core/next/p12n-manual-approval-gate/component-webhook-next.yaml delete mode 100644 .konflux/openshift-pipelines-core/next/p12n-manual-approval-gate/image-controller-next.yaml delete mode 100644 .konflux/openshift-pipelines-core/next/p12n-manual-approval-gate/image-webhook-next.yaml delete mode 100644 .konflux/openshift-pipelines-core/next/p12n-multicluster-proxy-aae/component-proxy-server-next.yaml delete mode 100644 .konflux/openshift-pipelines-core/next/p12n-multicluster-proxy-aae/image-proxy-server-next.yaml delete mode 100644 .konflux/openshift-pipelines-core/next/p12n-syncer-service/component-controller-next.yaml delete mode 100644 .konflux/openshift-pipelines-core/next/p12n-syncer-service/image-controller-next.yaml delete mode 100644 .konflux/openshift-pipelines-core/next/p12n-tekton-assist/component-tekton-assist-next.yaml delete mode 100644 .konflux/openshift-pipelines-core/next/p12n-tekton-assist/image-tekton-assist-next.yaml delete mode 100644 .konflux/openshift-pipelines-core/next/p12n-tekton-caches/component-cache-next.yaml delete mode 100644 .konflux/openshift-pipelines-core/next/p12n-tekton-caches/image-cache-next.yaml delete mode 100644 .konflux/openshift-pipelines-core/next/pac-downstream/component-cli-next.yaml delete mode 100644 .konflux/openshift-pipelines-core/next/pac-downstream/component-controller-next.yaml delete mode 100644 .konflux/openshift-pipelines-core/next/pac-downstream/component-watcher-next.yaml delete mode 100644 .konflux/openshift-pipelines-core/next/pac-downstream/component-webhook-next.yaml delete mode 100644 .konflux/openshift-pipelines-core/next/pac-downstream/image-cli-next.yaml delete mode 100644 .konflux/openshift-pipelines-core/next/pac-downstream/image-controller-next.yaml delete mode 100644 .konflux/openshift-pipelines-core/next/pac-downstream/image-watcher-next.yaml delete mode 100644 .konflux/openshift-pipelines-core/next/pac-downstream/image-webhook-next.yaml delete mode 100644 .konflux/openshift-pipelines-core/next/release-plan.yaml delete mode 100644 .konflux/openshift-pipelines-core/next/tekton-kueue/component-kueue-next.yaml delete mode 100644 .konflux/openshift-pipelines-core/next/tekton-kueue/image-kueue-next.yaml delete mode 100644 .konflux/openshift-pipelines-core/next/tektoncd-chains/component-controller-next.yaml delete mode 100644 .konflux/openshift-pipelines-core/next/tektoncd-chains/image-controller-next.yaml delete mode 100644 .konflux/openshift-pipelines-core/next/tektoncd-git-clone/component-git-init-next.yaml delete mode 100644 .konflux/openshift-pipelines-core/next/tektoncd-git-clone/image-git-init-next.yaml delete mode 100644 .konflux/openshift-pipelines-core/next/tektoncd-hub/component-api-next.yaml delete mode 100644 .konflux/openshift-pipelines-core/next/tektoncd-hub/component-db-migration-next.yaml delete mode 100644 .konflux/openshift-pipelines-core/next/tektoncd-hub/component-ui-next.yaml delete mode 100644 .konflux/openshift-pipelines-core/next/tektoncd-hub/image-api-next.yaml delete mode 100644 .konflux/openshift-pipelines-core/next/tektoncd-hub/image-db-migration-next.yaml delete mode 100644 .konflux/openshift-pipelines-core/next/tektoncd-hub/image-ui-next.yaml delete mode 100644 .konflux/openshift-pipelines-core/next/tektoncd-pipeline/component-controller-next.yaml delete mode 100644 .konflux/openshift-pipelines-core/next/tektoncd-pipeline/component-entrypoint-next.yaml delete mode 100644 .konflux/openshift-pipelines-core/next/tektoncd-pipeline/component-events-next.yaml delete mode 100644 .konflux/openshift-pipelines-core/next/tektoncd-pipeline/component-nop-next.yaml delete mode 100644 .konflux/openshift-pipelines-core/next/tektoncd-pipeline/component-resolvers-next.yaml delete mode 100644 .konflux/openshift-pipelines-core/next/tektoncd-pipeline/component-sidecarlogresults-next.yaml delete mode 100644 .konflux/openshift-pipelines-core/next/tektoncd-pipeline/component-webhook-next.yaml delete mode 100644 .konflux/openshift-pipelines-core/next/tektoncd-pipeline/component-workingdirinit-next.yaml delete mode 100644 .konflux/openshift-pipelines-core/next/tektoncd-pipeline/image-controller-next.yaml delete mode 100644 .konflux/openshift-pipelines-core/next/tektoncd-pipeline/image-entrypoint-next.yaml delete mode 100644 .konflux/openshift-pipelines-core/next/tektoncd-pipeline/image-events-next.yaml delete mode 100644 .konflux/openshift-pipelines-core/next/tektoncd-pipeline/image-nop-next.yaml delete mode 100644 .konflux/openshift-pipelines-core/next/tektoncd-pipeline/image-resolvers-next.yaml delete mode 100644 .konflux/openshift-pipelines-core/next/tektoncd-pipeline/image-sidecarlogresults-next.yaml delete mode 100644 .konflux/openshift-pipelines-core/next/tektoncd-pipeline/image-webhook-next.yaml delete mode 100644 .konflux/openshift-pipelines-core/next/tektoncd-pipeline/image-workingdirinit-next.yaml delete mode 100644 .konflux/openshift-pipelines-core/next/tektoncd-pruner/component-controller-next.yaml delete mode 100644 .konflux/openshift-pipelines-core/next/tektoncd-pruner/image-controller-next.yaml delete mode 100644 .konflux/openshift-pipelines-core/next/tektoncd-results/component-api-next.yaml delete mode 100644 .konflux/openshift-pipelines-core/next/tektoncd-results/component-retention-policy-agent-next.yaml delete mode 100644 .konflux/openshift-pipelines-core/next/tektoncd-results/component-watcher-next.yaml delete mode 100644 .konflux/openshift-pipelines-core/next/tektoncd-results/image-api-next.yaml delete mode 100644 .konflux/openshift-pipelines-core/next/tektoncd-results/image-retention-policy-agent-next.yaml delete mode 100644 .konflux/openshift-pipelines-core/next/tektoncd-results/image-watcher-next.yaml delete mode 100644 .konflux/openshift-pipelines-core/next/tektoncd-triggers/component-controller-next.yaml delete mode 100644 .konflux/openshift-pipelines-core/next/tektoncd-triggers/component-core-interceptors-next.yaml delete mode 100644 .konflux/openshift-pipelines-core/next/tektoncd-triggers/component-eventlistenersink-next.yaml delete mode 100644 .konflux/openshift-pipelines-core/next/tektoncd-triggers/component-webhook-next.yaml delete mode 100644 .konflux/openshift-pipelines-core/next/tektoncd-triggers/image-controller-next.yaml delete mode 100644 .konflux/openshift-pipelines-core/next/tektoncd-triggers/image-core-interceptors-next.yaml delete mode 100644 .konflux/openshift-pipelines-core/next/tektoncd-triggers/image-eventlistenersink-next.yaml delete mode 100644 .konflux/openshift-pipelines-core/next/tektoncd-triggers/image-webhook-next.yaml delete mode 100644 .konflux/openshift-pipelines-core/next/tests.yaml delete mode 100644 .konflux/openshift-pipelines-core/role.yaml delete mode 100644 .konflux/openshift-pipelines-core/service-account.yaml delete mode 100644 .konflux/openshift-pipelines-index-4.16/1-22/application.yaml delete mode 100644 .konflux/openshift-pipelines-index-4.16/1-22/operator/component-index-4.16-1.22.yaml delete mode 100644 .konflux/openshift-pipelines-index-4.16/1-22/operator/image-index-4.16-1.22.yaml delete mode 100644 .konflux/openshift-pipelines-index-4.16/1-22/release-plan.yaml delete mode 100644 .konflux/openshift-pipelines-index-4.16/1-22/tests.yaml delete mode 100644 .konflux/openshift-pipelines-index-4.16/next/application.yaml delete mode 100644 .konflux/openshift-pipelines-index-4.16/next/operator/component-index-4.16-next.yaml delete mode 100644 .konflux/openshift-pipelines-index-4.16/next/operator/image-index-4.16-next.yaml delete mode 100644 .konflux/openshift-pipelines-index-4.16/next/release-plan.yaml delete mode 100644 .konflux/openshift-pipelines-index-4.16/next/tests.yaml delete mode 100644 .konflux/openshift-pipelines-index-4.16/role.yaml delete mode 100644 .konflux/openshift-pipelines-index-4.16/service-account.yaml delete mode 100644 .konflux/openshift-pipelines-index-4.17/1-22/application.yaml delete mode 100644 .konflux/openshift-pipelines-index-4.17/1-22/operator/component-index-4.17-1.22.yaml delete mode 100644 .konflux/openshift-pipelines-index-4.17/1-22/operator/image-index-4.17-1.22.yaml delete mode 100644 .konflux/openshift-pipelines-index-4.17/1-22/release-plan.yaml delete mode 100644 .konflux/openshift-pipelines-index-4.17/1-22/tests.yaml delete mode 100644 .konflux/openshift-pipelines-index-4.17/next/application.yaml delete mode 100644 .konflux/openshift-pipelines-index-4.17/next/operator/component-index-4.17-next.yaml delete mode 100644 .konflux/openshift-pipelines-index-4.17/next/operator/image-index-4.17-next.yaml delete mode 100644 .konflux/openshift-pipelines-index-4.17/next/release-plan.yaml delete mode 100644 .konflux/openshift-pipelines-index-4.17/next/tests.yaml delete mode 100644 .konflux/openshift-pipelines-index-4.17/role.yaml delete mode 100644 .konflux/openshift-pipelines-index-4.17/service-account.yaml delete mode 100644 .konflux/openshift-pipelines-index-4.18/1-22/application.yaml delete mode 100644 .konflux/openshift-pipelines-index-4.18/1-22/operator/component-index-4.18-1.22.yaml delete mode 100644 .konflux/openshift-pipelines-index-4.18/1-22/operator/image-index-4.18-1.22.yaml delete mode 100644 .konflux/openshift-pipelines-index-4.18/1-22/release-plan.yaml delete mode 100644 .konflux/openshift-pipelines-index-4.18/1-22/tests.yaml delete mode 100644 .konflux/openshift-pipelines-index-4.18/next/application.yaml delete mode 100644 .konflux/openshift-pipelines-index-4.18/next/operator/component-index-4.18-next.yaml delete mode 100644 .konflux/openshift-pipelines-index-4.18/next/operator/image-index-4.18-next.yaml delete mode 100644 .konflux/openshift-pipelines-index-4.18/next/release-plan.yaml delete mode 100644 .konflux/openshift-pipelines-index-4.18/next/tests.yaml delete mode 100644 .konflux/openshift-pipelines-index-4.18/role.yaml delete mode 100644 .konflux/openshift-pipelines-index-4.18/service-account.yaml delete mode 100644 .konflux/openshift-pipelines-index-4.19/1-22/application.yaml delete mode 100644 .konflux/openshift-pipelines-index-4.19/1-22/operator/component-index-4.19-1.22.yaml delete mode 100644 .konflux/openshift-pipelines-index-4.19/1-22/operator/image-index-4.19-1.22.yaml delete mode 100644 .konflux/openshift-pipelines-index-4.19/1-22/release-plan.yaml delete mode 100644 .konflux/openshift-pipelines-index-4.19/1-22/tests.yaml delete mode 100644 .konflux/openshift-pipelines-index-4.19/next/application.yaml delete mode 100644 .konflux/openshift-pipelines-index-4.19/next/operator/component-index-4.19-next.yaml delete mode 100644 .konflux/openshift-pipelines-index-4.19/next/operator/image-index-4.19-next.yaml delete mode 100644 .konflux/openshift-pipelines-index-4.19/next/release-plan.yaml delete mode 100644 .konflux/openshift-pipelines-index-4.19/next/tests.yaml delete mode 100644 .konflux/openshift-pipelines-index-4.19/role.yaml delete mode 100644 .konflux/openshift-pipelines-index-4.19/service-account.yaml delete mode 100644 .konflux/openshift-pipelines-index-4.20/1-22/application.yaml delete mode 100644 .konflux/openshift-pipelines-index-4.20/1-22/operator/component-index-4.20-1.22.yaml delete mode 100644 .konflux/openshift-pipelines-index-4.20/1-22/operator/image-index-4.20-1.22.yaml delete mode 100644 .konflux/openshift-pipelines-index-4.20/1-22/release-plan.yaml delete mode 100644 .konflux/openshift-pipelines-index-4.20/1-22/tests.yaml delete mode 100644 .konflux/openshift-pipelines-index-4.20/next/application.yaml delete mode 100644 .konflux/openshift-pipelines-index-4.20/next/operator/component-index-4.20-next.yaml delete mode 100644 .konflux/openshift-pipelines-index-4.20/next/operator/image-index-4.20-next.yaml delete mode 100644 .konflux/openshift-pipelines-index-4.20/next/release-plan.yaml delete mode 100644 .konflux/openshift-pipelines-index-4.20/next/tests.yaml delete mode 100644 .konflux/openshift-pipelines-index-4.20/role.yaml delete mode 100644 .konflux/openshift-pipelines-index-4.20/service-account.yaml delete mode 100644 .konflux/openshift-pipelines-operator/1-22/application.yaml delete mode 100644 .konflux/openshift-pipelines-operator/1-22/operator/component-bundle-1.22.yaml delete mode 100644 .konflux/openshift-pipelines-operator/1-22/operator/component-operator-1.22.yaml delete mode 100644 .konflux/openshift-pipelines-operator/1-22/operator/component-proxy-1.22.yaml delete mode 100644 .konflux/openshift-pipelines-operator/1-22/operator/component-webhook-1.22.yaml delete mode 100644 .konflux/openshift-pipelines-operator/1-22/operator/image-bundle-1.22.yaml delete mode 100644 .konflux/openshift-pipelines-operator/1-22/operator/image-operator-1.22.yaml delete mode 100644 .konflux/openshift-pipelines-operator/1-22/operator/image-proxy-1.22.yaml delete mode 100644 .konflux/openshift-pipelines-operator/1-22/operator/image-webhook-1.22.yaml delete mode 100644 .konflux/openshift-pipelines-operator/1-22/release-plan.yaml delete mode 100644 .konflux/openshift-pipelines-operator/1-22/tests.yaml delete mode 100644 .konflux/openshift-pipelines-operator/next/application.yaml delete mode 100644 .konflux/openshift-pipelines-operator/next/operator/component-bundle-next.yaml delete mode 100644 .konflux/openshift-pipelines-operator/next/operator/component-operator-next.yaml delete mode 100644 .konflux/openshift-pipelines-operator/next/operator/component-proxy-next.yaml delete mode 100644 .konflux/openshift-pipelines-operator/next/operator/component-webhook-next.yaml delete mode 100644 .konflux/openshift-pipelines-operator/next/operator/image-bundle-next.yaml delete mode 100644 .konflux/openshift-pipelines-operator/next/operator/image-operator-next.yaml delete mode 100644 .konflux/openshift-pipelines-operator/next/operator/image-proxy-next.yaml delete mode 100644 .konflux/openshift-pipelines-operator/next/operator/image-webhook-next.yaml delete mode 100644 .konflux/openshift-pipelines-operator/next/release-plan.yaml delete mode 100644 .konflux/openshift-pipelines-operator/next/tests.yaml delete mode 100644 .konflux/openshift-pipelines-operator/role.yaml delete mode 100644 .konflux/openshift-pipelines-operator/service-account.yaml diff --git a/.konflux/1-22/openshift-pipelines-core/p12n-multicluster-proxy-aae/component-proxy-server-1.22.yaml b/.konflux/1-22/openshift-pipelines-core/p12n-multicluster-proxy-aae/component-proxy-server-1.22.yaml deleted file mode 100644 index dce43ab8..00000000 --- a/.konflux/1-22/openshift-pipelines-core/p12n-multicluster-proxy-aae/component-proxy-server-1.22.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: p12n-multicluster-proxy-aae-1-22-proxy-server -spec: - componentName: proxy-server - application: openshift-pipelines-core-1-22 - build-nudges-ref: - - operator-1-22-bundle - source: - git: - url: https://github.com/openshift-pipelines/p12n-multicluster-proxy-aae.git - dockerfileUrl: .konflux/dockerfiles/proxy-server.Dockerfile - revision: release-v1.22.x diff --git a/.konflux/1-22/openshift-pipelines-core/p12n-multicluster-proxy-aae/image-controller-1.22.yaml b/.konflux/1-22/openshift-pipelines-core/p12n-multicluster-proxy-aae/image-controller-1.22.yaml deleted file mode 100644 index 83d550f8..00000000 --- a/.konflux/1-22/openshift-pipelines-core/p12n-multicluster-proxy-aae/image-controller-1.22.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pipelines-multicluster-proxy-aae-proxy-server-rhel9 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: p12n-multicluster-proxy-aae-1-22-proxy-server - appstudio.redhat.com/application: openshift-pipelines-core-1-22 -spec: - image: - name: pipelines-multicluster-proxy-aae-proxy-server-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino diff --git a/.konflux/1-22/openshift-pipelines-core/p12n-syncer-service/component-controller-1.22.yaml b/.konflux/1-22/openshift-pipelines-core/p12n-syncer-service/component-controller-1.22.yaml deleted file mode 100644 index bbf891eb..00000000 --- a/.konflux/1-22/openshift-pipelines-core/p12n-syncer-service/component-controller-1.22.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: p12n-syncer-service-1-22-controller -spec: - componentName: controller - application: openshift-pipelines-core-1-22 - build-nudges-ref: - - operator-1-22-bundle - source: - git: - url: https://github.com/openshift-pipelines/p12n-syncer-service.git - dockerfileUrl: .konflux/dockerfiles/controller.Dockerfile - revision: release-v1.22.x diff --git a/.konflux/1-22/openshift-pipelines-core/p12n-syncer-service/image-controller-1.22.yaml b/.konflux/1-22/openshift-pipelines-core/p12n-syncer-service/image-controller-1.22.yaml deleted file mode 100644 index 58e8cd8f..00000000 --- a/.konflux/1-22/openshift-pipelines-core/p12n-syncer-service/image-controller-1.22.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pipelines-syncer-service-controller-rhel9 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: p12n-syncer-service-1-22-controller - appstudio.redhat.com/application: openshift-pipelines-core-1-22 -spec: - image: - name: pipelines-syncer-service-controller-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino diff --git a/.konflux/next/openshift-pipelines-core/p12n-multicluster-proxy-aae/component-proxy-server-next.yaml b/.konflux/next/openshift-pipelines-core/p12n-multicluster-proxy-aae/component-proxy-server-next.yaml deleted file mode 100644 index 1ca2945c..00000000 --- a/.konflux/next/openshift-pipelines-core/p12n-multicluster-proxy-aae/component-proxy-server-next.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: p12n-multicluster-proxy-aae-next-proxy-server -spec: - componentName: proxy-server - application: openshift-pipelines-core-next - build-nudges-ref: - - operator-next-bundle - source: - git: - url: https://github.com/openshift-pipelines/p12n-multicluster-proxy-aae.git - dockerfileUrl: .konflux/dockerfiles/proxy-server.Dockerfile - revision: next diff --git a/.konflux/next/openshift-pipelines-core/p12n-multicluster-proxy-aae/image-controller-next.yaml b/.konflux/next/openshift-pipelines-core/p12n-multicluster-proxy-aae/image-controller-next.yaml deleted file mode 100644 index 22bc8696..00000000 --- a/.konflux/next/openshift-pipelines-core/p12n-multicluster-proxy-aae/image-controller-next.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pipelines-multicluster-proxy-aae-proxy-server-rhel9 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: p12n-multicluster-proxy-aae-next-proxy-server - appstudio.redhat.com/application: openshift-pipelines-core-next -spec: - image: - name: pipelines-multicluster-proxy-aae-proxy-server-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino diff --git a/.konflux/next/openshift-pipelines-core/p12n-syncer-service/component-controller-next.yaml b/.konflux/next/openshift-pipelines-core/p12n-syncer-service/component-controller-next.yaml deleted file mode 100644 index a9f526f2..00000000 --- a/.konflux/next/openshift-pipelines-core/p12n-syncer-service/component-controller-next.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: p12n-syncer-service-next-controller -spec: - componentName: controller - application: openshift-pipelines-core-next - build-nudges-ref: - - operator-next-bundle - source: - git: - url: https://github.com/openshift-pipelines/p12n-syncer-service.git - dockerfileUrl: .konflux/dockerfiles/controller.Dockerfile - revision: next diff --git a/.konflux/next/openshift-pipelines-core/p12n-syncer-service/image-controller-next.yaml b/.konflux/next/openshift-pipelines-core/p12n-syncer-service/image-controller-next.yaml deleted file mode 100644 index 8c5768f0..00000000 --- a/.konflux/next/openshift-pipelines-core/p12n-syncer-service/image-controller-next.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pipelines-syncer-service-controller-rhel9 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: p12n-syncer-service-next-controller - appstudio.redhat.com/application: openshift-pipelines-core-next -spec: - image: - name: pipelines-syncer-service-controller-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino diff --git a/.konflux/openshift-pipelines-cli/1-22/application.yaml b/.konflux/openshift-pipelines-cli/1-22/application.yaml deleted file mode 100644 index 180d1429..00000000 --- a/.konflux/openshift-pipelines-cli/1-22/application.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-cli by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Application -metadata: - name: openshift-pipelines-cli-1-22 -spec: - displayName: openshift-pipelines-cli-1-22 diff --git a/.konflux/openshift-pipelines-cli/1-22/p12n-opc/component-opc-1.22.yaml b/.konflux/openshift-pipelines-cli/1-22/p12n-opc/component-opc-1.22.yaml deleted file mode 100644 index 5e8eba91..00000000 --- a/.konflux/openshift-pipelines-cli/1-22/p12n-opc/component-opc-1.22.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-cli by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: p12n-opc-1-22-opc -spec: - componentName: opc - application: openshift-pipelines-cli-1-22 - build-nudges-ref: - - operator-1-22-bundle - source: - git: - url: https://github.com/openshift-pipelines/p12n-opc.git - dockerfileUrl: .konflux/dockerfiles/opc.Dockerfile - revision: release-v1.22.x diff --git a/.konflux/openshift-pipelines-cli/1-22/p12n-opc/image-opc-1.22.yaml b/.konflux/openshift-pipelines-cli/1-22/p12n-opc/image-opc-1.22.yaml deleted file mode 100644 index 2bdc5e79..00000000 --- a/.konflux/openshift-pipelines-cli/1-22/p12n-opc/image-opc-1.22.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-cli by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: p12n-opc-1-22-opc - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: p12n-opc-1-22-opc - appstudio.redhat.com/application: openshift-pipelines-cli-1-22 -spec: - image: - name: pipelines-opc-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-cli/1-22/release-plan.yaml b/.konflux/openshift-pipelines-cli/1-22/release-plan.yaml deleted file mode 100644 index 1a207a6b..00000000 --- a/.konflux/openshift-pipelines-cli/1-22/release-plan.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-cli by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ReleasePlan -metadata: - labels: - release.appstudio.openshift.io/auto-release: "true" - release.appstudio.openshift.io/standing-attribution: 'true' - name: openshift-pipelines-cli-1-22-rp -spec: - application: openshift-pipelines-cli-1-22 - tenantPipeline: - serviceAccountName: release-registry-openshift-pipelines-cli - pipelineRef: - resolver: git - params: - - name: url - value: https://github.com/openshift-pipelines/hack.git - - name: revision - # value: release-v1.22.x - value: main - - name: pathInRepo - value: pipelines/release-pipeline.yaml - params: - - name: release_version - value: "1.22.0" - - name: release_to_github - value: "false" diff --git a/.konflux/openshift-pipelines-cli/1-22/serve-tkn-cli/component-serve-tkn-cli-1.22.yaml b/.konflux/openshift-pipelines-cli/1-22/serve-tkn-cli/component-serve-tkn-cli-1.22.yaml deleted file mode 100644 index 31b4e842..00000000 --- a/.konflux/openshift-pipelines-cli/1-22/serve-tkn-cli/component-serve-tkn-cli-1.22.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-cli by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: serve-tkn-cli-1-22-serve-tkn-cli -spec: - componentName: serve-tkn-cli - application: openshift-pipelines-cli-1-22 - build-nudges-ref: - - operator-1-22-bundle - source: - git: - url: https://github.com/openshift-pipelines/serve-tkn-cli.git - dockerfileUrl: .konflux/dockerfiles/serve-tkn-cli.Dockerfile - revision: release-v1.22.x diff --git a/.konflux/openshift-pipelines-cli/1-22/serve-tkn-cli/image-serve-tkn-cli-1.22.yaml b/.konflux/openshift-pipelines-cli/1-22/serve-tkn-cli/image-serve-tkn-cli-1.22.yaml deleted file mode 100644 index 9be6d5b7..00000000 --- a/.konflux/openshift-pipelines-cli/1-22/serve-tkn-cli/image-serve-tkn-cli-1.22.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-cli by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: serve-tkn-cli-1-22-serve-tkn-cli - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: serve-tkn-cli-1-22-serve-tkn-cli - appstudio.redhat.com/application: openshift-pipelines-cli-1-22 -spec: - image: - name: serve-tkn-cli/pipelines-serve-tkn-cli-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-cli/1-22/tektoncd-cli/component-tkn-1.22.yaml b/.konflux/openshift-pipelines-cli/1-22/tektoncd-cli/component-tkn-1.22.yaml deleted file mode 100644 index 6e0cc5a7..00000000 --- a/.konflux/openshift-pipelines-cli/1-22/tektoncd-cli/component-tkn-1.22.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-cli by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: tektoncd-cli-1-22-tkn -spec: - componentName: tkn - application: openshift-pipelines-cli-1-22 - build-nudges-ref: - - operator-1-22-bundle - source: - git: - url: https://github.com/openshift-pipelines/tektoncd-cli.git - dockerfileUrl: .konflux/dockerfiles/tkn.Dockerfile - revision: release-v1.22.x diff --git a/.konflux/openshift-pipelines-cli/1-22/tektoncd-cli/image-tkn-1.22.yaml b/.konflux/openshift-pipelines-cli/1-22/tektoncd-cli/image-tkn-1.22.yaml deleted file mode 100644 index 59f88563..00000000 --- a/.konflux/openshift-pipelines-cli/1-22/tektoncd-cli/image-tkn-1.22.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-cli by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: tektoncd-cli-1-22-tkn - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: tektoncd-cli-1-22-tkn - appstudio.redhat.com/application: openshift-pipelines-cli-1-22 -spec: - image: - name: pipelines-cli-tkn-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-cli/1-22/tests.yaml b/.konflux/openshift-pipelines-cli/1-22/tests.yaml deleted file mode 100644 index f3930364..00000000 --- a/.konflux/openshift-pipelines-cli/1-22/tests.yaml +++ /dev/null @@ -1,27 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-cli by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1beta2 -kind: IntegrationTestScenario -metadata: - name: openshift-pipelines-cli-1-22-enterprise-contract -spec: - application: openshift-pipelines-cli-1-22 - contexts: - - description: execute the integration test for a component - name: component - params: - - name: POLICY_CONFIGURATION - value: tekton-ecosystem-tenant/tekton-ecosystem-tenant-containers - - name: TIMEOUT - value: "15m0s" - - name: SINGLE_COMPONENT - value: "true" - resolverRef: - params: - - name: url - value: "https://github.com/konflux-ci/build-definitions" - - name: revision - value: main - - name: pathInRepo - value: pipelines/enterprise-contract.yaml - resolver: git diff --git a/.konflux/openshift-pipelines-cli/next/application.yaml b/.konflux/openshift-pipelines-cli/next/application.yaml deleted file mode 100644 index 1945e306..00000000 --- a/.konflux/openshift-pipelines-cli/next/application.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-cli by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Application -metadata: - name: openshift-pipelines-cli-next -spec: - displayName: openshift-pipelines-cli-next diff --git a/.konflux/openshift-pipelines-cli/next/p12n-opc/component-opc-next.yaml b/.konflux/openshift-pipelines-cli/next/p12n-opc/component-opc-next.yaml deleted file mode 100644 index 08a6146c..00000000 --- a/.konflux/openshift-pipelines-cli/next/p12n-opc/component-opc-next.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-cli by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: p12n-opc-next-opc -spec: - componentName: opc - application: openshift-pipelines-cli-next - build-nudges-ref: - - operator-next-bundle - source: - git: - url: https://github.com/openshift-pipelines/p12n-opc.git - dockerfileUrl: .konflux/dockerfiles/opc.Dockerfile - revision: next diff --git a/.konflux/openshift-pipelines-cli/next/p12n-opc/image-opc-next.yaml b/.konflux/openshift-pipelines-cli/next/p12n-opc/image-opc-next.yaml deleted file mode 100644 index d138e707..00000000 --- a/.konflux/openshift-pipelines-cli/next/p12n-opc/image-opc-next.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-cli by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: p12n-opc-next-opc - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: p12n-opc-next-opc - appstudio.redhat.com/application: openshift-pipelines-cli-next -spec: - image: - name: pipelines-opc-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-cli/next/release-plan.yaml b/.konflux/openshift-pipelines-cli/next/release-plan.yaml deleted file mode 100644 index 3d3347e8..00000000 --- a/.konflux/openshift-pipelines-cli/next/release-plan.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-cli by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ReleasePlan -metadata: - labels: - release.appstudio.openshift.io/auto-release: "true" - release.appstudio.openshift.io/standing-attribution: 'true' - name: openshift-pipelines-cli-next-rp -spec: - application: openshift-pipelines-cli-next - tenantPipeline: - serviceAccountName: release-registry-openshift-pipelines-cli - pipelineRef: - resolver: git - params: - - name: url - value: https://github.com/openshift-pipelines/hack.git - - name: revision - # value: next - value: main - - name: pathInRepo - value: pipelines/release-pipeline.yaml - params: - - name: release_version - value: "next" - - name: release_to_github - value: "false" diff --git a/.konflux/openshift-pipelines-cli/next/serve-tkn-cli/component-serve-tkn-cli-next.yaml b/.konflux/openshift-pipelines-cli/next/serve-tkn-cli/component-serve-tkn-cli-next.yaml deleted file mode 100644 index 02c700b0..00000000 --- a/.konflux/openshift-pipelines-cli/next/serve-tkn-cli/component-serve-tkn-cli-next.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-cli by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: serve-tkn-cli-next-serve-tkn-cli -spec: - componentName: serve-tkn-cli - application: openshift-pipelines-cli-next - build-nudges-ref: - - operator-next-bundle - source: - git: - url: https://github.com/openshift-pipelines/serve-tkn-cli.git - dockerfileUrl: .konflux/dockerfiles/serve-tkn-cli.Dockerfile - revision: next diff --git a/.konflux/openshift-pipelines-cli/next/serve-tkn-cli/image-serve-tkn-cli-next.yaml b/.konflux/openshift-pipelines-cli/next/serve-tkn-cli/image-serve-tkn-cli-next.yaml deleted file mode 100644 index fa1cf5a4..00000000 --- a/.konflux/openshift-pipelines-cli/next/serve-tkn-cli/image-serve-tkn-cli-next.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-cli by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: serve-tkn-cli-next-serve-tkn-cli - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: serve-tkn-cli-next-serve-tkn-cli - appstudio.redhat.com/application: openshift-pipelines-cli-next -spec: - image: - name: serve-tkn-cli/pipelines-serve-tkn-cli-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-cli/next/tektoncd-cli/component-tkn-next.yaml b/.konflux/openshift-pipelines-cli/next/tektoncd-cli/component-tkn-next.yaml deleted file mode 100644 index 1d579862..00000000 --- a/.konflux/openshift-pipelines-cli/next/tektoncd-cli/component-tkn-next.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-cli by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: tektoncd-cli-next-tkn -spec: - componentName: tkn - application: openshift-pipelines-cli-next - build-nudges-ref: - - operator-next-bundle - source: - git: - url: https://github.com/openshift-pipelines/tektoncd-cli.git - dockerfileUrl: .konflux/dockerfiles/tkn.Dockerfile - revision: next diff --git a/.konflux/openshift-pipelines-cli/next/tektoncd-cli/image-tkn-next.yaml b/.konflux/openshift-pipelines-cli/next/tektoncd-cli/image-tkn-next.yaml deleted file mode 100644 index 2c2619da..00000000 --- a/.konflux/openshift-pipelines-cli/next/tektoncd-cli/image-tkn-next.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-cli by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: tektoncd-cli-next-tkn - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: tektoncd-cli-next-tkn - appstudio.redhat.com/application: openshift-pipelines-cli-next -spec: - image: - name: pipelines-cli-tkn-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-cli/next/tests.yaml b/.konflux/openshift-pipelines-cli/next/tests.yaml deleted file mode 100644 index 773709a8..00000000 --- a/.konflux/openshift-pipelines-cli/next/tests.yaml +++ /dev/null @@ -1,27 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-cli by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1beta2 -kind: IntegrationTestScenario -metadata: - name: openshift-pipelines-cli-next-enterprise-contract -spec: - application: openshift-pipelines-cli-next - contexts: - - description: execute the integration test for a component - name: component - params: - - name: POLICY_CONFIGURATION - value: tekton-ecosystem-tenant/tekton-ecosystem-tenant-containers - - name: TIMEOUT - value: "15m0s" - - name: SINGLE_COMPONENT - value: "true" - resolverRef: - params: - - name: url - value: "https://github.com/konflux-ci/build-definitions" - - name: revision - value: main - - name: pathInRepo - value: pipelines/enterprise-contract.yaml - resolver: git diff --git a/.konflux/openshift-pipelines-cli/role.yaml b/.konflux/openshift-pipelines-cli/role.yaml deleted file mode 100644 index 641db9e8..00000000 --- a/.konflux/openshift-pipelines-cli/role.yaml +++ /dev/null @@ -1,14 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-cli by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: rbac.authorization.k8s.io/v1 -kind: RoleBinding -metadata: - name: release-plan-rolebinding-openshift-pipelines-cli -subjects: - - kind: ServiceAccount - name: release-registry-openshift-pipelines-cli - apiGroup: "" -roleRef: - kind: ClusterRole - name: konflux-releaser-bot-actions - apiGroup: rbac.authorization.k8s.io \ No newline at end of file diff --git a/.konflux/openshift-pipelines-cli/service-account.yaml b/.konflux/openshift-pipelines-cli/service-account.yaml deleted file mode 100644 index 3258493c..00000000 --- a/.konflux/openshift-pipelines-cli/service-account.yaml +++ /dev/null @@ -1,10 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-cli by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: v1 -imagePullSecrets: - - name: release-registry-openshift-pipelines-quay -kind: ServiceAccount -metadata: - name: release-registry-openshift-pipelines-cli -secrets: - - name: release-registry-openshift-pipelines-quay \ No newline at end of file diff --git a/.konflux/openshift-pipelines-core/1-22/application.yaml b/.konflux/openshift-pipelines-core/1-22/application.yaml deleted file mode 100644 index 71a3680a..00000000 --- a/.konflux/openshift-pipelines-core/1-22/application.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Application -metadata: - name: openshift-pipelines-core-1-22 -spec: - displayName: openshift-pipelines-core-1-22 diff --git a/.konflux/openshift-pipelines-core/1-22/console-plugin/component-console-plugin-1.22.yaml b/.konflux/openshift-pipelines-core/1-22/console-plugin/component-console-plugin-1.22.yaml deleted file mode 100644 index 21162e18..00000000 --- a/.konflux/openshift-pipelines-core/1-22/console-plugin/component-console-plugin-1.22.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: console-plugin-1-22-console-plugin -spec: - componentName: console-plugin - application: openshift-pipelines-core-1-22 - build-nudges-ref: - - operator-1-22-bundle - source: - git: - url: https://github.com/openshift-pipelines/console-plugin.git - dockerfileUrl: .konflux/dockerfiles/console-plugin.Dockerfile - revision: release-v1.22.x diff --git a/.konflux/openshift-pipelines-core/1-22/console-plugin/image-console-plugin-1.22.yaml b/.konflux/openshift-pipelines-core/1-22/console-plugin/image-console-plugin-1.22.yaml deleted file mode 100644 index 31c1223b..00000000 --- a/.konflux/openshift-pipelines-core/1-22/console-plugin/image-console-plugin-1.22.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: console-plugin-1-22-console-plugin - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: console-plugin-1-22-console-plugin - appstudio.redhat.com/application: openshift-pipelines-core-1-22 -spec: - image: - name: console-plugin/pipelines-console-plugin-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-core/1-22/p12n-manual-approval-gate/component-controller-1.22.yaml b/.konflux/openshift-pipelines-core/1-22/p12n-manual-approval-gate/component-controller-1.22.yaml deleted file mode 100644 index c31b6974..00000000 --- a/.konflux/openshift-pipelines-core/1-22/p12n-manual-approval-gate/component-controller-1.22.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: p12n-manual-approval-gate-1-22-controller -spec: - componentName: controller - application: openshift-pipelines-core-1-22 - build-nudges-ref: - - operator-1-22-bundle - source: - git: - url: https://github.com/openshift-pipelines/p12n-manual-approval-gate.git - dockerfileUrl: .konflux/dockerfiles/controller.Dockerfile - revision: release-v1.22.x diff --git a/.konflux/openshift-pipelines-core/1-22/p12n-manual-approval-gate/component-webhook-1.22.yaml b/.konflux/openshift-pipelines-core/1-22/p12n-manual-approval-gate/component-webhook-1.22.yaml deleted file mode 100644 index 80556fac..00000000 --- a/.konflux/openshift-pipelines-core/1-22/p12n-manual-approval-gate/component-webhook-1.22.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: p12n-manual-approval-gate-1-22-webhook -spec: - componentName: webhook - application: openshift-pipelines-core-1-22 - build-nudges-ref: - - operator-1-22-bundle - source: - git: - url: https://github.com/openshift-pipelines/p12n-manual-approval-gate.git - dockerfileUrl: .konflux/dockerfiles/webhook.Dockerfile - revision: release-v1.22.x diff --git a/.konflux/openshift-pipelines-core/1-22/p12n-manual-approval-gate/image-controller-1.22.yaml b/.konflux/openshift-pipelines-core/1-22/p12n-manual-approval-gate/image-controller-1.22.yaml deleted file mode 100644 index a7ebc424..00000000 --- a/.konflux/openshift-pipelines-core/1-22/p12n-manual-approval-gate/image-controller-1.22.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: p12n-manual-approval-gate-1-22-controller - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: p12n-manual-approval-gate-1-22-controller - appstudio.redhat.com/application: openshift-pipelines-core-1-22 -spec: - image: - name: pipelines-manual-approval-gate-controller-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-core/1-22/p12n-manual-approval-gate/image-webhook-1.22.yaml b/.konflux/openshift-pipelines-core/1-22/p12n-manual-approval-gate/image-webhook-1.22.yaml deleted file mode 100644 index c130a2ad..00000000 --- a/.konflux/openshift-pipelines-core/1-22/p12n-manual-approval-gate/image-webhook-1.22.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: p12n-manual-approval-gate-1-22-webhook - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: p12n-manual-approval-gate-1-22-webhook - appstudio.redhat.com/application: openshift-pipelines-core-1-22 -spec: - image: - name: pipelines-manual-approval-gate-webhook-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-core/1-22/p12n-multicluster-proxy-aae/component-proxy-server-1.22.yaml b/.konflux/openshift-pipelines-core/1-22/p12n-multicluster-proxy-aae/component-proxy-server-1.22.yaml deleted file mode 100644 index 858e8864..00000000 --- a/.konflux/openshift-pipelines-core/1-22/p12n-multicluster-proxy-aae/component-proxy-server-1.22.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: p12n-multicluster-proxy-aae-1-22-proxy-server -spec: - componentName: proxy-server - application: openshift-pipelines-core-1-22 - build-nudges-ref: - - operator-1-22-bundle - source: - git: - url: https://github.com/openshift-pipelines/p12n-multicluster-proxy-aae.git - dockerfileUrl: .konflux/dockerfiles/proxy-server.Dockerfile - revision: release-v1.22.x diff --git a/.konflux/openshift-pipelines-core/1-22/p12n-multicluster-proxy-aae/image-proxy-server-1.22.yaml b/.konflux/openshift-pipelines-core/1-22/p12n-multicluster-proxy-aae/image-proxy-server-1.22.yaml deleted file mode 100644 index 5c40d729..00000000 --- a/.konflux/openshift-pipelines-core/1-22/p12n-multicluster-proxy-aae/image-proxy-server-1.22.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: p12n-multicluster-proxy-aae-1-22-proxy-server - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: p12n-multicluster-proxy-aae-1-22-proxy-server - appstudio.redhat.com/application: openshift-pipelines-core-1-22 -spec: - image: - name: pipelines-multicluster-proxy-aae-proxy-server-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-core/1-22/p12n-syncer-service/component-controller-1.22.yaml b/.konflux/openshift-pipelines-core/1-22/p12n-syncer-service/component-controller-1.22.yaml deleted file mode 100644 index bbf891eb..00000000 --- a/.konflux/openshift-pipelines-core/1-22/p12n-syncer-service/component-controller-1.22.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: p12n-syncer-service-1-22-controller -spec: - componentName: controller - application: openshift-pipelines-core-1-22 - build-nudges-ref: - - operator-1-22-bundle - source: - git: - url: https://github.com/openshift-pipelines/p12n-syncer-service.git - dockerfileUrl: .konflux/dockerfiles/controller.Dockerfile - revision: release-v1.22.x diff --git a/.konflux/openshift-pipelines-core/1-22/p12n-syncer-service/image-controller-1.22.yaml b/.konflux/openshift-pipelines-core/1-22/p12n-syncer-service/image-controller-1.22.yaml deleted file mode 100644 index b4334be8..00000000 --- a/.konflux/openshift-pipelines-core/1-22/p12n-syncer-service/image-controller-1.22.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: p12n-syncer-service-1-22-controller - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: p12n-syncer-service-1-22-controller - appstudio.redhat.com/application: openshift-pipelines-core-1-22 -spec: - image: - name: pipelines-syncer-service-controller-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-core/1-22/p12n-tekton-assist/component-tekton-assist-1.22.yaml b/.konflux/openshift-pipelines-core/1-22/p12n-tekton-assist/component-tekton-assist-1.22.yaml deleted file mode 100644 index f3d8bbc1..00000000 --- a/.konflux/openshift-pipelines-core/1-22/p12n-tekton-assist/component-tekton-assist-1.22.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: p12n-tekton-assist-1-22-tekton-assist -spec: - componentName: tekton-assist - application: openshift-pipelines-core-1-22 - build-nudges-ref: - - operator-1-22-bundle - source: - git: - url: https://github.com/openshift-pipelines/p12n-tekton-assist.git - dockerfileUrl: .konflux/dockerfiles/tekton-assist.Dockerfile - revision: release-v1.22.x diff --git a/.konflux/openshift-pipelines-core/1-22/p12n-tekton-assist/image-tekton-assist-1.22.yaml b/.konflux/openshift-pipelines-core/1-22/p12n-tekton-assist/image-tekton-assist-1.22.yaml deleted file mode 100644 index f43928ff..00000000 --- a/.konflux/openshift-pipelines-core/1-22/p12n-tekton-assist/image-tekton-assist-1.22.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: p12n-tekton-assist-1-22-tekton-assist - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: p12n-tekton-assist-1-22-tekton-assist - appstudio.redhat.com/application: openshift-pipelines-core-1-22 -spec: - image: - name: pipelines-tekton-assist-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-core/1-22/p12n-tekton-caches/component-cache-1.22.yaml b/.konflux/openshift-pipelines-core/1-22/p12n-tekton-caches/component-cache-1.22.yaml deleted file mode 100644 index 0a29142b..00000000 --- a/.konflux/openshift-pipelines-core/1-22/p12n-tekton-caches/component-cache-1.22.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: p12n-tekton-caches-1-22-cache -spec: - componentName: cache - application: openshift-pipelines-core-1-22 - build-nudges-ref: - - operator-1-22-bundle - source: - git: - url: https://github.com/openshift-pipelines/p12n-tekton-caches.git - dockerfileUrl: .konflux/dockerfiles/cache.Dockerfile - revision: release-v1.22.x diff --git a/.konflux/openshift-pipelines-core/1-22/p12n-tekton-caches/image-cache-1.22.yaml b/.konflux/openshift-pipelines-core/1-22/p12n-tekton-caches/image-cache-1.22.yaml deleted file mode 100644 index 15fa889f..00000000 --- a/.konflux/openshift-pipelines-core/1-22/p12n-tekton-caches/image-cache-1.22.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: p12n-tekton-caches-1-22-cache - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: p12n-tekton-caches-1-22-cache - appstudio.redhat.com/application: openshift-pipelines-core-1-22 -spec: - image: - name: pipelines-cache-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-core/1-22/pac-downstream/component-cli-1.22.yaml b/.konflux/openshift-pipelines-core/1-22/pac-downstream/component-cli-1.22.yaml deleted file mode 100644 index b7636a04..00000000 --- a/.konflux/openshift-pipelines-core/1-22/pac-downstream/component-cli-1.22.yaml +++ /dev/null @@ -1,19 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: pac-downstream-1-22-cli -spec: - componentName: cli - application: openshift-pipelines-core-1-22 - build-nudges-ref: - - operator-1-22-bundle - - tektoncd-cli-1-22-tkn - source: - git: - url: https://github.com/openshift-pipelines/pac-downstream.git - dockerfileUrl: .konflux/dockerfiles/cli.Dockerfile - revision: release-v1.22.x diff --git a/.konflux/openshift-pipelines-core/1-22/pac-downstream/component-controller-1.22.yaml b/.konflux/openshift-pipelines-core/1-22/pac-downstream/component-controller-1.22.yaml deleted file mode 100644 index a6586722..00000000 --- a/.konflux/openshift-pipelines-core/1-22/pac-downstream/component-controller-1.22.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: pac-downstream-1-22-controller -spec: - componentName: controller - application: openshift-pipelines-core-1-22 - build-nudges-ref: - - operator-1-22-bundle - source: - git: - url: https://github.com/openshift-pipelines/pac-downstream.git - dockerfileUrl: .konflux/dockerfiles/controller.Dockerfile - revision: release-v1.22.x diff --git a/.konflux/openshift-pipelines-core/1-22/pac-downstream/component-watcher-1.22.yaml b/.konflux/openshift-pipelines-core/1-22/pac-downstream/component-watcher-1.22.yaml deleted file mode 100644 index 878561fb..00000000 --- a/.konflux/openshift-pipelines-core/1-22/pac-downstream/component-watcher-1.22.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: pac-downstream-1-22-watcher -spec: - componentName: watcher - application: openshift-pipelines-core-1-22 - build-nudges-ref: - - operator-1-22-bundle - source: - git: - url: https://github.com/openshift-pipelines/pac-downstream.git - dockerfileUrl: .konflux/dockerfiles/watcher.Dockerfile - revision: release-v1.22.x diff --git a/.konflux/openshift-pipelines-core/1-22/pac-downstream/component-webhook-1.22.yaml b/.konflux/openshift-pipelines-core/1-22/pac-downstream/component-webhook-1.22.yaml deleted file mode 100644 index 24166273..00000000 --- a/.konflux/openshift-pipelines-core/1-22/pac-downstream/component-webhook-1.22.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: pac-downstream-1-22-webhook -spec: - componentName: webhook - application: openshift-pipelines-core-1-22 - build-nudges-ref: - - operator-1-22-bundle - source: - git: - url: https://github.com/openshift-pipelines/pac-downstream.git - dockerfileUrl: .konflux/dockerfiles/webhook.Dockerfile - revision: release-v1.22.x diff --git a/.konflux/openshift-pipelines-core/1-22/pac-downstream/image-cli-1.22.yaml b/.konflux/openshift-pipelines-core/1-22/pac-downstream/image-cli-1.22.yaml deleted file mode 100644 index 177df891..00000000 --- a/.konflux/openshift-pipelines-core/1-22/pac-downstream/image-cli-1.22.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pac-downstream-1-22-cli - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: pac-downstream-1-22-cli - appstudio.redhat.com/application: openshift-pipelines-core-1-22 -spec: - image: - name: pipelines-pipelines-as-code-cli-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-core/1-22/pac-downstream/image-controller-1.22.yaml b/.konflux/openshift-pipelines-core/1-22/pac-downstream/image-controller-1.22.yaml deleted file mode 100644 index db4855c8..00000000 --- a/.konflux/openshift-pipelines-core/1-22/pac-downstream/image-controller-1.22.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pac-downstream-1-22-controller - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: pac-downstream-1-22-controller - appstudio.redhat.com/application: openshift-pipelines-core-1-22 -spec: - image: - name: pipelines-pipelines-as-code-controller-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-core/1-22/pac-downstream/image-watcher-1.22.yaml b/.konflux/openshift-pipelines-core/1-22/pac-downstream/image-watcher-1.22.yaml deleted file mode 100644 index 24644751..00000000 --- a/.konflux/openshift-pipelines-core/1-22/pac-downstream/image-watcher-1.22.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pac-downstream-1-22-watcher - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: pac-downstream-1-22-watcher - appstudio.redhat.com/application: openshift-pipelines-core-1-22 -spec: - image: - name: pipelines-pipelines-as-code-watcher-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-core/1-22/pac-downstream/image-webhook-1.22.yaml b/.konflux/openshift-pipelines-core/1-22/pac-downstream/image-webhook-1.22.yaml deleted file mode 100644 index 98bf878c..00000000 --- a/.konflux/openshift-pipelines-core/1-22/pac-downstream/image-webhook-1.22.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pac-downstream-1-22-webhook - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: pac-downstream-1-22-webhook - appstudio.redhat.com/application: openshift-pipelines-core-1-22 -spec: - image: - name: pipelines-pipelines-as-code-webhook-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-core/1-22/release-plan.yaml b/.konflux/openshift-pipelines-core/1-22/release-plan.yaml deleted file mode 100644 index cf8b58f3..00000000 --- a/.konflux/openshift-pipelines-core/1-22/release-plan.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ReleasePlan -metadata: - labels: - release.appstudio.openshift.io/auto-release: "true" - release.appstudio.openshift.io/standing-attribution: 'true' - name: openshift-pipelines-core-1-22-rp -spec: - application: openshift-pipelines-core-1-22 - tenantPipeline: - serviceAccountName: release-registry-openshift-pipelines-core - pipelineRef: - resolver: git - params: - - name: url - value: https://github.com/openshift-pipelines/hack.git - - name: revision - # value: release-v1.22.x - value: main - - name: pathInRepo - value: pipelines/release-pipeline.yaml - params: - - name: release_version - value: "1.22.0" - - name: release_to_github - value: "false" diff --git a/.konflux/openshift-pipelines-core/1-22/tekton-kueue/component-kueue-1.22.yaml b/.konflux/openshift-pipelines-core/1-22/tekton-kueue/component-kueue-1.22.yaml deleted file mode 100644 index fd6573a7..00000000 --- a/.konflux/openshift-pipelines-core/1-22/tekton-kueue/component-kueue-1.22.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: tekton-kueue-1-22-kueue -spec: - componentName: kueue - application: openshift-pipelines-core-1-22 - build-nudges-ref: - - operator-1-22-bundle - source: - git: - url: https://github.com/openshift-pipelines/tekton-kueue.git - dockerfileUrl: .konflux/dockerfiles/kueue.Dockerfile - revision: release-v1.22.x diff --git a/.konflux/openshift-pipelines-core/1-22/tekton-kueue/image-kueue-1.22.yaml b/.konflux/openshift-pipelines-core/1-22/tekton-kueue/image-kueue-1.22.yaml deleted file mode 100644 index 1620fa65..00000000 --- a/.konflux/openshift-pipelines-core/1-22/tekton-kueue/image-kueue-1.22.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: tekton-kueue-1-22-kueue - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: tekton-kueue-1-22-kueue - appstudio.redhat.com/application: openshift-pipelines-core-1-22 -spec: - image: - name: pipelines-kueue-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-core/1-22/tektoncd-chains/component-controller-1.22.yaml b/.konflux/openshift-pipelines-core/1-22/tektoncd-chains/component-controller-1.22.yaml deleted file mode 100644 index 2a79ce44..00000000 --- a/.konflux/openshift-pipelines-core/1-22/tektoncd-chains/component-controller-1.22.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: tektoncd-chains-1-22-controller -spec: - componentName: controller - application: openshift-pipelines-core-1-22 - build-nudges-ref: - - operator-1-22-bundle - source: - git: - url: https://github.com/openshift-pipelines/tektoncd-chains.git - dockerfileUrl: .konflux/dockerfiles/controller.Dockerfile - revision: release-v1.22.x diff --git a/.konflux/openshift-pipelines-core/1-22/tektoncd-chains/image-controller-1.22.yaml b/.konflux/openshift-pipelines-core/1-22/tektoncd-chains/image-controller-1.22.yaml deleted file mode 100644 index 8523bda9..00000000 --- a/.konflux/openshift-pipelines-core/1-22/tektoncd-chains/image-controller-1.22.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: tektoncd-chains-1-22-controller - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: tektoncd-chains-1-22-controller - appstudio.redhat.com/application: openshift-pipelines-core-1-22 -spec: - image: - name: pipelines-chains-controller-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-core/1-22/tektoncd-git-clone/component-git-init-1.22.yaml b/.konflux/openshift-pipelines-core/1-22/tektoncd-git-clone/component-git-init-1.22.yaml deleted file mode 100644 index 9a385bf3..00000000 --- a/.konflux/openshift-pipelines-core/1-22/tektoncd-git-clone/component-git-init-1.22.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: tektoncd-git-clone-1-22-git-init -spec: - componentName: git-init - application: openshift-pipelines-core-1-22 - build-nudges-ref: - - operator-1-22-bundle - source: - git: - url: https://github.com/openshift-pipelines/tektoncd-git-clone.git - dockerfileUrl: .konflux/dockerfiles/git-init.Dockerfile - revision: release-v1.22.x diff --git a/.konflux/openshift-pipelines-core/1-22/tektoncd-git-clone/image-git-init-1.22.yaml b/.konflux/openshift-pipelines-core/1-22/tektoncd-git-clone/image-git-init-1.22.yaml deleted file mode 100644 index f82aec2f..00000000 --- a/.konflux/openshift-pipelines-core/1-22/tektoncd-git-clone/image-git-init-1.22.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: tektoncd-git-clone-1-22-git-init - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: tektoncd-git-clone-1-22-git-init - appstudio.redhat.com/application: openshift-pipelines-core-1-22 -spec: - image: - name: git-init-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-core/1-22/tektoncd-hub/component-api-1.22.yaml b/.konflux/openshift-pipelines-core/1-22/tektoncd-hub/component-api-1.22.yaml deleted file mode 100644 index 981486a3..00000000 --- a/.konflux/openshift-pipelines-core/1-22/tektoncd-hub/component-api-1.22.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: tektoncd-hub-1-22-api -spec: - componentName: api - application: openshift-pipelines-core-1-22 - build-nudges-ref: - - operator-1-22-bundle - source: - git: - url: https://github.com/openshift-pipelines/tektoncd-hub.git - dockerfileUrl: .konflux/dockerfiles/api.Dockerfile - revision: release-v1.22.x diff --git a/.konflux/openshift-pipelines-core/1-22/tektoncd-hub/component-db-migration-1.22.yaml b/.konflux/openshift-pipelines-core/1-22/tektoncd-hub/component-db-migration-1.22.yaml deleted file mode 100644 index 57e1c291..00000000 --- a/.konflux/openshift-pipelines-core/1-22/tektoncd-hub/component-db-migration-1.22.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: tektoncd-hub-1-22-db-migration -spec: - componentName: db-migration - application: openshift-pipelines-core-1-22 - build-nudges-ref: - - operator-1-22-bundle - source: - git: - url: https://github.com/openshift-pipelines/tektoncd-hub.git - dockerfileUrl: .konflux/dockerfiles/db-migration.Dockerfile - revision: release-v1.22.x diff --git a/.konflux/openshift-pipelines-core/1-22/tektoncd-hub/component-ui-1.22.yaml b/.konflux/openshift-pipelines-core/1-22/tektoncd-hub/component-ui-1.22.yaml deleted file mode 100644 index 94e9c47a..00000000 --- a/.konflux/openshift-pipelines-core/1-22/tektoncd-hub/component-ui-1.22.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: tektoncd-hub-1-22-ui -spec: - componentName: ui - application: openshift-pipelines-core-1-22 - build-nudges-ref: - - operator-1-22-bundle - source: - git: - url: https://github.com/openshift-pipelines/tektoncd-hub.git - dockerfileUrl: .konflux/dockerfiles/ui.Dockerfile - revision: release-v1.22.x diff --git a/.konflux/openshift-pipelines-core/1-22/tektoncd-hub/image-api-1.22.yaml b/.konflux/openshift-pipelines-core/1-22/tektoncd-hub/image-api-1.22.yaml deleted file mode 100644 index 9f625056..00000000 --- a/.konflux/openshift-pipelines-core/1-22/tektoncd-hub/image-api-1.22.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: tektoncd-hub-1-22-api - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: tektoncd-hub-1-22-api - appstudio.redhat.com/application: openshift-pipelines-core-1-22 -spec: - image: - name: pipelines-hub-api-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-core/1-22/tektoncd-hub/image-db-migration-1.22.yaml b/.konflux/openshift-pipelines-core/1-22/tektoncd-hub/image-db-migration-1.22.yaml deleted file mode 100644 index 199a6310..00000000 --- a/.konflux/openshift-pipelines-core/1-22/tektoncd-hub/image-db-migration-1.22.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: tektoncd-hub-1-22-db-migration - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: tektoncd-hub-1-22-db-migration - appstudio.redhat.com/application: openshift-pipelines-core-1-22 -spec: - image: - name: pipelines-hub-db-migration-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-core/1-22/tektoncd-hub/image-ui-1.22.yaml b/.konflux/openshift-pipelines-core/1-22/tektoncd-hub/image-ui-1.22.yaml deleted file mode 100644 index 258da843..00000000 --- a/.konflux/openshift-pipelines-core/1-22/tektoncd-hub/image-ui-1.22.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: tektoncd-hub-1-22-ui - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: tektoncd-hub-1-22-ui - appstudio.redhat.com/application: openshift-pipelines-core-1-22 -spec: - image: - name: pipelines-hub-ui-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-core/1-22/tektoncd-pipeline/component-controller-1.22.yaml b/.konflux/openshift-pipelines-core/1-22/tektoncd-pipeline/component-controller-1.22.yaml deleted file mode 100644 index fde9653d..00000000 --- a/.konflux/openshift-pipelines-core/1-22/tektoncd-pipeline/component-controller-1.22.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: tektoncd-pipeline-1-22-controller -spec: - componentName: controller - application: openshift-pipelines-core-1-22 - build-nudges-ref: - - operator-1-22-bundle - source: - git: - url: https://github.com/openshift-pipelines/tektoncd-pipeline.git - dockerfileUrl: .konflux/dockerfiles/controller.Dockerfile - revision: release-v1.22.x diff --git a/.konflux/openshift-pipelines-core/1-22/tektoncd-pipeline/component-entrypoint-1.22.yaml b/.konflux/openshift-pipelines-core/1-22/tektoncd-pipeline/component-entrypoint-1.22.yaml deleted file mode 100644 index ea61d0a6..00000000 --- a/.konflux/openshift-pipelines-core/1-22/tektoncd-pipeline/component-entrypoint-1.22.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: tektoncd-pipeline-1-22-entrypoint -spec: - componentName: entrypoint - application: openshift-pipelines-core-1-22 - build-nudges-ref: - - operator-1-22-bundle - source: - git: - url: https://github.com/openshift-pipelines/tektoncd-pipeline.git - dockerfileUrl: .konflux/dockerfiles/entrypoint.Dockerfile - revision: release-v1.22.x diff --git a/.konflux/openshift-pipelines-core/1-22/tektoncd-pipeline/component-events-1.22.yaml b/.konflux/openshift-pipelines-core/1-22/tektoncd-pipeline/component-events-1.22.yaml deleted file mode 100644 index 1ab2dd3a..00000000 --- a/.konflux/openshift-pipelines-core/1-22/tektoncd-pipeline/component-events-1.22.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: tektoncd-pipeline-1-22-events -spec: - componentName: events - application: openshift-pipelines-core-1-22 - build-nudges-ref: - - operator-1-22-bundle - source: - git: - url: https://github.com/openshift-pipelines/tektoncd-pipeline.git - dockerfileUrl: .konflux/dockerfiles/events.Dockerfile - revision: release-v1.22.x diff --git a/.konflux/openshift-pipelines-core/1-22/tektoncd-pipeline/component-nop-1.22.yaml b/.konflux/openshift-pipelines-core/1-22/tektoncd-pipeline/component-nop-1.22.yaml deleted file mode 100644 index 87075f4f..00000000 --- a/.konflux/openshift-pipelines-core/1-22/tektoncd-pipeline/component-nop-1.22.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: tektoncd-pipeline-1-22-nop -spec: - componentName: nop - application: openshift-pipelines-core-1-22 - build-nudges-ref: - - operator-1-22-bundle - source: - git: - url: https://github.com/openshift-pipelines/tektoncd-pipeline.git - dockerfileUrl: .konflux/dockerfiles/nop.Dockerfile - revision: release-v1.22.x diff --git a/.konflux/openshift-pipelines-core/1-22/tektoncd-pipeline/component-resolvers-1.22.yaml b/.konflux/openshift-pipelines-core/1-22/tektoncd-pipeline/component-resolvers-1.22.yaml deleted file mode 100644 index 7710a0cf..00000000 --- a/.konflux/openshift-pipelines-core/1-22/tektoncd-pipeline/component-resolvers-1.22.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: tektoncd-pipeline-1-22-resolvers -spec: - componentName: resolvers - application: openshift-pipelines-core-1-22 - build-nudges-ref: - - operator-1-22-bundle - source: - git: - url: https://github.com/openshift-pipelines/tektoncd-pipeline.git - dockerfileUrl: .konflux/dockerfiles/resolvers.Dockerfile - revision: release-v1.22.x diff --git a/.konflux/openshift-pipelines-core/1-22/tektoncd-pipeline/component-sidecarlogresults-1.22.yaml b/.konflux/openshift-pipelines-core/1-22/tektoncd-pipeline/component-sidecarlogresults-1.22.yaml deleted file mode 100644 index 54aaf940..00000000 --- a/.konflux/openshift-pipelines-core/1-22/tektoncd-pipeline/component-sidecarlogresults-1.22.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: tektoncd-pipeline-1-22-sidecarlogresults -spec: - componentName: sidecarlogresults - application: openshift-pipelines-core-1-22 - build-nudges-ref: - - operator-1-22-bundle - source: - git: - url: https://github.com/openshift-pipelines/tektoncd-pipeline.git - dockerfileUrl: .konflux/dockerfiles/sidecarlogresults.Dockerfile - revision: release-v1.22.x diff --git a/.konflux/openshift-pipelines-core/1-22/tektoncd-pipeline/component-webhook-1.22.yaml b/.konflux/openshift-pipelines-core/1-22/tektoncd-pipeline/component-webhook-1.22.yaml deleted file mode 100644 index 353be9c1..00000000 --- a/.konflux/openshift-pipelines-core/1-22/tektoncd-pipeline/component-webhook-1.22.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: tektoncd-pipeline-1-22-webhook -spec: - componentName: webhook - application: openshift-pipelines-core-1-22 - build-nudges-ref: - - operator-1-22-bundle - source: - git: - url: https://github.com/openshift-pipelines/tektoncd-pipeline.git - dockerfileUrl: .konflux/dockerfiles/webhook.Dockerfile - revision: release-v1.22.x diff --git a/.konflux/openshift-pipelines-core/1-22/tektoncd-pipeline/component-workingdirinit-1.22.yaml b/.konflux/openshift-pipelines-core/1-22/tektoncd-pipeline/component-workingdirinit-1.22.yaml deleted file mode 100644 index a10abcc0..00000000 --- a/.konflux/openshift-pipelines-core/1-22/tektoncd-pipeline/component-workingdirinit-1.22.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: tektoncd-pipeline-1-22-workingdirinit -spec: - componentName: workingdirinit - application: openshift-pipelines-core-1-22 - build-nudges-ref: - - operator-1-22-bundle - source: - git: - url: https://github.com/openshift-pipelines/tektoncd-pipeline.git - dockerfileUrl: .konflux/dockerfiles/workingdirinit.Dockerfile - revision: release-v1.22.x diff --git a/.konflux/openshift-pipelines-core/1-22/tektoncd-pipeline/image-controller-1.22.yaml b/.konflux/openshift-pipelines-core/1-22/tektoncd-pipeline/image-controller-1.22.yaml deleted file mode 100644 index 624c165d..00000000 --- a/.konflux/openshift-pipelines-core/1-22/tektoncd-pipeline/image-controller-1.22.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: tektoncd-pipeline-1-22-controller - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: tektoncd-pipeline-1-22-controller - appstudio.redhat.com/application: openshift-pipelines-core-1-22 -spec: - image: - name: pipelines-controller-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-core/1-22/tektoncd-pipeline/image-entrypoint-1.22.yaml b/.konflux/openshift-pipelines-core/1-22/tektoncd-pipeline/image-entrypoint-1.22.yaml deleted file mode 100644 index 97aac2aa..00000000 --- a/.konflux/openshift-pipelines-core/1-22/tektoncd-pipeline/image-entrypoint-1.22.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: tektoncd-pipeline-1-22-entrypoint - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: tektoncd-pipeline-1-22-entrypoint - appstudio.redhat.com/application: openshift-pipelines-core-1-22 -spec: - image: - name: pipelines-entrypoint-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-core/1-22/tektoncd-pipeline/image-events-1.22.yaml b/.konflux/openshift-pipelines-core/1-22/tektoncd-pipeline/image-events-1.22.yaml deleted file mode 100644 index 898c88a8..00000000 --- a/.konflux/openshift-pipelines-core/1-22/tektoncd-pipeline/image-events-1.22.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: tektoncd-pipeline-1-22-events - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: tektoncd-pipeline-1-22-events - appstudio.redhat.com/application: openshift-pipelines-core-1-22 -spec: - image: - name: pipelines-events-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-core/1-22/tektoncd-pipeline/image-nop-1.22.yaml b/.konflux/openshift-pipelines-core/1-22/tektoncd-pipeline/image-nop-1.22.yaml deleted file mode 100644 index 0c644e29..00000000 --- a/.konflux/openshift-pipelines-core/1-22/tektoncd-pipeline/image-nop-1.22.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: tektoncd-pipeline-1-22-nop - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: tektoncd-pipeline-1-22-nop - appstudio.redhat.com/application: openshift-pipelines-core-1-22 -spec: - image: - name: pipelines-nop-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-core/1-22/tektoncd-pipeline/image-resolvers-1.22.yaml b/.konflux/openshift-pipelines-core/1-22/tektoncd-pipeline/image-resolvers-1.22.yaml deleted file mode 100644 index 097fb38c..00000000 --- a/.konflux/openshift-pipelines-core/1-22/tektoncd-pipeline/image-resolvers-1.22.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: tektoncd-pipeline-1-22-resolvers - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: tektoncd-pipeline-1-22-resolvers - appstudio.redhat.com/application: openshift-pipelines-core-1-22 -spec: - image: - name: pipelines-resolvers-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-core/1-22/tektoncd-pipeline/image-sidecarlogresults-1.22.yaml b/.konflux/openshift-pipelines-core/1-22/tektoncd-pipeline/image-sidecarlogresults-1.22.yaml deleted file mode 100644 index 18b9dec6..00000000 --- a/.konflux/openshift-pipelines-core/1-22/tektoncd-pipeline/image-sidecarlogresults-1.22.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: tektoncd-pipeline-1-22-sidecarlogresults - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: tektoncd-pipeline-1-22-sidecarlogresults - appstudio.redhat.com/application: openshift-pipelines-core-1-22 -spec: - image: - name: pipelines-sidecarlogresults-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-core/1-22/tektoncd-pipeline/image-webhook-1.22.yaml b/.konflux/openshift-pipelines-core/1-22/tektoncd-pipeline/image-webhook-1.22.yaml deleted file mode 100644 index d3256b01..00000000 --- a/.konflux/openshift-pipelines-core/1-22/tektoncd-pipeline/image-webhook-1.22.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: tektoncd-pipeline-1-22-webhook - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: tektoncd-pipeline-1-22-webhook - appstudio.redhat.com/application: openshift-pipelines-core-1-22 -spec: - image: - name: pipelines-webhook-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-core/1-22/tektoncd-pipeline/image-workingdirinit-1.22.yaml b/.konflux/openshift-pipelines-core/1-22/tektoncd-pipeline/image-workingdirinit-1.22.yaml deleted file mode 100644 index 8e048dbd..00000000 --- a/.konflux/openshift-pipelines-core/1-22/tektoncd-pipeline/image-workingdirinit-1.22.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: tektoncd-pipeline-1-22-workingdirinit - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: tektoncd-pipeline-1-22-workingdirinit - appstudio.redhat.com/application: openshift-pipelines-core-1-22 -spec: - image: - name: pipelines-workingdirinit-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-core/1-22/tektoncd-pruner/component-controller-1.22.yaml b/.konflux/openshift-pipelines-core/1-22/tektoncd-pruner/component-controller-1.22.yaml deleted file mode 100644 index cf2116d3..00000000 --- a/.konflux/openshift-pipelines-core/1-22/tektoncd-pruner/component-controller-1.22.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: tektoncd-pruner-1-22-controller -spec: - componentName: controller - application: openshift-pipelines-core-1-22 - build-nudges-ref: - - operator-1-22-bundle - source: - git: - url: https://github.com/openshift-pipelines/tektoncd-pruner.git - dockerfileUrl: .konflux/dockerfiles/controller.Dockerfile - revision: release-v1.22.x diff --git a/.konflux/openshift-pipelines-core/1-22/tektoncd-pruner/image-controller-1.22.yaml b/.konflux/openshift-pipelines-core/1-22/tektoncd-pruner/image-controller-1.22.yaml deleted file mode 100644 index 4e002a61..00000000 --- a/.konflux/openshift-pipelines-core/1-22/tektoncd-pruner/image-controller-1.22.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: tektoncd-pruner-1-22-controller - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: tektoncd-pruner-1-22-controller - appstudio.redhat.com/application: openshift-pipelines-core-1-22 -spec: - image: - name: pipelines-pruner-controller-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-core/1-22/tektoncd-results/component-api-1.22.yaml b/.konflux/openshift-pipelines-core/1-22/tektoncd-results/component-api-1.22.yaml deleted file mode 100644 index 67370d38..00000000 --- a/.konflux/openshift-pipelines-core/1-22/tektoncd-results/component-api-1.22.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: tektoncd-results-1-22-api -spec: - componentName: api - application: openshift-pipelines-core-1-22 - build-nudges-ref: - - operator-1-22-bundle - source: - git: - url: https://github.com/openshift-pipelines/tektoncd-results.git - dockerfileUrl: .konflux/dockerfiles/api.Dockerfile - revision: release-v1.22.x diff --git a/.konflux/openshift-pipelines-core/1-22/tektoncd-results/component-retention-policy-agent-1.22.yaml b/.konflux/openshift-pipelines-core/1-22/tektoncd-results/component-retention-policy-agent-1.22.yaml deleted file mode 100644 index ec63d808..00000000 --- a/.konflux/openshift-pipelines-core/1-22/tektoncd-results/component-retention-policy-agent-1.22.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: tektoncd-results-1-22-retention-policy-agent -spec: - componentName: retention-policy-agent - application: openshift-pipelines-core-1-22 - build-nudges-ref: - - operator-1-22-bundle - source: - git: - url: https://github.com/openshift-pipelines/tektoncd-results.git - dockerfileUrl: .konflux/dockerfiles/retention-policy-agent.Dockerfile - revision: release-v1.22.x diff --git a/.konflux/openshift-pipelines-core/1-22/tektoncd-results/component-watcher-1.22.yaml b/.konflux/openshift-pipelines-core/1-22/tektoncd-results/component-watcher-1.22.yaml deleted file mode 100644 index 989f5d72..00000000 --- a/.konflux/openshift-pipelines-core/1-22/tektoncd-results/component-watcher-1.22.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: tektoncd-results-1-22-watcher -spec: - componentName: watcher - application: openshift-pipelines-core-1-22 - build-nudges-ref: - - operator-1-22-bundle - source: - git: - url: https://github.com/openshift-pipelines/tektoncd-results.git - dockerfileUrl: .konflux/dockerfiles/watcher.Dockerfile - revision: release-v1.22.x diff --git a/.konflux/openshift-pipelines-core/1-22/tektoncd-results/image-api-1.22.yaml b/.konflux/openshift-pipelines-core/1-22/tektoncd-results/image-api-1.22.yaml deleted file mode 100644 index a6b29ac8..00000000 --- a/.konflux/openshift-pipelines-core/1-22/tektoncd-results/image-api-1.22.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: tektoncd-results-1-22-api - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: tektoncd-results-1-22-api - appstudio.redhat.com/application: openshift-pipelines-core-1-22 -spec: - image: - name: pipelines-results-api-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-core/1-22/tektoncd-results/image-retention-policy-agent-1.22.yaml b/.konflux/openshift-pipelines-core/1-22/tektoncd-results/image-retention-policy-agent-1.22.yaml deleted file mode 100644 index 5726b851..00000000 --- a/.konflux/openshift-pipelines-core/1-22/tektoncd-results/image-retention-policy-agent-1.22.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: tektoncd-results-1-22-retention-policy-agent - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: tektoncd-results-1-22-retention-policy-agent - appstudio.redhat.com/application: openshift-pipelines-core-1-22 -spec: - image: - name: pipelines-results-retention-policy-agent-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-core/1-22/tektoncd-results/image-watcher-1.22.yaml b/.konflux/openshift-pipelines-core/1-22/tektoncd-results/image-watcher-1.22.yaml deleted file mode 100644 index 9f66dd86..00000000 --- a/.konflux/openshift-pipelines-core/1-22/tektoncd-results/image-watcher-1.22.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: tektoncd-results-1-22-watcher - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: tektoncd-results-1-22-watcher - appstudio.redhat.com/application: openshift-pipelines-core-1-22 -spec: - image: - name: pipelines-results-watcher-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-core/1-22/tektoncd-triggers/component-controller-1.22.yaml b/.konflux/openshift-pipelines-core/1-22/tektoncd-triggers/component-controller-1.22.yaml deleted file mode 100644 index 25805908..00000000 --- a/.konflux/openshift-pipelines-core/1-22/tektoncd-triggers/component-controller-1.22.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: tektoncd-triggers-1-22-controller -spec: - componentName: controller - application: openshift-pipelines-core-1-22 - build-nudges-ref: - - operator-1-22-bundle - source: - git: - url: https://github.com/openshift-pipelines/tektoncd-triggers.git - dockerfileUrl: .konflux/dockerfiles/controller.Dockerfile - revision: release-v1.22.x diff --git a/.konflux/openshift-pipelines-core/1-22/tektoncd-triggers/component-core-interceptors-1.22.yaml b/.konflux/openshift-pipelines-core/1-22/tektoncd-triggers/component-core-interceptors-1.22.yaml deleted file mode 100644 index 11a912ab..00000000 --- a/.konflux/openshift-pipelines-core/1-22/tektoncd-triggers/component-core-interceptors-1.22.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: tektoncd-triggers-1-22-core-interceptors -spec: - componentName: core-interceptors - application: openshift-pipelines-core-1-22 - build-nudges-ref: - - operator-1-22-bundle - source: - git: - url: https://github.com/openshift-pipelines/tektoncd-triggers.git - dockerfileUrl: .konflux/dockerfiles/core-interceptors.Dockerfile - revision: release-v1.22.x diff --git a/.konflux/openshift-pipelines-core/1-22/tektoncd-triggers/component-eventlistenersink-1.22.yaml b/.konflux/openshift-pipelines-core/1-22/tektoncd-triggers/component-eventlistenersink-1.22.yaml deleted file mode 100644 index 9c5e3a47..00000000 --- a/.konflux/openshift-pipelines-core/1-22/tektoncd-triggers/component-eventlistenersink-1.22.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: tektoncd-triggers-1-22-eventlistenersink -spec: - componentName: eventlistenersink - application: openshift-pipelines-core-1-22 - build-nudges-ref: - - operator-1-22-bundle - source: - git: - url: https://github.com/openshift-pipelines/tektoncd-triggers.git - dockerfileUrl: .konflux/dockerfiles/eventlistenersink.Dockerfile - revision: release-v1.22.x diff --git a/.konflux/openshift-pipelines-core/1-22/tektoncd-triggers/component-webhook-1.22.yaml b/.konflux/openshift-pipelines-core/1-22/tektoncd-triggers/component-webhook-1.22.yaml deleted file mode 100644 index 7a2b65bc..00000000 --- a/.konflux/openshift-pipelines-core/1-22/tektoncd-triggers/component-webhook-1.22.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: tektoncd-triggers-1-22-webhook -spec: - componentName: webhook - application: openshift-pipelines-core-1-22 - build-nudges-ref: - - operator-1-22-bundle - source: - git: - url: https://github.com/openshift-pipelines/tektoncd-triggers.git - dockerfileUrl: .konflux/dockerfiles/webhook.Dockerfile - revision: release-v1.22.x diff --git a/.konflux/openshift-pipelines-core/1-22/tektoncd-triggers/image-controller-1.22.yaml b/.konflux/openshift-pipelines-core/1-22/tektoncd-triggers/image-controller-1.22.yaml deleted file mode 100644 index 21c86870..00000000 --- a/.konflux/openshift-pipelines-core/1-22/tektoncd-triggers/image-controller-1.22.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: tektoncd-triggers-1-22-controller - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: tektoncd-triggers-1-22-controller - appstudio.redhat.com/application: openshift-pipelines-core-1-22 -spec: - image: - name: pipelines-triggers-controller-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-core/1-22/tektoncd-triggers/image-core-interceptors-1.22.yaml b/.konflux/openshift-pipelines-core/1-22/tektoncd-triggers/image-core-interceptors-1.22.yaml deleted file mode 100644 index 14e0d4b7..00000000 --- a/.konflux/openshift-pipelines-core/1-22/tektoncd-triggers/image-core-interceptors-1.22.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: tektoncd-triggers-1-22-core-interceptors - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: tektoncd-triggers-1-22-core-interceptors - appstudio.redhat.com/application: openshift-pipelines-core-1-22 -spec: - image: - name: pipelines-triggers-core-interceptors-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-core/1-22/tektoncd-triggers/image-eventlistenersink-1.22.yaml b/.konflux/openshift-pipelines-core/1-22/tektoncd-triggers/image-eventlistenersink-1.22.yaml deleted file mode 100644 index cc9b7600..00000000 --- a/.konflux/openshift-pipelines-core/1-22/tektoncd-triggers/image-eventlistenersink-1.22.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: tektoncd-triggers-1-22-eventlistenersink - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: tektoncd-triggers-1-22-eventlistenersink - appstudio.redhat.com/application: openshift-pipelines-core-1-22 -spec: - image: - name: pipelines-triggers-eventlistenersink-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-core/1-22/tektoncd-triggers/image-webhook-1.22.yaml b/.konflux/openshift-pipelines-core/1-22/tektoncd-triggers/image-webhook-1.22.yaml deleted file mode 100644 index 7d088102..00000000 --- a/.konflux/openshift-pipelines-core/1-22/tektoncd-triggers/image-webhook-1.22.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: tektoncd-triggers-1-22-webhook - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: tektoncd-triggers-1-22-webhook - appstudio.redhat.com/application: openshift-pipelines-core-1-22 -spec: - image: - name: pipelines-triggers-webhook-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-core/1-22/tests.yaml b/.konflux/openshift-pipelines-core/1-22/tests.yaml deleted file mode 100644 index 0e0b58a2..00000000 --- a/.konflux/openshift-pipelines-core/1-22/tests.yaml +++ /dev/null @@ -1,27 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1beta2 -kind: IntegrationTestScenario -metadata: - name: openshift-pipelines-core-1-22-enterprise-contract -spec: - application: openshift-pipelines-core-1-22 - contexts: - - description: execute the integration test for a component - name: component - params: - - name: POLICY_CONFIGURATION - value: tekton-ecosystem-tenant/tekton-ecosystem-tenant-containers - - name: TIMEOUT - value: "15m0s" - - name: SINGLE_COMPONENT - value: "true" - resolverRef: - params: - - name: url - value: "https://github.com/konflux-ci/build-definitions" - - name: revision - value: main - - name: pathInRepo - value: pipelines/enterprise-contract.yaml - resolver: git diff --git a/.konflux/openshift-pipelines-core/next/application.yaml b/.konflux/openshift-pipelines-core/next/application.yaml deleted file mode 100644 index 2a2ff4d5..00000000 --- a/.konflux/openshift-pipelines-core/next/application.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Application -metadata: - name: openshift-pipelines-core-next -spec: - displayName: openshift-pipelines-core-next diff --git a/.konflux/openshift-pipelines-core/next/console-plugin/component-console-plugin-next.yaml b/.konflux/openshift-pipelines-core/next/console-plugin/component-console-plugin-next.yaml deleted file mode 100644 index ff18e2c6..00000000 --- a/.konflux/openshift-pipelines-core/next/console-plugin/component-console-plugin-next.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: console-plugin-next-console-plugin -spec: - componentName: console-plugin - application: openshift-pipelines-core-next - build-nudges-ref: - - operator-next-bundle - source: - git: - url: https://github.com/openshift-pipelines/console-plugin.git - dockerfileUrl: .konflux/dockerfiles/console-plugin.Dockerfile - revision: next diff --git a/.konflux/openshift-pipelines-core/next/console-plugin/image-console-plugin-next.yaml b/.konflux/openshift-pipelines-core/next/console-plugin/image-console-plugin-next.yaml deleted file mode 100644 index 578c39ea..00000000 --- a/.konflux/openshift-pipelines-core/next/console-plugin/image-console-plugin-next.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: console-plugin-next-console-plugin - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: console-plugin-next-console-plugin - appstudio.redhat.com/application: openshift-pipelines-core-next -spec: - image: - name: console-plugin/pipelines-console-plugin-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-core/next/p12n-manual-approval-gate/component-controller-next.yaml b/.konflux/openshift-pipelines-core/next/p12n-manual-approval-gate/component-controller-next.yaml deleted file mode 100644 index a145de39..00000000 --- a/.konflux/openshift-pipelines-core/next/p12n-manual-approval-gate/component-controller-next.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: p12n-manual-approval-gate-next-controller -spec: - componentName: controller - application: openshift-pipelines-core-next - build-nudges-ref: - - operator-next-bundle - source: - git: - url: https://github.com/openshift-pipelines/p12n-manual-approval-gate.git - dockerfileUrl: .konflux/dockerfiles/controller.Dockerfile - revision: next diff --git a/.konflux/openshift-pipelines-core/next/p12n-manual-approval-gate/component-webhook-next.yaml b/.konflux/openshift-pipelines-core/next/p12n-manual-approval-gate/component-webhook-next.yaml deleted file mode 100644 index b7a4861b..00000000 --- a/.konflux/openshift-pipelines-core/next/p12n-manual-approval-gate/component-webhook-next.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: p12n-manual-approval-gate-next-webhook -spec: - componentName: webhook - application: openshift-pipelines-core-next - build-nudges-ref: - - operator-next-bundle - source: - git: - url: https://github.com/openshift-pipelines/p12n-manual-approval-gate.git - dockerfileUrl: .konflux/dockerfiles/webhook.Dockerfile - revision: next diff --git a/.konflux/openshift-pipelines-core/next/p12n-manual-approval-gate/image-controller-next.yaml b/.konflux/openshift-pipelines-core/next/p12n-manual-approval-gate/image-controller-next.yaml deleted file mode 100644 index 5cc0aa7d..00000000 --- a/.konflux/openshift-pipelines-core/next/p12n-manual-approval-gate/image-controller-next.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: p12n-manual-approval-gate-next-controller - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: p12n-manual-approval-gate-next-controller - appstudio.redhat.com/application: openshift-pipelines-core-next -spec: - image: - name: pipelines-manual-approval-gate-controller-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-core/next/p12n-manual-approval-gate/image-webhook-next.yaml b/.konflux/openshift-pipelines-core/next/p12n-manual-approval-gate/image-webhook-next.yaml deleted file mode 100644 index 413bc126..00000000 --- a/.konflux/openshift-pipelines-core/next/p12n-manual-approval-gate/image-webhook-next.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: p12n-manual-approval-gate-next-webhook - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: p12n-manual-approval-gate-next-webhook - appstudio.redhat.com/application: openshift-pipelines-core-next -spec: - image: - name: pipelines-manual-approval-gate-webhook-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-core/next/p12n-multicluster-proxy-aae/component-proxy-server-next.yaml b/.konflux/openshift-pipelines-core/next/p12n-multicluster-proxy-aae/component-proxy-server-next.yaml deleted file mode 100644 index 3d7533c7..00000000 --- a/.konflux/openshift-pipelines-core/next/p12n-multicluster-proxy-aae/component-proxy-server-next.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: p12n-multicluster-proxy-aae-next-proxy-server -spec: - componentName: proxy-server - application: openshift-pipelines-core-next - build-nudges-ref: - - operator-next-bundle - source: - git: - url: https://github.com/openshift-pipelines/p12n-multicluster-proxy-aae.git - dockerfileUrl: .konflux/dockerfiles/proxy-server.Dockerfile - revision: next diff --git a/.konflux/openshift-pipelines-core/next/p12n-multicluster-proxy-aae/image-proxy-server-next.yaml b/.konflux/openshift-pipelines-core/next/p12n-multicluster-proxy-aae/image-proxy-server-next.yaml deleted file mode 100644 index 485c01f7..00000000 --- a/.konflux/openshift-pipelines-core/next/p12n-multicluster-proxy-aae/image-proxy-server-next.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: p12n-multicluster-proxy-aae-next-proxy-server - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: p12n-multicluster-proxy-aae-next-proxy-server - appstudio.redhat.com/application: openshift-pipelines-core-next -spec: - image: - name: pipelines-multicluster-proxy-aae-proxy-server-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-core/next/p12n-syncer-service/component-controller-next.yaml b/.konflux/openshift-pipelines-core/next/p12n-syncer-service/component-controller-next.yaml deleted file mode 100644 index a9f526f2..00000000 --- a/.konflux/openshift-pipelines-core/next/p12n-syncer-service/component-controller-next.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: p12n-syncer-service-next-controller -spec: - componentName: controller - application: openshift-pipelines-core-next - build-nudges-ref: - - operator-next-bundle - source: - git: - url: https://github.com/openshift-pipelines/p12n-syncer-service.git - dockerfileUrl: .konflux/dockerfiles/controller.Dockerfile - revision: next diff --git a/.konflux/openshift-pipelines-core/next/p12n-syncer-service/image-controller-next.yaml b/.konflux/openshift-pipelines-core/next/p12n-syncer-service/image-controller-next.yaml deleted file mode 100644 index 33b0922b..00000000 --- a/.konflux/openshift-pipelines-core/next/p12n-syncer-service/image-controller-next.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: p12n-syncer-service-next-controller - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: p12n-syncer-service-next-controller - appstudio.redhat.com/application: openshift-pipelines-core-next -spec: - image: - name: pipelines-syncer-service-controller-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-core/next/p12n-tekton-assist/component-tekton-assist-next.yaml b/.konflux/openshift-pipelines-core/next/p12n-tekton-assist/component-tekton-assist-next.yaml deleted file mode 100644 index 3f6214f1..00000000 --- a/.konflux/openshift-pipelines-core/next/p12n-tekton-assist/component-tekton-assist-next.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: p12n-tekton-assist-next-tekton-assist -spec: - componentName: tekton-assist - application: openshift-pipelines-core-next - build-nudges-ref: - - operator-next-bundle - source: - git: - url: https://github.com/openshift-pipelines/p12n-tekton-assist.git - dockerfileUrl: .konflux/dockerfiles/tekton-assist.Dockerfile - revision: next diff --git a/.konflux/openshift-pipelines-core/next/p12n-tekton-assist/image-tekton-assist-next.yaml b/.konflux/openshift-pipelines-core/next/p12n-tekton-assist/image-tekton-assist-next.yaml deleted file mode 100644 index 683e8ce4..00000000 --- a/.konflux/openshift-pipelines-core/next/p12n-tekton-assist/image-tekton-assist-next.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: p12n-tekton-assist-next-tekton-assist - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: p12n-tekton-assist-next-tekton-assist - appstudio.redhat.com/application: openshift-pipelines-core-next -spec: - image: - name: pipelines-tekton-assist-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-core/next/p12n-tekton-caches/component-cache-next.yaml b/.konflux/openshift-pipelines-core/next/p12n-tekton-caches/component-cache-next.yaml deleted file mode 100644 index 6849bd18..00000000 --- a/.konflux/openshift-pipelines-core/next/p12n-tekton-caches/component-cache-next.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: p12n-tekton-caches-next-cache -spec: - componentName: cache - application: openshift-pipelines-core-next - build-nudges-ref: - - operator-next-bundle - source: - git: - url: https://github.com/openshift-pipelines/p12n-tekton-caches.git - dockerfileUrl: .konflux/dockerfiles/cache.Dockerfile - revision: next diff --git a/.konflux/openshift-pipelines-core/next/p12n-tekton-caches/image-cache-next.yaml b/.konflux/openshift-pipelines-core/next/p12n-tekton-caches/image-cache-next.yaml deleted file mode 100644 index 93ade833..00000000 --- a/.konflux/openshift-pipelines-core/next/p12n-tekton-caches/image-cache-next.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: p12n-tekton-caches-next-cache - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: p12n-tekton-caches-next-cache - appstudio.redhat.com/application: openshift-pipelines-core-next -spec: - image: - name: pipelines-cache-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-core/next/pac-downstream/component-cli-next.yaml b/.konflux/openshift-pipelines-core/next/pac-downstream/component-cli-next.yaml deleted file mode 100644 index f6ef4808..00000000 --- a/.konflux/openshift-pipelines-core/next/pac-downstream/component-cli-next.yaml +++ /dev/null @@ -1,19 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: pac-downstream-next-cli -spec: - componentName: cli - application: openshift-pipelines-core-next - build-nudges-ref: - - operator-next-bundle - - tektoncd-cli-next-tkn - source: - git: - url: https://github.com/openshift-pipelines/pac-downstream.git - dockerfileUrl: .konflux/dockerfiles/cli.Dockerfile - revision: next diff --git a/.konflux/openshift-pipelines-core/next/pac-downstream/component-controller-next.yaml b/.konflux/openshift-pipelines-core/next/pac-downstream/component-controller-next.yaml deleted file mode 100644 index 2e14f65b..00000000 --- a/.konflux/openshift-pipelines-core/next/pac-downstream/component-controller-next.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: pac-downstream-next-controller -spec: - componentName: controller - application: openshift-pipelines-core-next - build-nudges-ref: - - operator-next-bundle - source: - git: - url: https://github.com/openshift-pipelines/pac-downstream.git - dockerfileUrl: .konflux/dockerfiles/controller.Dockerfile - revision: next diff --git a/.konflux/openshift-pipelines-core/next/pac-downstream/component-watcher-next.yaml b/.konflux/openshift-pipelines-core/next/pac-downstream/component-watcher-next.yaml deleted file mode 100644 index 5ccdbd0c..00000000 --- a/.konflux/openshift-pipelines-core/next/pac-downstream/component-watcher-next.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: pac-downstream-next-watcher -spec: - componentName: watcher - application: openshift-pipelines-core-next - build-nudges-ref: - - operator-next-bundle - source: - git: - url: https://github.com/openshift-pipelines/pac-downstream.git - dockerfileUrl: .konflux/dockerfiles/watcher.Dockerfile - revision: next diff --git a/.konflux/openshift-pipelines-core/next/pac-downstream/component-webhook-next.yaml b/.konflux/openshift-pipelines-core/next/pac-downstream/component-webhook-next.yaml deleted file mode 100644 index 86e700ca..00000000 --- a/.konflux/openshift-pipelines-core/next/pac-downstream/component-webhook-next.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: pac-downstream-next-webhook -spec: - componentName: webhook - application: openshift-pipelines-core-next - build-nudges-ref: - - operator-next-bundle - source: - git: - url: https://github.com/openshift-pipelines/pac-downstream.git - dockerfileUrl: .konflux/dockerfiles/webhook.Dockerfile - revision: next diff --git a/.konflux/openshift-pipelines-core/next/pac-downstream/image-cli-next.yaml b/.konflux/openshift-pipelines-core/next/pac-downstream/image-cli-next.yaml deleted file mode 100644 index b87f49e7..00000000 --- a/.konflux/openshift-pipelines-core/next/pac-downstream/image-cli-next.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pac-downstream-next-cli - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: pac-downstream-next-cli - appstudio.redhat.com/application: openshift-pipelines-core-next -spec: - image: - name: pipelines-pipelines-as-code-cli-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-core/next/pac-downstream/image-controller-next.yaml b/.konflux/openshift-pipelines-core/next/pac-downstream/image-controller-next.yaml deleted file mode 100644 index 75fba2c7..00000000 --- a/.konflux/openshift-pipelines-core/next/pac-downstream/image-controller-next.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pac-downstream-next-controller - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: pac-downstream-next-controller - appstudio.redhat.com/application: openshift-pipelines-core-next -spec: - image: - name: pipelines-pipelines-as-code-controller-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-core/next/pac-downstream/image-watcher-next.yaml b/.konflux/openshift-pipelines-core/next/pac-downstream/image-watcher-next.yaml deleted file mode 100644 index f0134ee4..00000000 --- a/.konflux/openshift-pipelines-core/next/pac-downstream/image-watcher-next.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pac-downstream-next-watcher - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: pac-downstream-next-watcher - appstudio.redhat.com/application: openshift-pipelines-core-next -spec: - image: - name: pipelines-pipelines-as-code-watcher-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-core/next/pac-downstream/image-webhook-next.yaml b/.konflux/openshift-pipelines-core/next/pac-downstream/image-webhook-next.yaml deleted file mode 100644 index a9136579..00000000 --- a/.konflux/openshift-pipelines-core/next/pac-downstream/image-webhook-next.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: pac-downstream-next-webhook - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: pac-downstream-next-webhook - appstudio.redhat.com/application: openshift-pipelines-core-next -spec: - image: - name: pipelines-pipelines-as-code-webhook-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-core/next/release-plan.yaml b/.konflux/openshift-pipelines-core/next/release-plan.yaml deleted file mode 100644 index c85c4731..00000000 --- a/.konflux/openshift-pipelines-core/next/release-plan.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ReleasePlan -metadata: - labels: - release.appstudio.openshift.io/auto-release: "true" - release.appstudio.openshift.io/standing-attribution: 'true' - name: openshift-pipelines-core-next-rp -spec: - application: openshift-pipelines-core-next - tenantPipeline: - serviceAccountName: release-registry-openshift-pipelines-core - pipelineRef: - resolver: git - params: - - name: url - value: https://github.com/openshift-pipelines/hack.git - - name: revision - # value: next - value: main - - name: pathInRepo - value: pipelines/release-pipeline.yaml - params: - - name: release_version - value: "next" - - name: release_to_github - value: "false" diff --git a/.konflux/openshift-pipelines-core/next/tekton-kueue/component-kueue-next.yaml b/.konflux/openshift-pipelines-core/next/tekton-kueue/component-kueue-next.yaml deleted file mode 100644 index 4ba39c30..00000000 --- a/.konflux/openshift-pipelines-core/next/tekton-kueue/component-kueue-next.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: tekton-kueue-next-kueue -spec: - componentName: kueue - application: openshift-pipelines-core-next - build-nudges-ref: - - operator-next-bundle - source: - git: - url: https://github.com/openshift-pipelines/tekton-kueue.git - dockerfileUrl: .konflux/dockerfiles/kueue.Dockerfile - revision: next diff --git a/.konflux/openshift-pipelines-core/next/tekton-kueue/image-kueue-next.yaml b/.konflux/openshift-pipelines-core/next/tekton-kueue/image-kueue-next.yaml deleted file mode 100644 index 193a4d65..00000000 --- a/.konflux/openshift-pipelines-core/next/tekton-kueue/image-kueue-next.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: tekton-kueue-next-kueue - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: tekton-kueue-next-kueue - appstudio.redhat.com/application: openshift-pipelines-core-next -spec: - image: - name: pipelines-kueue-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-core/next/tektoncd-chains/component-controller-next.yaml b/.konflux/openshift-pipelines-core/next/tektoncd-chains/component-controller-next.yaml deleted file mode 100644 index acfda9b9..00000000 --- a/.konflux/openshift-pipelines-core/next/tektoncd-chains/component-controller-next.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: tektoncd-chains-next-controller -spec: - componentName: controller - application: openshift-pipelines-core-next - build-nudges-ref: - - operator-next-bundle - source: - git: - url: https://github.com/openshift-pipelines/tektoncd-chains.git - dockerfileUrl: .konflux/dockerfiles/controller.Dockerfile - revision: next diff --git a/.konflux/openshift-pipelines-core/next/tektoncd-chains/image-controller-next.yaml b/.konflux/openshift-pipelines-core/next/tektoncd-chains/image-controller-next.yaml deleted file mode 100644 index 79b8f2e2..00000000 --- a/.konflux/openshift-pipelines-core/next/tektoncd-chains/image-controller-next.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: tektoncd-chains-next-controller - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: tektoncd-chains-next-controller - appstudio.redhat.com/application: openshift-pipelines-core-next -spec: - image: - name: pipelines-chains-controller-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-core/next/tektoncd-git-clone/component-git-init-next.yaml b/.konflux/openshift-pipelines-core/next/tektoncd-git-clone/component-git-init-next.yaml deleted file mode 100644 index c011bbec..00000000 --- a/.konflux/openshift-pipelines-core/next/tektoncd-git-clone/component-git-init-next.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: tektoncd-git-clone-next-git-init -spec: - componentName: git-init - application: openshift-pipelines-core-next - build-nudges-ref: - - operator-next-bundle - source: - git: - url: https://github.com/openshift-pipelines/tektoncd-git-clone.git - dockerfileUrl: .konflux/dockerfiles/git-init.Dockerfile - revision: next diff --git a/.konflux/openshift-pipelines-core/next/tektoncd-git-clone/image-git-init-next.yaml b/.konflux/openshift-pipelines-core/next/tektoncd-git-clone/image-git-init-next.yaml deleted file mode 100644 index d82ccef7..00000000 --- a/.konflux/openshift-pipelines-core/next/tektoncd-git-clone/image-git-init-next.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: tektoncd-git-clone-next-git-init - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: tektoncd-git-clone-next-git-init - appstudio.redhat.com/application: openshift-pipelines-core-next -spec: - image: - name: git-init-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-core/next/tektoncd-hub/component-api-next.yaml b/.konflux/openshift-pipelines-core/next/tektoncd-hub/component-api-next.yaml deleted file mode 100644 index e5b2c15b..00000000 --- a/.konflux/openshift-pipelines-core/next/tektoncd-hub/component-api-next.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: tektoncd-hub-next-api -spec: - componentName: api - application: openshift-pipelines-core-next - build-nudges-ref: - - operator-next-bundle - source: - git: - url: https://github.com/openshift-pipelines/tektoncd-hub.git - dockerfileUrl: .konflux/dockerfiles/api.Dockerfile - revision: next diff --git a/.konflux/openshift-pipelines-core/next/tektoncd-hub/component-db-migration-next.yaml b/.konflux/openshift-pipelines-core/next/tektoncd-hub/component-db-migration-next.yaml deleted file mode 100644 index 6ff849fb..00000000 --- a/.konflux/openshift-pipelines-core/next/tektoncd-hub/component-db-migration-next.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: tektoncd-hub-next-db-migration -spec: - componentName: db-migration - application: openshift-pipelines-core-next - build-nudges-ref: - - operator-next-bundle - source: - git: - url: https://github.com/openshift-pipelines/tektoncd-hub.git - dockerfileUrl: .konflux/dockerfiles/db-migration.Dockerfile - revision: next diff --git a/.konflux/openshift-pipelines-core/next/tektoncd-hub/component-ui-next.yaml b/.konflux/openshift-pipelines-core/next/tektoncd-hub/component-ui-next.yaml deleted file mode 100644 index 54898d35..00000000 --- a/.konflux/openshift-pipelines-core/next/tektoncd-hub/component-ui-next.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: tektoncd-hub-next-ui -spec: - componentName: ui - application: openshift-pipelines-core-next - build-nudges-ref: - - operator-next-bundle - source: - git: - url: https://github.com/openshift-pipelines/tektoncd-hub.git - dockerfileUrl: .konflux/dockerfiles/ui.Dockerfile - revision: next diff --git a/.konflux/openshift-pipelines-core/next/tektoncd-hub/image-api-next.yaml b/.konflux/openshift-pipelines-core/next/tektoncd-hub/image-api-next.yaml deleted file mode 100644 index c1b275e1..00000000 --- a/.konflux/openshift-pipelines-core/next/tektoncd-hub/image-api-next.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: tektoncd-hub-next-api - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: tektoncd-hub-next-api - appstudio.redhat.com/application: openshift-pipelines-core-next -spec: - image: - name: pipelines-hub-api-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-core/next/tektoncd-hub/image-db-migration-next.yaml b/.konflux/openshift-pipelines-core/next/tektoncd-hub/image-db-migration-next.yaml deleted file mode 100644 index 8288ee4f..00000000 --- a/.konflux/openshift-pipelines-core/next/tektoncd-hub/image-db-migration-next.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: tektoncd-hub-next-db-migration - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: tektoncd-hub-next-db-migration - appstudio.redhat.com/application: openshift-pipelines-core-next -spec: - image: - name: pipelines-hub-db-migration-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-core/next/tektoncd-hub/image-ui-next.yaml b/.konflux/openshift-pipelines-core/next/tektoncd-hub/image-ui-next.yaml deleted file mode 100644 index 7d76672a..00000000 --- a/.konflux/openshift-pipelines-core/next/tektoncd-hub/image-ui-next.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: tektoncd-hub-next-ui - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: tektoncd-hub-next-ui - appstudio.redhat.com/application: openshift-pipelines-core-next -spec: - image: - name: pipelines-hub-ui-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-core/next/tektoncd-pipeline/component-controller-next.yaml b/.konflux/openshift-pipelines-core/next/tektoncd-pipeline/component-controller-next.yaml deleted file mode 100644 index 9ddc09e9..00000000 --- a/.konflux/openshift-pipelines-core/next/tektoncd-pipeline/component-controller-next.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: tektoncd-pipeline-next-controller -spec: - componentName: controller - application: openshift-pipelines-core-next - build-nudges-ref: - - operator-next-bundle - source: - git: - url: https://github.com/openshift-pipelines/tektoncd-pipeline.git - dockerfileUrl: .konflux/dockerfiles/controller.Dockerfile - revision: next diff --git a/.konflux/openshift-pipelines-core/next/tektoncd-pipeline/component-entrypoint-next.yaml b/.konflux/openshift-pipelines-core/next/tektoncd-pipeline/component-entrypoint-next.yaml deleted file mode 100644 index fcc6919d..00000000 --- a/.konflux/openshift-pipelines-core/next/tektoncd-pipeline/component-entrypoint-next.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: tektoncd-pipeline-next-entrypoint -spec: - componentName: entrypoint - application: openshift-pipelines-core-next - build-nudges-ref: - - operator-next-bundle - source: - git: - url: https://github.com/openshift-pipelines/tektoncd-pipeline.git - dockerfileUrl: .konflux/dockerfiles/entrypoint.Dockerfile - revision: next diff --git a/.konflux/openshift-pipelines-core/next/tektoncd-pipeline/component-events-next.yaml b/.konflux/openshift-pipelines-core/next/tektoncd-pipeline/component-events-next.yaml deleted file mode 100644 index c964c593..00000000 --- a/.konflux/openshift-pipelines-core/next/tektoncd-pipeline/component-events-next.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: tektoncd-pipeline-next-events -spec: - componentName: events - application: openshift-pipelines-core-next - build-nudges-ref: - - operator-next-bundle - source: - git: - url: https://github.com/openshift-pipelines/tektoncd-pipeline.git - dockerfileUrl: .konflux/dockerfiles/events.Dockerfile - revision: next diff --git a/.konflux/openshift-pipelines-core/next/tektoncd-pipeline/component-nop-next.yaml b/.konflux/openshift-pipelines-core/next/tektoncd-pipeline/component-nop-next.yaml deleted file mode 100644 index 5671e990..00000000 --- a/.konflux/openshift-pipelines-core/next/tektoncd-pipeline/component-nop-next.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: tektoncd-pipeline-next-nop -spec: - componentName: nop - application: openshift-pipelines-core-next - build-nudges-ref: - - operator-next-bundle - source: - git: - url: https://github.com/openshift-pipelines/tektoncd-pipeline.git - dockerfileUrl: .konflux/dockerfiles/nop.Dockerfile - revision: next diff --git a/.konflux/openshift-pipelines-core/next/tektoncd-pipeline/component-resolvers-next.yaml b/.konflux/openshift-pipelines-core/next/tektoncd-pipeline/component-resolvers-next.yaml deleted file mode 100644 index 49f50816..00000000 --- a/.konflux/openshift-pipelines-core/next/tektoncd-pipeline/component-resolvers-next.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: tektoncd-pipeline-next-resolvers -spec: - componentName: resolvers - application: openshift-pipelines-core-next - build-nudges-ref: - - operator-next-bundle - source: - git: - url: https://github.com/openshift-pipelines/tektoncd-pipeline.git - dockerfileUrl: .konflux/dockerfiles/resolvers.Dockerfile - revision: next diff --git a/.konflux/openshift-pipelines-core/next/tektoncd-pipeline/component-sidecarlogresults-next.yaml b/.konflux/openshift-pipelines-core/next/tektoncd-pipeline/component-sidecarlogresults-next.yaml deleted file mode 100644 index bb69817f..00000000 --- a/.konflux/openshift-pipelines-core/next/tektoncd-pipeline/component-sidecarlogresults-next.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: tektoncd-pipeline-next-sidecarlogresults -spec: - componentName: sidecarlogresults - application: openshift-pipelines-core-next - build-nudges-ref: - - operator-next-bundle - source: - git: - url: https://github.com/openshift-pipelines/tektoncd-pipeline.git - dockerfileUrl: .konflux/dockerfiles/sidecarlogresults.Dockerfile - revision: next diff --git a/.konflux/openshift-pipelines-core/next/tektoncd-pipeline/component-webhook-next.yaml b/.konflux/openshift-pipelines-core/next/tektoncd-pipeline/component-webhook-next.yaml deleted file mode 100644 index 41aa3c3d..00000000 --- a/.konflux/openshift-pipelines-core/next/tektoncd-pipeline/component-webhook-next.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: tektoncd-pipeline-next-webhook -spec: - componentName: webhook - application: openshift-pipelines-core-next - build-nudges-ref: - - operator-next-bundle - source: - git: - url: https://github.com/openshift-pipelines/tektoncd-pipeline.git - dockerfileUrl: .konflux/dockerfiles/webhook.Dockerfile - revision: next diff --git a/.konflux/openshift-pipelines-core/next/tektoncd-pipeline/component-workingdirinit-next.yaml b/.konflux/openshift-pipelines-core/next/tektoncd-pipeline/component-workingdirinit-next.yaml deleted file mode 100644 index 699bd547..00000000 --- a/.konflux/openshift-pipelines-core/next/tektoncd-pipeline/component-workingdirinit-next.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: tektoncd-pipeline-next-workingdirinit -spec: - componentName: workingdirinit - application: openshift-pipelines-core-next - build-nudges-ref: - - operator-next-bundle - source: - git: - url: https://github.com/openshift-pipelines/tektoncd-pipeline.git - dockerfileUrl: .konflux/dockerfiles/workingdirinit.Dockerfile - revision: next diff --git a/.konflux/openshift-pipelines-core/next/tektoncd-pipeline/image-controller-next.yaml b/.konflux/openshift-pipelines-core/next/tektoncd-pipeline/image-controller-next.yaml deleted file mode 100644 index df626f67..00000000 --- a/.konflux/openshift-pipelines-core/next/tektoncd-pipeline/image-controller-next.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: tektoncd-pipeline-next-controller - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: tektoncd-pipeline-next-controller - appstudio.redhat.com/application: openshift-pipelines-core-next -spec: - image: - name: pipelines-controller-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-core/next/tektoncd-pipeline/image-entrypoint-next.yaml b/.konflux/openshift-pipelines-core/next/tektoncd-pipeline/image-entrypoint-next.yaml deleted file mode 100644 index 9e6cbdd0..00000000 --- a/.konflux/openshift-pipelines-core/next/tektoncd-pipeline/image-entrypoint-next.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: tektoncd-pipeline-next-entrypoint - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: tektoncd-pipeline-next-entrypoint - appstudio.redhat.com/application: openshift-pipelines-core-next -spec: - image: - name: pipelines-entrypoint-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-core/next/tektoncd-pipeline/image-events-next.yaml b/.konflux/openshift-pipelines-core/next/tektoncd-pipeline/image-events-next.yaml deleted file mode 100644 index 0bea0692..00000000 --- a/.konflux/openshift-pipelines-core/next/tektoncd-pipeline/image-events-next.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: tektoncd-pipeline-next-events - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: tektoncd-pipeline-next-events - appstudio.redhat.com/application: openshift-pipelines-core-next -spec: - image: - name: pipelines-events-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-core/next/tektoncd-pipeline/image-nop-next.yaml b/.konflux/openshift-pipelines-core/next/tektoncd-pipeline/image-nop-next.yaml deleted file mode 100644 index 204eeeaf..00000000 --- a/.konflux/openshift-pipelines-core/next/tektoncd-pipeline/image-nop-next.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: tektoncd-pipeline-next-nop - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: tektoncd-pipeline-next-nop - appstudio.redhat.com/application: openshift-pipelines-core-next -spec: - image: - name: pipelines-nop-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-core/next/tektoncd-pipeline/image-resolvers-next.yaml b/.konflux/openshift-pipelines-core/next/tektoncd-pipeline/image-resolvers-next.yaml deleted file mode 100644 index 571ad8e5..00000000 --- a/.konflux/openshift-pipelines-core/next/tektoncd-pipeline/image-resolvers-next.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: tektoncd-pipeline-next-resolvers - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: tektoncd-pipeline-next-resolvers - appstudio.redhat.com/application: openshift-pipelines-core-next -spec: - image: - name: pipelines-resolvers-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-core/next/tektoncd-pipeline/image-sidecarlogresults-next.yaml b/.konflux/openshift-pipelines-core/next/tektoncd-pipeline/image-sidecarlogresults-next.yaml deleted file mode 100644 index a14debc9..00000000 --- a/.konflux/openshift-pipelines-core/next/tektoncd-pipeline/image-sidecarlogresults-next.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: tektoncd-pipeline-next-sidecarlogresults - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: tektoncd-pipeline-next-sidecarlogresults - appstudio.redhat.com/application: openshift-pipelines-core-next -spec: - image: - name: pipelines-sidecarlogresults-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-core/next/tektoncd-pipeline/image-webhook-next.yaml b/.konflux/openshift-pipelines-core/next/tektoncd-pipeline/image-webhook-next.yaml deleted file mode 100644 index ca2ac25e..00000000 --- a/.konflux/openshift-pipelines-core/next/tektoncd-pipeline/image-webhook-next.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: tektoncd-pipeline-next-webhook - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: tektoncd-pipeline-next-webhook - appstudio.redhat.com/application: openshift-pipelines-core-next -spec: - image: - name: pipelines-webhook-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-core/next/tektoncd-pipeline/image-workingdirinit-next.yaml b/.konflux/openshift-pipelines-core/next/tektoncd-pipeline/image-workingdirinit-next.yaml deleted file mode 100644 index 34c2c9f1..00000000 --- a/.konflux/openshift-pipelines-core/next/tektoncd-pipeline/image-workingdirinit-next.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: tektoncd-pipeline-next-workingdirinit - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: tektoncd-pipeline-next-workingdirinit - appstudio.redhat.com/application: openshift-pipelines-core-next -spec: - image: - name: pipelines-workingdirinit-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-core/next/tektoncd-pruner/component-controller-next.yaml b/.konflux/openshift-pipelines-core/next/tektoncd-pruner/component-controller-next.yaml deleted file mode 100644 index 59d3458c..00000000 --- a/.konflux/openshift-pipelines-core/next/tektoncd-pruner/component-controller-next.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: tektoncd-pruner-next-controller -spec: - componentName: controller - application: openshift-pipelines-core-next - build-nudges-ref: - - operator-next-bundle - source: - git: - url: https://github.com/openshift-pipelines/tektoncd-pruner.git - dockerfileUrl: .konflux/dockerfiles/controller.Dockerfile - revision: next diff --git a/.konflux/openshift-pipelines-core/next/tektoncd-pruner/image-controller-next.yaml b/.konflux/openshift-pipelines-core/next/tektoncd-pruner/image-controller-next.yaml deleted file mode 100644 index d1e44d8c..00000000 --- a/.konflux/openshift-pipelines-core/next/tektoncd-pruner/image-controller-next.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: tektoncd-pruner-next-controller - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: tektoncd-pruner-next-controller - appstudio.redhat.com/application: openshift-pipelines-core-next -spec: - image: - name: pipelines-pruner-controller-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-core/next/tektoncd-results/component-api-next.yaml b/.konflux/openshift-pipelines-core/next/tektoncd-results/component-api-next.yaml deleted file mode 100644 index e707515d..00000000 --- a/.konflux/openshift-pipelines-core/next/tektoncd-results/component-api-next.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: tektoncd-results-next-api -spec: - componentName: api - application: openshift-pipelines-core-next - build-nudges-ref: - - operator-next-bundle - source: - git: - url: https://github.com/openshift-pipelines/tektoncd-results.git - dockerfileUrl: .konflux/dockerfiles/api.Dockerfile - revision: next diff --git a/.konflux/openshift-pipelines-core/next/tektoncd-results/component-retention-policy-agent-next.yaml b/.konflux/openshift-pipelines-core/next/tektoncd-results/component-retention-policy-agent-next.yaml deleted file mode 100644 index 5d196bb1..00000000 --- a/.konflux/openshift-pipelines-core/next/tektoncd-results/component-retention-policy-agent-next.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: tektoncd-results-next-retention-policy-agent -spec: - componentName: retention-policy-agent - application: openshift-pipelines-core-next - build-nudges-ref: - - operator-next-bundle - source: - git: - url: https://github.com/openshift-pipelines/tektoncd-results.git - dockerfileUrl: .konflux/dockerfiles/retention-policy-agent.Dockerfile - revision: next diff --git a/.konflux/openshift-pipelines-core/next/tektoncd-results/component-watcher-next.yaml b/.konflux/openshift-pipelines-core/next/tektoncd-results/component-watcher-next.yaml deleted file mode 100644 index fa2c5f7f..00000000 --- a/.konflux/openshift-pipelines-core/next/tektoncd-results/component-watcher-next.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: tektoncd-results-next-watcher -spec: - componentName: watcher - application: openshift-pipelines-core-next - build-nudges-ref: - - operator-next-bundle - source: - git: - url: https://github.com/openshift-pipelines/tektoncd-results.git - dockerfileUrl: .konflux/dockerfiles/watcher.Dockerfile - revision: next diff --git a/.konflux/openshift-pipelines-core/next/tektoncd-results/image-api-next.yaml b/.konflux/openshift-pipelines-core/next/tektoncd-results/image-api-next.yaml deleted file mode 100644 index d7244c72..00000000 --- a/.konflux/openshift-pipelines-core/next/tektoncd-results/image-api-next.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: tektoncd-results-next-api - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: tektoncd-results-next-api - appstudio.redhat.com/application: openshift-pipelines-core-next -spec: - image: - name: pipelines-results-api-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-core/next/tektoncd-results/image-retention-policy-agent-next.yaml b/.konflux/openshift-pipelines-core/next/tektoncd-results/image-retention-policy-agent-next.yaml deleted file mode 100644 index c2fe59e1..00000000 --- a/.konflux/openshift-pipelines-core/next/tektoncd-results/image-retention-policy-agent-next.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: tektoncd-results-next-retention-policy-agent - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: tektoncd-results-next-retention-policy-agent - appstudio.redhat.com/application: openshift-pipelines-core-next -spec: - image: - name: pipelines-results-retention-policy-agent-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-core/next/tektoncd-results/image-watcher-next.yaml b/.konflux/openshift-pipelines-core/next/tektoncd-results/image-watcher-next.yaml deleted file mode 100644 index a5155b79..00000000 --- a/.konflux/openshift-pipelines-core/next/tektoncd-results/image-watcher-next.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: tektoncd-results-next-watcher - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: tektoncd-results-next-watcher - appstudio.redhat.com/application: openshift-pipelines-core-next -spec: - image: - name: pipelines-results-watcher-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-core/next/tektoncd-triggers/component-controller-next.yaml b/.konflux/openshift-pipelines-core/next/tektoncd-triggers/component-controller-next.yaml deleted file mode 100644 index 1b077bd0..00000000 --- a/.konflux/openshift-pipelines-core/next/tektoncd-triggers/component-controller-next.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: tektoncd-triggers-next-controller -spec: - componentName: controller - application: openshift-pipelines-core-next - build-nudges-ref: - - operator-next-bundle - source: - git: - url: https://github.com/openshift-pipelines/tektoncd-triggers.git - dockerfileUrl: .konflux/dockerfiles/controller.Dockerfile - revision: next diff --git a/.konflux/openshift-pipelines-core/next/tektoncd-triggers/component-core-interceptors-next.yaml b/.konflux/openshift-pipelines-core/next/tektoncd-triggers/component-core-interceptors-next.yaml deleted file mode 100644 index e9fc6dd6..00000000 --- a/.konflux/openshift-pipelines-core/next/tektoncd-triggers/component-core-interceptors-next.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: tektoncd-triggers-next-core-interceptors -spec: - componentName: core-interceptors - application: openshift-pipelines-core-next - build-nudges-ref: - - operator-next-bundle - source: - git: - url: https://github.com/openshift-pipelines/tektoncd-triggers.git - dockerfileUrl: .konflux/dockerfiles/core-interceptors.Dockerfile - revision: next diff --git a/.konflux/openshift-pipelines-core/next/tektoncd-triggers/component-eventlistenersink-next.yaml b/.konflux/openshift-pipelines-core/next/tektoncd-triggers/component-eventlistenersink-next.yaml deleted file mode 100644 index f5516fc8..00000000 --- a/.konflux/openshift-pipelines-core/next/tektoncd-triggers/component-eventlistenersink-next.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: tektoncd-triggers-next-eventlistenersink -spec: - componentName: eventlistenersink - application: openshift-pipelines-core-next - build-nudges-ref: - - operator-next-bundle - source: - git: - url: https://github.com/openshift-pipelines/tektoncd-triggers.git - dockerfileUrl: .konflux/dockerfiles/eventlistenersink.Dockerfile - revision: next diff --git a/.konflux/openshift-pipelines-core/next/tektoncd-triggers/component-webhook-next.yaml b/.konflux/openshift-pipelines-core/next/tektoncd-triggers/component-webhook-next.yaml deleted file mode 100644 index ed920f8f..00000000 --- a/.konflux/openshift-pipelines-core/next/tektoncd-triggers/component-webhook-next.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: tektoncd-triggers-next-webhook -spec: - componentName: webhook - application: openshift-pipelines-core-next - build-nudges-ref: - - operator-next-bundle - source: - git: - url: https://github.com/openshift-pipelines/tektoncd-triggers.git - dockerfileUrl: .konflux/dockerfiles/webhook.Dockerfile - revision: next diff --git a/.konflux/openshift-pipelines-core/next/tektoncd-triggers/image-controller-next.yaml b/.konflux/openshift-pipelines-core/next/tektoncd-triggers/image-controller-next.yaml deleted file mode 100644 index 632fcf69..00000000 --- a/.konflux/openshift-pipelines-core/next/tektoncd-triggers/image-controller-next.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: tektoncd-triggers-next-controller - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: tektoncd-triggers-next-controller - appstudio.redhat.com/application: openshift-pipelines-core-next -spec: - image: - name: pipelines-triggers-controller-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-core/next/tektoncd-triggers/image-core-interceptors-next.yaml b/.konflux/openshift-pipelines-core/next/tektoncd-triggers/image-core-interceptors-next.yaml deleted file mode 100644 index 06677b98..00000000 --- a/.konflux/openshift-pipelines-core/next/tektoncd-triggers/image-core-interceptors-next.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: tektoncd-triggers-next-core-interceptors - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: tektoncd-triggers-next-core-interceptors - appstudio.redhat.com/application: openshift-pipelines-core-next -spec: - image: - name: pipelines-triggers-core-interceptors-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-core/next/tektoncd-triggers/image-eventlistenersink-next.yaml b/.konflux/openshift-pipelines-core/next/tektoncd-triggers/image-eventlistenersink-next.yaml deleted file mode 100644 index 1ae76f65..00000000 --- a/.konflux/openshift-pipelines-core/next/tektoncd-triggers/image-eventlistenersink-next.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: tektoncd-triggers-next-eventlistenersink - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: tektoncd-triggers-next-eventlistenersink - appstudio.redhat.com/application: openshift-pipelines-core-next -spec: - image: - name: pipelines-triggers-eventlistenersink-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-core/next/tektoncd-triggers/image-webhook-next.yaml b/.konflux/openshift-pipelines-core/next/tektoncd-triggers/image-webhook-next.yaml deleted file mode 100644 index f304210d..00000000 --- a/.konflux/openshift-pipelines-core/next/tektoncd-triggers/image-webhook-next.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: tektoncd-triggers-next-webhook - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: tektoncd-triggers-next-webhook - appstudio.redhat.com/application: openshift-pipelines-core-next -spec: - image: - name: pipelines-triggers-webhook-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-core/next/tests.yaml b/.konflux/openshift-pipelines-core/next/tests.yaml deleted file mode 100644 index 787eae2d..00000000 --- a/.konflux/openshift-pipelines-core/next/tests.yaml +++ /dev/null @@ -1,27 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1beta2 -kind: IntegrationTestScenario -metadata: - name: openshift-pipelines-core-next-enterprise-contract -spec: - application: openshift-pipelines-core-next - contexts: - - description: execute the integration test for a component - name: component - params: - - name: POLICY_CONFIGURATION - value: tekton-ecosystem-tenant/tekton-ecosystem-tenant-containers - - name: TIMEOUT - value: "15m0s" - - name: SINGLE_COMPONENT - value: "true" - resolverRef: - params: - - name: url - value: "https://github.com/konflux-ci/build-definitions" - - name: revision - value: main - - name: pathInRepo - value: pipelines/enterprise-contract.yaml - resolver: git diff --git a/.konflux/openshift-pipelines-core/role.yaml b/.konflux/openshift-pipelines-core/role.yaml deleted file mode 100644 index 5b247b4e..00000000 --- a/.konflux/openshift-pipelines-core/role.yaml +++ /dev/null @@ -1,14 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: rbac.authorization.k8s.io/v1 -kind: RoleBinding -metadata: - name: release-plan-rolebinding-openshift-pipelines-core -subjects: - - kind: ServiceAccount - name: release-registry-openshift-pipelines-core - apiGroup: "" -roleRef: - kind: ClusterRole - name: konflux-releaser-bot-actions - apiGroup: rbac.authorization.k8s.io \ No newline at end of file diff --git a/.konflux/openshift-pipelines-core/service-account.yaml b/.konflux/openshift-pipelines-core/service-account.yaml deleted file mode 100644 index f09221f1..00000000 --- a/.konflux/openshift-pipelines-core/service-account.yaml +++ /dev/null @@ -1,10 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: v1 -imagePullSecrets: - - name: release-registry-openshift-pipelines-quay -kind: ServiceAccount -metadata: - name: release-registry-openshift-pipelines-core -secrets: - - name: release-registry-openshift-pipelines-quay \ No newline at end of file diff --git a/.konflux/openshift-pipelines-index-4.16/1-22/application.yaml b/.konflux/openshift-pipelines-index-4.16/1-22/application.yaml deleted file mode 100644 index 6b6244ec..00000000 --- a/.konflux/openshift-pipelines-index-4.16/1-22/application.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.16 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Application -metadata: - name: openshift-pipelines-index-4-16-1-22 -spec: - displayName: openshift-pipelines-index-4-16-1-22 diff --git a/.konflux/openshift-pipelines-index-4.16/1-22/operator/component-index-4.16-1.22.yaml b/.konflux/openshift-pipelines-index-4.16/1-22/operator/component-index-4.16-1.22.yaml deleted file mode 100644 index ddbd7c0e..00000000 --- a/.konflux/openshift-pipelines-index-4.16/1-22/operator/component-index-4.16-1.22.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.16 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: operator-1-22-index-4-16 -spec: - componentName: index-4-16 - application: openshift-pipelines-index-4-16-1-22 - build-nudges-ref: - - - source: - git: - url: https://github.com/openshift-pipelines/operator.git - dockerfileUrl: .konflux/dockerfiles/index-4.16.Dockerfile - revision: release-v1.22.x diff --git a/.konflux/openshift-pipelines-index-4.16/1-22/operator/image-index-4.16-1.22.yaml b/.konflux/openshift-pipelines-index-4.16/1-22/operator/image-index-4.16-1.22.yaml deleted file mode 100644 index 71d42f60..00000000 --- a/.konflux/openshift-pipelines-index-4.16/1-22/operator/image-index-4.16-1.22.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.16 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: operator-1-22-index-4-16 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: operator-1-22-index-4-16 - appstudio.redhat.com/application: openshift-pipelines-index-4-16-1-22 -spec: - image: - name: operator/pipelines-index-4.16 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-index-4.16/1-22/release-plan.yaml b/.konflux/openshift-pipelines-index-4.16/1-22/release-plan.yaml deleted file mode 100644 index 4e8397b9..00000000 --- a/.konflux/openshift-pipelines-index-4.16/1-22/release-plan.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.16 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ReleasePlan -metadata: - labels: - release.appstudio.openshift.io/auto-release: "true" - release.appstudio.openshift.io/standing-attribution: 'true' - name: openshift-pipelines-index-4-16-1-22-rp -spec: - application: openshift-pipelines-index-4-16-1-22 - tenantPipeline: - serviceAccountName: release-registry-openshift-pipelines-index-4-16 - pipelineRef: - resolver: git - params: - - name: url - value: https://github.com/openshift-pipelines/hack.git - - name: revision - # value: release-v1.22.x - value: main - - name: pathInRepo - value: pipelines/release-pipeline.yaml - params: - - name: release_version - value: "1.22.0" - - name: release_to_github - value: "false" diff --git a/.konflux/openshift-pipelines-index-4.16/1-22/tests.yaml b/.konflux/openshift-pipelines-index-4.16/1-22/tests.yaml deleted file mode 100644 index 6a8fc859..00000000 --- a/.konflux/openshift-pipelines-index-4.16/1-22/tests.yaml +++ /dev/null @@ -1,27 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.16 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1beta2 -kind: IntegrationTestScenario -metadata: - name: openshift-pipelines-index-4-16-1-22-enterprise-contract -spec: - application: openshift-pipelines-index-4-16-1-22 - contexts: - - description: execute the integration test for a component - name: component - params: - - name: POLICY_CONFIGURATION - value: tekton-ecosystem-tenant/tekton-ecosystem-tenant-indexes - - name: TIMEOUT - value: "15m0s" - - name: SINGLE_COMPONENT - value: "true" - resolverRef: - params: - - name: url - value: "https://github.com/konflux-ci/build-definitions" - - name: revision - value: main - - name: pathInRepo - value: pipelines/enterprise-contract.yaml - resolver: git diff --git a/.konflux/openshift-pipelines-index-4.16/next/application.yaml b/.konflux/openshift-pipelines-index-4.16/next/application.yaml deleted file mode 100644 index c8cc3f91..00000000 --- a/.konflux/openshift-pipelines-index-4.16/next/application.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.16 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Application -metadata: - name: openshift-pipelines-index-4-16-next -spec: - displayName: openshift-pipelines-index-4-16-next diff --git a/.konflux/openshift-pipelines-index-4.16/next/operator/component-index-4.16-next.yaml b/.konflux/openshift-pipelines-index-4.16/next/operator/component-index-4.16-next.yaml deleted file mode 100644 index 8057e161..00000000 --- a/.konflux/openshift-pipelines-index-4.16/next/operator/component-index-4.16-next.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.16 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: operator-next-index-4-16 -spec: - componentName: index-4-16 - application: openshift-pipelines-index-4-16-next - build-nudges-ref: - - - source: - git: - url: https://github.com/openshift-pipelines/operator.git - dockerfileUrl: .konflux/dockerfiles/index-4.16.Dockerfile - revision: next diff --git a/.konflux/openshift-pipelines-index-4.16/next/operator/image-index-4.16-next.yaml b/.konflux/openshift-pipelines-index-4.16/next/operator/image-index-4.16-next.yaml deleted file mode 100644 index f7cecb88..00000000 --- a/.konflux/openshift-pipelines-index-4.16/next/operator/image-index-4.16-next.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.16 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: operator-next-index-4-16 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: operator-next-index-4-16 - appstudio.redhat.com/application: openshift-pipelines-index-4-16-next -spec: - image: - name: operator/pipelines-index-4.16 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-index-4.16/next/release-plan.yaml b/.konflux/openshift-pipelines-index-4.16/next/release-plan.yaml deleted file mode 100644 index 69bc7879..00000000 --- a/.konflux/openshift-pipelines-index-4.16/next/release-plan.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.16 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ReleasePlan -metadata: - labels: - release.appstudio.openshift.io/auto-release: "true" - release.appstudio.openshift.io/standing-attribution: 'true' - name: openshift-pipelines-index-4-16-next-rp -spec: - application: openshift-pipelines-index-4-16-next - tenantPipeline: - serviceAccountName: release-registry-openshift-pipelines-index-4-16 - pipelineRef: - resolver: git - params: - - name: url - value: https://github.com/openshift-pipelines/hack.git - - name: revision - # value: next - value: main - - name: pathInRepo - value: pipelines/release-pipeline.yaml - params: - - name: release_version - value: "next" - - name: release_to_github - value: "false" diff --git a/.konflux/openshift-pipelines-index-4.16/next/tests.yaml b/.konflux/openshift-pipelines-index-4.16/next/tests.yaml deleted file mode 100644 index 22d498c5..00000000 --- a/.konflux/openshift-pipelines-index-4.16/next/tests.yaml +++ /dev/null @@ -1,27 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.16 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1beta2 -kind: IntegrationTestScenario -metadata: - name: openshift-pipelines-index-4-16-next-enterprise-contract -spec: - application: openshift-pipelines-index-4-16-next - contexts: - - description: execute the integration test for a component - name: component - params: - - name: POLICY_CONFIGURATION - value: tekton-ecosystem-tenant/tekton-ecosystem-tenant-indexes - - name: TIMEOUT - value: "15m0s" - - name: SINGLE_COMPONENT - value: "true" - resolverRef: - params: - - name: url - value: "https://github.com/konflux-ci/build-definitions" - - name: revision - value: main - - name: pathInRepo - value: pipelines/enterprise-contract.yaml - resolver: git diff --git a/.konflux/openshift-pipelines-index-4.16/role.yaml b/.konflux/openshift-pipelines-index-4.16/role.yaml deleted file mode 100644 index 5471e5ed..00000000 --- a/.konflux/openshift-pipelines-index-4.16/role.yaml +++ /dev/null @@ -1,14 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.16 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: rbac.authorization.k8s.io/v1 -kind: RoleBinding -metadata: - name: release-plan-rolebinding-openshift-pipelines-index-4-16 -subjects: - - kind: ServiceAccount - name: release-registry-openshift-pipelines-index-4-16 - apiGroup: "" -roleRef: - kind: ClusterRole - name: konflux-releaser-bot-actions - apiGroup: rbac.authorization.k8s.io \ No newline at end of file diff --git a/.konflux/openshift-pipelines-index-4.16/service-account.yaml b/.konflux/openshift-pipelines-index-4.16/service-account.yaml deleted file mode 100644 index 5c4436f8..00000000 --- a/.konflux/openshift-pipelines-index-4.16/service-account.yaml +++ /dev/null @@ -1,10 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.16 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: v1 -imagePullSecrets: - - name: release-registry-openshift-pipelines-quay -kind: ServiceAccount -metadata: - name: release-registry-openshift-pipelines-index-4-16 -secrets: - - name: release-registry-openshift-pipelines-quay \ No newline at end of file diff --git a/.konflux/openshift-pipelines-index-4.17/1-22/application.yaml b/.konflux/openshift-pipelines-index-4.17/1-22/application.yaml deleted file mode 100644 index e72a47ca..00000000 --- a/.konflux/openshift-pipelines-index-4.17/1-22/application.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.17 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Application -metadata: - name: openshift-pipelines-index-4-17-1-22 -spec: - displayName: openshift-pipelines-index-4-17-1-22 diff --git a/.konflux/openshift-pipelines-index-4.17/1-22/operator/component-index-4.17-1.22.yaml b/.konflux/openshift-pipelines-index-4.17/1-22/operator/component-index-4.17-1.22.yaml deleted file mode 100644 index 887363b4..00000000 --- a/.konflux/openshift-pipelines-index-4.17/1-22/operator/component-index-4.17-1.22.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.17 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: operator-1-22-index-4-17 -spec: - componentName: index-4-17 - application: openshift-pipelines-index-4-17-1-22 - build-nudges-ref: - - - source: - git: - url: https://github.com/openshift-pipelines/operator.git - dockerfileUrl: .konflux/dockerfiles/index-4.17.Dockerfile - revision: release-v1.22.x diff --git a/.konflux/openshift-pipelines-index-4.17/1-22/operator/image-index-4.17-1.22.yaml b/.konflux/openshift-pipelines-index-4.17/1-22/operator/image-index-4.17-1.22.yaml deleted file mode 100644 index 9cd7e7fc..00000000 --- a/.konflux/openshift-pipelines-index-4.17/1-22/operator/image-index-4.17-1.22.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.17 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: operator-1-22-index-4-17 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: operator-1-22-index-4-17 - appstudio.redhat.com/application: openshift-pipelines-index-4-17-1-22 -spec: - image: - name: operator/pipelines-index-4.17 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-index-4.17/1-22/release-plan.yaml b/.konflux/openshift-pipelines-index-4.17/1-22/release-plan.yaml deleted file mode 100644 index d48b4470..00000000 --- a/.konflux/openshift-pipelines-index-4.17/1-22/release-plan.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.17 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ReleasePlan -metadata: - labels: - release.appstudio.openshift.io/auto-release: "true" - release.appstudio.openshift.io/standing-attribution: 'true' - name: openshift-pipelines-index-4-17-1-22-rp -spec: - application: openshift-pipelines-index-4-17-1-22 - tenantPipeline: - serviceAccountName: release-registry-openshift-pipelines-index-4-17 - pipelineRef: - resolver: git - params: - - name: url - value: https://github.com/openshift-pipelines/hack.git - - name: revision - # value: release-v1.22.x - value: main - - name: pathInRepo - value: pipelines/release-pipeline.yaml - params: - - name: release_version - value: "1.22.0" - - name: release_to_github - value: "false" diff --git a/.konflux/openshift-pipelines-index-4.17/1-22/tests.yaml b/.konflux/openshift-pipelines-index-4.17/1-22/tests.yaml deleted file mode 100644 index e19158f9..00000000 --- a/.konflux/openshift-pipelines-index-4.17/1-22/tests.yaml +++ /dev/null @@ -1,27 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.17 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1beta2 -kind: IntegrationTestScenario -metadata: - name: openshift-pipelines-index-4-17-1-22-enterprise-contract -spec: - application: openshift-pipelines-index-4-17-1-22 - contexts: - - description: execute the integration test for a component - name: component - params: - - name: POLICY_CONFIGURATION - value: tekton-ecosystem-tenant/tekton-ecosystem-tenant-indexes - - name: TIMEOUT - value: "15m0s" - - name: SINGLE_COMPONENT - value: "true" - resolverRef: - params: - - name: url - value: "https://github.com/konflux-ci/build-definitions" - - name: revision - value: main - - name: pathInRepo - value: pipelines/enterprise-contract.yaml - resolver: git diff --git a/.konflux/openshift-pipelines-index-4.17/next/application.yaml b/.konflux/openshift-pipelines-index-4.17/next/application.yaml deleted file mode 100644 index 804c242e..00000000 --- a/.konflux/openshift-pipelines-index-4.17/next/application.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.17 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Application -metadata: - name: openshift-pipelines-index-4-17-next -spec: - displayName: openshift-pipelines-index-4-17-next diff --git a/.konflux/openshift-pipelines-index-4.17/next/operator/component-index-4.17-next.yaml b/.konflux/openshift-pipelines-index-4.17/next/operator/component-index-4.17-next.yaml deleted file mode 100644 index 16eb1a66..00000000 --- a/.konflux/openshift-pipelines-index-4.17/next/operator/component-index-4.17-next.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.17 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: operator-next-index-4-17 -spec: - componentName: index-4-17 - application: openshift-pipelines-index-4-17-next - build-nudges-ref: - - - source: - git: - url: https://github.com/openshift-pipelines/operator.git - dockerfileUrl: .konflux/dockerfiles/index-4.17.Dockerfile - revision: next diff --git a/.konflux/openshift-pipelines-index-4.17/next/operator/image-index-4.17-next.yaml b/.konflux/openshift-pipelines-index-4.17/next/operator/image-index-4.17-next.yaml deleted file mode 100644 index 2110e2dd..00000000 --- a/.konflux/openshift-pipelines-index-4.17/next/operator/image-index-4.17-next.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.17 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: operator-next-index-4-17 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: operator-next-index-4-17 - appstudio.redhat.com/application: openshift-pipelines-index-4-17-next -spec: - image: - name: operator/pipelines-index-4.17 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-index-4.17/next/release-plan.yaml b/.konflux/openshift-pipelines-index-4.17/next/release-plan.yaml deleted file mode 100644 index 30a9d49f..00000000 --- a/.konflux/openshift-pipelines-index-4.17/next/release-plan.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.17 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ReleasePlan -metadata: - labels: - release.appstudio.openshift.io/auto-release: "true" - release.appstudio.openshift.io/standing-attribution: 'true' - name: openshift-pipelines-index-4-17-next-rp -spec: - application: openshift-pipelines-index-4-17-next - tenantPipeline: - serviceAccountName: release-registry-openshift-pipelines-index-4-17 - pipelineRef: - resolver: git - params: - - name: url - value: https://github.com/openshift-pipelines/hack.git - - name: revision - # value: next - value: main - - name: pathInRepo - value: pipelines/release-pipeline.yaml - params: - - name: release_version - value: "next" - - name: release_to_github - value: "false" diff --git a/.konflux/openshift-pipelines-index-4.17/next/tests.yaml b/.konflux/openshift-pipelines-index-4.17/next/tests.yaml deleted file mode 100644 index dedc8076..00000000 --- a/.konflux/openshift-pipelines-index-4.17/next/tests.yaml +++ /dev/null @@ -1,27 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.17 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1beta2 -kind: IntegrationTestScenario -metadata: - name: openshift-pipelines-index-4-17-next-enterprise-contract -spec: - application: openshift-pipelines-index-4-17-next - contexts: - - description: execute the integration test for a component - name: component - params: - - name: POLICY_CONFIGURATION - value: tekton-ecosystem-tenant/tekton-ecosystem-tenant-indexes - - name: TIMEOUT - value: "15m0s" - - name: SINGLE_COMPONENT - value: "true" - resolverRef: - params: - - name: url - value: "https://github.com/konflux-ci/build-definitions" - - name: revision - value: main - - name: pathInRepo - value: pipelines/enterprise-contract.yaml - resolver: git diff --git a/.konflux/openshift-pipelines-index-4.17/role.yaml b/.konflux/openshift-pipelines-index-4.17/role.yaml deleted file mode 100644 index c39bf491..00000000 --- a/.konflux/openshift-pipelines-index-4.17/role.yaml +++ /dev/null @@ -1,14 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.17 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: rbac.authorization.k8s.io/v1 -kind: RoleBinding -metadata: - name: release-plan-rolebinding-openshift-pipelines-index-4-17 -subjects: - - kind: ServiceAccount - name: release-registry-openshift-pipelines-index-4-17 - apiGroup: "" -roleRef: - kind: ClusterRole - name: konflux-releaser-bot-actions - apiGroup: rbac.authorization.k8s.io \ No newline at end of file diff --git a/.konflux/openshift-pipelines-index-4.17/service-account.yaml b/.konflux/openshift-pipelines-index-4.17/service-account.yaml deleted file mode 100644 index 72813171..00000000 --- a/.konflux/openshift-pipelines-index-4.17/service-account.yaml +++ /dev/null @@ -1,10 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.17 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: v1 -imagePullSecrets: - - name: release-registry-openshift-pipelines-quay -kind: ServiceAccount -metadata: - name: release-registry-openshift-pipelines-index-4-17 -secrets: - - name: release-registry-openshift-pipelines-quay \ No newline at end of file diff --git a/.konflux/openshift-pipelines-index-4.18/1-22/application.yaml b/.konflux/openshift-pipelines-index-4.18/1-22/application.yaml deleted file mode 100644 index 62d46c21..00000000 --- a/.konflux/openshift-pipelines-index-4.18/1-22/application.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.18 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Application -metadata: - name: openshift-pipelines-index-4-18-1-22 -spec: - displayName: openshift-pipelines-index-4-18-1-22 diff --git a/.konflux/openshift-pipelines-index-4.18/1-22/operator/component-index-4.18-1.22.yaml b/.konflux/openshift-pipelines-index-4.18/1-22/operator/component-index-4.18-1.22.yaml deleted file mode 100644 index ef802333..00000000 --- a/.konflux/openshift-pipelines-index-4.18/1-22/operator/component-index-4.18-1.22.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.18 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: operator-1-22-index-4-18 -spec: - componentName: index-4-18 - application: openshift-pipelines-index-4-18-1-22 - build-nudges-ref: - - - source: - git: - url: https://github.com/openshift-pipelines/operator.git - dockerfileUrl: .konflux/dockerfiles/index-4.18.Dockerfile - revision: release-v1.22.x diff --git a/.konflux/openshift-pipelines-index-4.18/1-22/operator/image-index-4.18-1.22.yaml b/.konflux/openshift-pipelines-index-4.18/1-22/operator/image-index-4.18-1.22.yaml deleted file mode 100644 index 74401f82..00000000 --- a/.konflux/openshift-pipelines-index-4.18/1-22/operator/image-index-4.18-1.22.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.18 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: operator-1-22-index-4-18 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: operator-1-22-index-4-18 - appstudio.redhat.com/application: openshift-pipelines-index-4-18-1-22 -spec: - image: - name: operator/pipelines-index-4.18 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-index-4.18/1-22/release-plan.yaml b/.konflux/openshift-pipelines-index-4.18/1-22/release-plan.yaml deleted file mode 100644 index 46486e4c..00000000 --- a/.konflux/openshift-pipelines-index-4.18/1-22/release-plan.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.18 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ReleasePlan -metadata: - labels: - release.appstudio.openshift.io/auto-release: "true" - release.appstudio.openshift.io/standing-attribution: 'true' - name: openshift-pipelines-index-4-18-1-22-rp -spec: - application: openshift-pipelines-index-4-18-1-22 - tenantPipeline: - serviceAccountName: release-registry-openshift-pipelines-index-4-18 - pipelineRef: - resolver: git - params: - - name: url - value: https://github.com/openshift-pipelines/hack.git - - name: revision - # value: release-v1.22.x - value: main - - name: pathInRepo - value: pipelines/release-pipeline.yaml - params: - - name: release_version - value: "1.22.0" - - name: release_to_github - value: "false" diff --git a/.konflux/openshift-pipelines-index-4.18/1-22/tests.yaml b/.konflux/openshift-pipelines-index-4.18/1-22/tests.yaml deleted file mode 100644 index 70d3f477..00000000 --- a/.konflux/openshift-pipelines-index-4.18/1-22/tests.yaml +++ /dev/null @@ -1,27 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.18 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1beta2 -kind: IntegrationTestScenario -metadata: - name: openshift-pipelines-index-4-18-1-22-enterprise-contract -spec: - application: openshift-pipelines-index-4-18-1-22 - contexts: - - description: execute the integration test for a component - name: component - params: - - name: POLICY_CONFIGURATION - value: tekton-ecosystem-tenant/tekton-ecosystem-tenant-indexes - - name: TIMEOUT - value: "15m0s" - - name: SINGLE_COMPONENT - value: "true" - resolverRef: - params: - - name: url - value: "https://github.com/konflux-ci/build-definitions" - - name: revision - value: main - - name: pathInRepo - value: pipelines/enterprise-contract.yaml - resolver: git diff --git a/.konflux/openshift-pipelines-index-4.18/next/application.yaml b/.konflux/openshift-pipelines-index-4.18/next/application.yaml deleted file mode 100644 index 83473b1f..00000000 --- a/.konflux/openshift-pipelines-index-4.18/next/application.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.18 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Application -metadata: - name: openshift-pipelines-index-4-18-next -spec: - displayName: openshift-pipelines-index-4-18-next diff --git a/.konflux/openshift-pipelines-index-4.18/next/operator/component-index-4.18-next.yaml b/.konflux/openshift-pipelines-index-4.18/next/operator/component-index-4.18-next.yaml deleted file mode 100644 index a2bf6434..00000000 --- a/.konflux/openshift-pipelines-index-4.18/next/operator/component-index-4.18-next.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.18 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: operator-next-index-4-18 -spec: - componentName: index-4-18 - application: openshift-pipelines-index-4-18-next - build-nudges-ref: - - - source: - git: - url: https://github.com/openshift-pipelines/operator.git - dockerfileUrl: .konflux/dockerfiles/index-4.18.Dockerfile - revision: next diff --git a/.konflux/openshift-pipelines-index-4.18/next/operator/image-index-4.18-next.yaml b/.konflux/openshift-pipelines-index-4.18/next/operator/image-index-4.18-next.yaml deleted file mode 100644 index 7cb01b3c..00000000 --- a/.konflux/openshift-pipelines-index-4.18/next/operator/image-index-4.18-next.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.18 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: operator-next-index-4-18 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: operator-next-index-4-18 - appstudio.redhat.com/application: openshift-pipelines-index-4-18-next -spec: - image: - name: operator/pipelines-index-4.18 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-index-4.18/next/release-plan.yaml b/.konflux/openshift-pipelines-index-4.18/next/release-plan.yaml deleted file mode 100644 index 1448e937..00000000 --- a/.konflux/openshift-pipelines-index-4.18/next/release-plan.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.18 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ReleasePlan -metadata: - labels: - release.appstudio.openshift.io/auto-release: "true" - release.appstudio.openshift.io/standing-attribution: 'true' - name: openshift-pipelines-index-4-18-next-rp -spec: - application: openshift-pipelines-index-4-18-next - tenantPipeline: - serviceAccountName: release-registry-openshift-pipelines-index-4-18 - pipelineRef: - resolver: git - params: - - name: url - value: https://github.com/openshift-pipelines/hack.git - - name: revision - # value: next - value: main - - name: pathInRepo - value: pipelines/release-pipeline.yaml - params: - - name: release_version - value: "next" - - name: release_to_github - value: "false" diff --git a/.konflux/openshift-pipelines-index-4.18/next/tests.yaml b/.konflux/openshift-pipelines-index-4.18/next/tests.yaml deleted file mode 100644 index 48e19fa4..00000000 --- a/.konflux/openshift-pipelines-index-4.18/next/tests.yaml +++ /dev/null @@ -1,27 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.18 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1beta2 -kind: IntegrationTestScenario -metadata: - name: openshift-pipelines-index-4-18-next-enterprise-contract -spec: - application: openshift-pipelines-index-4-18-next - contexts: - - description: execute the integration test for a component - name: component - params: - - name: POLICY_CONFIGURATION - value: tekton-ecosystem-tenant/tekton-ecosystem-tenant-indexes - - name: TIMEOUT - value: "15m0s" - - name: SINGLE_COMPONENT - value: "true" - resolverRef: - params: - - name: url - value: "https://github.com/konflux-ci/build-definitions" - - name: revision - value: main - - name: pathInRepo - value: pipelines/enterprise-contract.yaml - resolver: git diff --git a/.konflux/openshift-pipelines-index-4.18/role.yaml b/.konflux/openshift-pipelines-index-4.18/role.yaml deleted file mode 100644 index 553af545..00000000 --- a/.konflux/openshift-pipelines-index-4.18/role.yaml +++ /dev/null @@ -1,14 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.18 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: rbac.authorization.k8s.io/v1 -kind: RoleBinding -metadata: - name: release-plan-rolebinding-openshift-pipelines-index-4-18 -subjects: - - kind: ServiceAccount - name: release-registry-openshift-pipelines-index-4-18 - apiGroup: "" -roleRef: - kind: ClusterRole - name: konflux-releaser-bot-actions - apiGroup: rbac.authorization.k8s.io \ No newline at end of file diff --git a/.konflux/openshift-pipelines-index-4.18/service-account.yaml b/.konflux/openshift-pipelines-index-4.18/service-account.yaml deleted file mode 100644 index 92003aaf..00000000 --- a/.konflux/openshift-pipelines-index-4.18/service-account.yaml +++ /dev/null @@ -1,10 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.18 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: v1 -imagePullSecrets: - - name: release-registry-openshift-pipelines-quay -kind: ServiceAccount -metadata: - name: release-registry-openshift-pipelines-index-4-18 -secrets: - - name: release-registry-openshift-pipelines-quay \ No newline at end of file diff --git a/.konflux/openshift-pipelines-index-4.19/1-22/application.yaml b/.konflux/openshift-pipelines-index-4.19/1-22/application.yaml deleted file mode 100644 index eb4c5bae..00000000 --- a/.konflux/openshift-pipelines-index-4.19/1-22/application.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.19 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Application -metadata: - name: openshift-pipelines-index-4-19-1-22 -spec: - displayName: openshift-pipelines-index-4-19-1-22 diff --git a/.konflux/openshift-pipelines-index-4.19/1-22/operator/component-index-4.19-1.22.yaml b/.konflux/openshift-pipelines-index-4.19/1-22/operator/component-index-4.19-1.22.yaml deleted file mode 100644 index 2442da19..00000000 --- a/.konflux/openshift-pipelines-index-4.19/1-22/operator/component-index-4.19-1.22.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.19 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: operator-1-22-index-4-19 -spec: - componentName: index-4-19 - application: openshift-pipelines-index-4-19-1-22 - build-nudges-ref: - - - source: - git: - url: https://github.com/openshift-pipelines/operator.git - dockerfileUrl: .konflux/dockerfiles/index-4.19.Dockerfile - revision: release-v1.22.x diff --git a/.konflux/openshift-pipelines-index-4.19/1-22/operator/image-index-4.19-1.22.yaml b/.konflux/openshift-pipelines-index-4.19/1-22/operator/image-index-4.19-1.22.yaml deleted file mode 100644 index 4281357b..00000000 --- a/.konflux/openshift-pipelines-index-4.19/1-22/operator/image-index-4.19-1.22.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.19 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: operator-1-22-index-4-19 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: operator-1-22-index-4-19 - appstudio.redhat.com/application: openshift-pipelines-index-4-19-1-22 -spec: - image: - name: operator/pipelines-index-4.19 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-index-4.19/1-22/release-plan.yaml b/.konflux/openshift-pipelines-index-4.19/1-22/release-plan.yaml deleted file mode 100644 index 38a6ab19..00000000 --- a/.konflux/openshift-pipelines-index-4.19/1-22/release-plan.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.19 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ReleasePlan -metadata: - labels: - release.appstudio.openshift.io/auto-release: "true" - release.appstudio.openshift.io/standing-attribution: 'true' - name: openshift-pipelines-index-4-19-1-22-rp -spec: - application: openshift-pipelines-index-4-19-1-22 - tenantPipeline: - serviceAccountName: release-registry-openshift-pipelines-index-4-19 - pipelineRef: - resolver: git - params: - - name: url - value: https://github.com/openshift-pipelines/hack.git - - name: revision - # value: release-v1.22.x - value: main - - name: pathInRepo - value: pipelines/release-pipeline.yaml - params: - - name: release_version - value: "1.22.0" - - name: release_to_github - value: "false" diff --git a/.konflux/openshift-pipelines-index-4.19/1-22/tests.yaml b/.konflux/openshift-pipelines-index-4.19/1-22/tests.yaml deleted file mode 100644 index 8b54f238..00000000 --- a/.konflux/openshift-pipelines-index-4.19/1-22/tests.yaml +++ /dev/null @@ -1,27 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.19 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1beta2 -kind: IntegrationTestScenario -metadata: - name: openshift-pipelines-index-4-19-1-22-enterprise-contract -spec: - application: openshift-pipelines-index-4-19-1-22 - contexts: - - description: execute the integration test for a component - name: component - params: - - name: POLICY_CONFIGURATION - value: tekton-ecosystem-tenant/tekton-ecosystem-tenant-indexes - - name: TIMEOUT - value: "15m0s" - - name: SINGLE_COMPONENT - value: "true" - resolverRef: - params: - - name: url - value: "https://github.com/konflux-ci/build-definitions" - - name: revision - value: main - - name: pathInRepo - value: pipelines/enterprise-contract.yaml - resolver: git diff --git a/.konflux/openshift-pipelines-index-4.19/next/application.yaml b/.konflux/openshift-pipelines-index-4.19/next/application.yaml deleted file mode 100644 index d36f00ca..00000000 --- a/.konflux/openshift-pipelines-index-4.19/next/application.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.19 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Application -metadata: - name: openshift-pipelines-index-4-19-next -spec: - displayName: openshift-pipelines-index-4-19-next diff --git a/.konflux/openshift-pipelines-index-4.19/next/operator/component-index-4.19-next.yaml b/.konflux/openshift-pipelines-index-4.19/next/operator/component-index-4.19-next.yaml deleted file mode 100644 index f9bc0ab6..00000000 --- a/.konflux/openshift-pipelines-index-4.19/next/operator/component-index-4.19-next.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.19 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: operator-next-index-4-19 -spec: - componentName: index-4-19 - application: openshift-pipelines-index-4-19-next - build-nudges-ref: - - - source: - git: - url: https://github.com/openshift-pipelines/operator.git - dockerfileUrl: .konflux/dockerfiles/index-4.19.Dockerfile - revision: next diff --git a/.konflux/openshift-pipelines-index-4.19/next/operator/image-index-4.19-next.yaml b/.konflux/openshift-pipelines-index-4.19/next/operator/image-index-4.19-next.yaml deleted file mode 100644 index 93b28a26..00000000 --- a/.konflux/openshift-pipelines-index-4.19/next/operator/image-index-4.19-next.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.19 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: operator-next-index-4-19 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: operator-next-index-4-19 - appstudio.redhat.com/application: openshift-pipelines-index-4-19-next -spec: - image: - name: operator/pipelines-index-4.19 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-index-4.19/next/release-plan.yaml b/.konflux/openshift-pipelines-index-4.19/next/release-plan.yaml deleted file mode 100644 index c1e47daf..00000000 --- a/.konflux/openshift-pipelines-index-4.19/next/release-plan.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.19 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ReleasePlan -metadata: - labels: - release.appstudio.openshift.io/auto-release: "true" - release.appstudio.openshift.io/standing-attribution: 'true' - name: openshift-pipelines-index-4-19-next-rp -spec: - application: openshift-pipelines-index-4-19-next - tenantPipeline: - serviceAccountName: release-registry-openshift-pipelines-index-4-19 - pipelineRef: - resolver: git - params: - - name: url - value: https://github.com/openshift-pipelines/hack.git - - name: revision - # value: next - value: main - - name: pathInRepo - value: pipelines/release-pipeline.yaml - params: - - name: release_version - value: "next" - - name: release_to_github - value: "false" diff --git a/.konflux/openshift-pipelines-index-4.19/next/tests.yaml b/.konflux/openshift-pipelines-index-4.19/next/tests.yaml deleted file mode 100644 index 8fc4c239..00000000 --- a/.konflux/openshift-pipelines-index-4.19/next/tests.yaml +++ /dev/null @@ -1,27 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.19 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1beta2 -kind: IntegrationTestScenario -metadata: - name: openshift-pipelines-index-4-19-next-enterprise-contract -spec: - application: openshift-pipelines-index-4-19-next - contexts: - - description: execute the integration test for a component - name: component - params: - - name: POLICY_CONFIGURATION - value: tekton-ecosystem-tenant/tekton-ecosystem-tenant-indexes - - name: TIMEOUT - value: "15m0s" - - name: SINGLE_COMPONENT - value: "true" - resolverRef: - params: - - name: url - value: "https://github.com/konflux-ci/build-definitions" - - name: revision - value: main - - name: pathInRepo - value: pipelines/enterprise-contract.yaml - resolver: git diff --git a/.konflux/openshift-pipelines-index-4.19/role.yaml b/.konflux/openshift-pipelines-index-4.19/role.yaml deleted file mode 100644 index c6ef5c59..00000000 --- a/.konflux/openshift-pipelines-index-4.19/role.yaml +++ /dev/null @@ -1,14 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.19 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: rbac.authorization.k8s.io/v1 -kind: RoleBinding -metadata: - name: release-plan-rolebinding-openshift-pipelines-index-4-19 -subjects: - - kind: ServiceAccount - name: release-registry-openshift-pipelines-index-4-19 - apiGroup: "" -roleRef: - kind: ClusterRole - name: konflux-releaser-bot-actions - apiGroup: rbac.authorization.k8s.io \ No newline at end of file diff --git a/.konflux/openshift-pipelines-index-4.19/service-account.yaml b/.konflux/openshift-pipelines-index-4.19/service-account.yaml deleted file mode 100644 index f242aed9..00000000 --- a/.konflux/openshift-pipelines-index-4.19/service-account.yaml +++ /dev/null @@ -1,10 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.19 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: v1 -imagePullSecrets: - - name: release-registry-openshift-pipelines-quay -kind: ServiceAccount -metadata: - name: release-registry-openshift-pipelines-index-4-19 -secrets: - - name: release-registry-openshift-pipelines-quay \ No newline at end of file diff --git a/.konflux/openshift-pipelines-index-4.20/1-22/application.yaml b/.konflux/openshift-pipelines-index-4.20/1-22/application.yaml deleted file mode 100644 index b2f30223..00000000 --- a/.konflux/openshift-pipelines-index-4.20/1-22/application.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.20 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Application -metadata: - name: openshift-pipelines-index-4-20-1-22 -spec: - displayName: openshift-pipelines-index-4-20-1-22 diff --git a/.konflux/openshift-pipelines-index-4.20/1-22/operator/component-index-4.20-1.22.yaml b/.konflux/openshift-pipelines-index-4.20/1-22/operator/component-index-4.20-1.22.yaml deleted file mode 100644 index 6f4c85e5..00000000 --- a/.konflux/openshift-pipelines-index-4.20/1-22/operator/component-index-4.20-1.22.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.20 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: operator-1-22-index-4-20 -spec: - componentName: index-4-20 - application: openshift-pipelines-index-4-20-1-22 - build-nudges-ref: - - - source: - git: - url: https://github.com/openshift-pipelines/operator.git - dockerfileUrl: .konflux/dockerfiles/index-4.20.Dockerfile - revision: release-v1.22.x diff --git a/.konflux/openshift-pipelines-index-4.20/1-22/operator/image-index-4.20-1.22.yaml b/.konflux/openshift-pipelines-index-4.20/1-22/operator/image-index-4.20-1.22.yaml deleted file mode 100644 index ed612d51..00000000 --- a/.konflux/openshift-pipelines-index-4.20/1-22/operator/image-index-4.20-1.22.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.20 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: operator-1-22-index-4-20 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: operator-1-22-index-4-20 - appstudio.redhat.com/application: openshift-pipelines-index-4-20-1-22 -spec: - image: - name: operator/pipelines-index-4.20 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-index-4.20/1-22/release-plan.yaml b/.konflux/openshift-pipelines-index-4.20/1-22/release-plan.yaml deleted file mode 100644 index b66e39bd..00000000 --- a/.konflux/openshift-pipelines-index-4.20/1-22/release-plan.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.20 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ReleasePlan -metadata: - labels: - release.appstudio.openshift.io/auto-release: "true" - release.appstudio.openshift.io/standing-attribution: 'true' - name: openshift-pipelines-index-4-20-1-22-rp -spec: - application: openshift-pipelines-index-4-20-1-22 - tenantPipeline: - serviceAccountName: release-registry-openshift-pipelines-index-4-20 - pipelineRef: - resolver: git - params: - - name: url - value: https://github.com/openshift-pipelines/hack.git - - name: revision - # value: release-v1.22.x - value: main - - name: pathInRepo - value: pipelines/release-pipeline.yaml - params: - - name: release_version - value: "1.22.0" - - name: release_to_github - value: "false" diff --git a/.konflux/openshift-pipelines-index-4.20/1-22/tests.yaml b/.konflux/openshift-pipelines-index-4.20/1-22/tests.yaml deleted file mode 100644 index b5cbd16f..00000000 --- a/.konflux/openshift-pipelines-index-4.20/1-22/tests.yaml +++ /dev/null @@ -1,27 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.20 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1beta2 -kind: IntegrationTestScenario -metadata: - name: openshift-pipelines-index-4-20-1-22-enterprise-contract -spec: - application: openshift-pipelines-index-4-20-1-22 - contexts: - - description: execute the integration test for a component - name: component - params: - - name: POLICY_CONFIGURATION - value: tekton-ecosystem-tenant/tekton-ecosystem-tenant-indexes - - name: TIMEOUT - value: "15m0s" - - name: SINGLE_COMPONENT - value: "true" - resolverRef: - params: - - name: url - value: "https://github.com/konflux-ci/build-definitions" - - name: revision - value: main - - name: pathInRepo - value: pipelines/enterprise-contract.yaml - resolver: git diff --git a/.konflux/openshift-pipelines-index-4.20/next/application.yaml b/.konflux/openshift-pipelines-index-4.20/next/application.yaml deleted file mode 100644 index b685bb96..00000000 --- a/.konflux/openshift-pipelines-index-4.20/next/application.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.20 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Application -metadata: - name: openshift-pipelines-index-4-20-next -spec: - displayName: openshift-pipelines-index-4-20-next diff --git a/.konflux/openshift-pipelines-index-4.20/next/operator/component-index-4.20-next.yaml b/.konflux/openshift-pipelines-index-4.20/next/operator/component-index-4.20-next.yaml deleted file mode 100644 index f7b5ddca..00000000 --- a/.konflux/openshift-pipelines-index-4.20/next/operator/component-index-4.20-next.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.20 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: operator-next-index-4-20 -spec: - componentName: index-4-20 - application: openshift-pipelines-index-4-20-next - build-nudges-ref: - - - source: - git: - url: https://github.com/openshift-pipelines/operator.git - dockerfileUrl: .konflux/dockerfiles/index-4.20.Dockerfile - revision: next diff --git a/.konflux/openshift-pipelines-index-4.20/next/operator/image-index-4.20-next.yaml b/.konflux/openshift-pipelines-index-4.20/next/operator/image-index-4.20-next.yaml deleted file mode 100644 index 25a8209e..00000000 --- a/.konflux/openshift-pipelines-index-4.20/next/operator/image-index-4.20-next.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.20 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: operator-next-index-4-20 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: operator-next-index-4-20 - appstudio.redhat.com/application: openshift-pipelines-index-4-20-next -spec: - image: - name: operator/pipelines-index-4.20 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-index-4.20/next/release-plan.yaml b/.konflux/openshift-pipelines-index-4.20/next/release-plan.yaml deleted file mode 100644 index 6f918cb4..00000000 --- a/.konflux/openshift-pipelines-index-4.20/next/release-plan.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.20 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ReleasePlan -metadata: - labels: - release.appstudio.openshift.io/auto-release: "true" - release.appstudio.openshift.io/standing-attribution: 'true' - name: openshift-pipelines-index-4-20-next-rp -spec: - application: openshift-pipelines-index-4-20-next - tenantPipeline: - serviceAccountName: release-registry-openshift-pipelines-index-4-20 - pipelineRef: - resolver: git - params: - - name: url - value: https://github.com/openshift-pipelines/hack.git - - name: revision - # value: next - value: main - - name: pathInRepo - value: pipelines/release-pipeline.yaml - params: - - name: release_version - value: "next" - - name: release_to_github - value: "false" diff --git a/.konflux/openshift-pipelines-index-4.20/next/tests.yaml b/.konflux/openshift-pipelines-index-4.20/next/tests.yaml deleted file mode 100644 index 0a954dd6..00000000 --- a/.konflux/openshift-pipelines-index-4.20/next/tests.yaml +++ /dev/null @@ -1,27 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.20 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1beta2 -kind: IntegrationTestScenario -metadata: - name: openshift-pipelines-index-4-20-next-enterprise-contract -spec: - application: openshift-pipelines-index-4-20-next - contexts: - - description: execute the integration test for a component - name: component - params: - - name: POLICY_CONFIGURATION - value: tekton-ecosystem-tenant/tekton-ecosystem-tenant-indexes - - name: TIMEOUT - value: "15m0s" - - name: SINGLE_COMPONENT - value: "true" - resolverRef: - params: - - name: url - value: "https://github.com/konflux-ci/build-definitions" - - name: revision - value: main - - name: pathInRepo - value: pipelines/enterprise-contract.yaml - resolver: git diff --git a/.konflux/openshift-pipelines-index-4.20/role.yaml b/.konflux/openshift-pipelines-index-4.20/role.yaml deleted file mode 100644 index a718fea4..00000000 --- a/.konflux/openshift-pipelines-index-4.20/role.yaml +++ /dev/null @@ -1,14 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.20 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: rbac.authorization.k8s.io/v1 -kind: RoleBinding -metadata: - name: release-plan-rolebinding-openshift-pipelines-index-4-20 -subjects: - - kind: ServiceAccount - name: release-registry-openshift-pipelines-index-4-20 - apiGroup: "" -roleRef: - kind: ClusterRole - name: konflux-releaser-bot-actions - apiGroup: rbac.authorization.k8s.io \ No newline at end of file diff --git a/.konflux/openshift-pipelines-index-4.20/service-account.yaml b/.konflux/openshift-pipelines-index-4.20/service-account.yaml deleted file mode 100644 index c5cf7ddc..00000000 --- a/.konflux/openshift-pipelines-index-4.20/service-account.yaml +++ /dev/null @@ -1,10 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.20 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: v1 -imagePullSecrets: - - name: release-registry-openshift-pipelines-quay -kind: ServiceAccount -metadata: - name: release-registry-openshift-pipelines-index-4-20 -secrets: - - name: release-registry-openshift-pipelines-quay \ No newline at end of file diff --git a/.konflux/openshift-pipelines-operator/1-22/application.yaml b/.konflux/openshift-pipelines-operator/1-22/application.yaml deleted file mode 100644 index aa46d079..00000000 --- a/.konflux/openshift-pipelines-operator/1-22/application.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-operator by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Application -metadata: - name: openshift-pipelines-operator-1-22 -spec: - displayName: openshift-pipelines-operator-1-22 diff --git a/.konflux/openshift-pipelines-operator/1-22/operator/component-bundle-1.22.yaml b/.konflux/openshift-pipelines-operator/1-22/operator/component-bundle-1.22.yaml deleted file mode 100644 index b068ab68..00000000 --- a/.konflux/openshift-pipelines-operator/1-22/operator/component-bundle-1.22.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-operator by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: operator-1-22-bundle -spec: - componentName: bundle - application: openshift-pipelines-operator-1-22 - build-nudges-ref: - - operator-1-22-index-4-20 - source: - git: - url: https://github.com/openshift-pipelines/operator.git - dockerfileUrl: .konflux/dockerfiles/bundle.Dockerfile - revision: release-v1.22.x diff --git a/.konflux/openshift-pipelines-operator/1-22/operator/component-operator-1.22.yaml b/.konflux/openshift-pipelines-operator/1-22/operator/component-operator-1.22.yaml deleted file mode 100644 index a296a800..00000000 --- a/.konflux/openshift-pipelines-operator/1-22/operator/component-operator-1.22.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-operator by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: operator-1-22-operator -spec: - componentName: operator - application: openshift-pipelines-operator-1-22 - build-nudges-ref: - - operator-1-22-bundle - source: - git: - url: https://github.com/openshift-pipelines/operator.git - dockerfileUrl: .konflux/dockerfiles/operator.Dockerfile - revision: release-v1.22.x diff --git a/.konflux/openshift-pipelines-operator/1-22/operator/component-proxy-1.22.yaml b/.konflux/openshift-pipelines-operator/1-22/operator/component-proxy-1.22.yaml deleted file mode 100644 index 75eadbbb..00000000 --- a/.konflux/openshift-pipelines-operator/1-22/operator/component-proxy-1.22.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-operator by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: operator-1-22-proxy -spec: - componentName: proxy - application: openshift-pipelines-operator-1-22 - build-nudges-ref: - - operator-1-22-bundle - source: - git: - url: https://github.com/openshift-pipelines/operator.git - dockerfileUrl: .konflux/dockerfiles/proxy.Dockerfile - revision: release-v1.22.x diff --git a/.konflux/openshift-pipelines-operator/1-22/operator/component-webhook-1.22.yaml b/.konflux/openshift-pipelines-operator/1-22/operator/component-webhook-1.22.yaml deleted file mode 100644 index 727fe75d..00000000 --- a/.konflux/openshift-pipelines-operator/1-22/operator/component-webhook-1.22.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-operator by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: operator-1-22-webhook -spec: - componentName: webhook - application: openshift-pipelines-operator-1-22 - build-nudges-ref: - - operator-1-22-bundle - source: - git: - url: https://github.com/openshift-pipelines/operator.git - dockerfileUrl: .konflux/dockerfiles/webhook.Dockerfile - revision: release-v1.22.x diff --git a/.konflux/openshift-pipelines-operator/1-22/operator/image-bundle-1.22.yaml b/.konflux/openshift-pipelines-operator/1-22/operator/image-bundle-1.22.yaml deleted file mode 100644 index 56769a89..00000000 --- a/.konflux/openshift-pipelines-operator/1-22/operator/image-bundle-1.22.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-operator by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: operator-1-22-bundle - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: operator-1-22-bundle - appstudio.redhat.com/application: openshift-pipelines-operator-1-22 -spec: - image: - name: pipelines-operator-bundle - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-operator/1-22/operator/image-operator-1.22.yaml b/.konflux/openshift-pipelines-operator/1-22/operator/image-operator-1.22.yaml deleted file mode 100644 index b35ec08a..00000000 --- a/.konflux/openshift-pipelines-operator/1-22/operator/image-operator-1.22.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-operator by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: operator-1-22-operator - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: operator-1-22-operator - appstudio.redhat.com/application: openshift-pipelines-operator-1-22 -spec: - image: - name: pipelines-rhel9-operator - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-operator/1-22/operator/image-proxy-1.22.yaml b/.konflux/openshift-pipelines-operator/1-22/operator/image-proxy-1.22.yaml deleted file mode 100644 index 65acc314..00000000 --- a/.konflux/openshift-pipelines-operator/1-22/operator/image-proxy-1.22.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-operator by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: operator-1-22-proxy - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: operator-1-22-proxy - appstudio.redhat.com/application: openshift-pipelines-operator-1-22 -spec: - image: - name: pipelines-operator-proxy-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-operator/1-22/operator/image-webhook-1.22.yaml b/.konflux/openshift-pipelines-operator/1-22/operator/image-webhook-1.22.yaml deleted file mode 100644 index 5d846679..00000000 --- a/.konflux/openshift-pipelines-operator/1-22/operator/image-webhook-1.22.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-operator by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: operator-1-22-webhook - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: operator-1-22-webhook - appstudio.redhat.com/application: openshift-pipelines-operator-1-22 -spec: - image: - name: pipelines-operator-webhook-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-operator/1-22/release-plan.yaml b/.konflux/openshift-pipelines-operator/1-22/release-plan.yaml deleted file mode 100644 index 609ebbf2..00000000 --- a/.konflux/openshift-pipelines-operator/1-22/release-plan.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-operator by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ReleasePlan -metadata: - labels: - release.appstudio.openshift.io/auto-release: "true" - release.appstudio.openshift.io/standing-attribution: 'true' - name: openshift-pipelines-operator-1-22-rp -spec: - application: openshift-pipelines-operator-1-22 - tenantPipeline: - serviceAccountName: release-registry-openshift-pipelines-operator - pipelineRef: - resolver: git - params: - - name: url - value: https://github.com/openshift-pipelines/hack.git - - name: revision - # value: release-v1.22.x - value: main - - name: pathInRepo - value: pipelines/release-pipeline.yaml - params: - - name: release_version - value: "1.22.0" - - name: release_to_github - value: "false" diff --git a/.konflux/openshift-pipelines-operator/1-22/tests.yaml b/.konflux/openshift-pipelines-operator/1-22/tests.yaml deleted file mode 100644 index 8350d1dc..00000000 --- a/.konflux/openshift-pipelines-operator/1-22/tests.yaml +++ /dev/null @@ -1,27 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-operator by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1beta2 -kind: IntegrationTestScenario -metadata: - name: openshift-pipelines-operator-1-22-enterprise-contract -spec: - application: openshift-pipelines-operator-1-22 - contexts: - - description: execute the integration test for a component - name: component - params: - - name: POLICY_CONFIGURATION - value: tekton-ecosystem-tenant/tekton-ecosystem-tenant-containers - - name: TIMEOUT - value: "15m0s" - - name: SINGLE_COMPONENT - value: "true" - resolverRef: - params: - - name: url - value: "https://github.com/konflux-ci/build-definitions" - - name: revision - value: main - - name: pathInRepo - value: pipelines/enterprise-contract.yaml - resolver: git diff --git a/.konflux/openshift-pipelines-operator/next/application.yaml b/.konflux/openshift-pipelines-operator/next/application.yaml deleted file mode 100644 index cccd7676..00000000 --- a/.konflux/openshift-pipelines-operator/next/application.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-operator by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Application -metadata: - name: openshift-pipelines-operator-next -spec: - displayName: openshift-pipelines-operator-next diff --git a/.konflux/openshift-pipelines-operator/next/operator/component-bundle-next.yaml b/.konflux/openshift-pipelines-operator/next/operator/component-bundle-next.yaml deleted file mode 100644 index edd88ef8..00000000 --- a/.konflux/openshift-pipelines-operator/next/operator/component-bundle-next.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-operator by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: operator-next-bundle -spec: - componentName: bundle - application: openshift-pipelines-operator-next - build-nudges-ref: - - operator-next-index-4-20 - source: - git: - url: https://github.com/openshift-pipelines/operator.git - dockerfileUrl: .konflux/dockerfiles/bundle.Dockerfile - revision: next diff --git a/.konflux/openshift-pipelines-operator/next/operator/component-operator-next.yaml b/.konflux/openshift-pipelines-operator/next/operator/component-operator-next.yaml deleted file mode 100644 index fcf3c147..00000000 --- a/.konflux/openshift-pipelines-operator/next/operator/component-operator-next.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-operator by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: operator-next-operator -spec: - componentName: operator - application: openshift-pipelines-operator-next - build-nudges-ref: - - operator-next-bundle - source: - git: - url: https://github.com/openshift-pipelines/operator.git - dockerfileUrl: .konflux/dockerfiles/operator.Dockerfile - revision: next diff --git a/.konflux/openshift-pipelines-operator/next/operator/component-proxy-next.yaml b/.konflux/openshift-pipelines-operator/next/operator/component-proxy-next.yaml deleted file mode 100644 index e867e66f..00000000 --- a/.konflux/openshift-pipelines-operator/next/operator/component-proxy-next.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-operator by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: operator-next-proxy -spec: - componentName: proxy - application: openshift-pipelines-operator-next - build-nudges-ref: - - operator-next-bundle - source: - git: - url: https://github.com/openshift-pipelines/operator.git - dockerfileUrl: .konflux/dockerfiles/proxy.Dockerfile - revision: next diff --git a/.konflux/openshift-pipelines-operator/next/operator/component-webhook-next.yaml b/.konflux/openshift-pipelines-operator/next/operator/component-webhook-next.yaml deleted file mode 100644 index ecac7cff..00000000 --- a/.konflux/openshift-pipelines-operator/next/operator/component-webhook-next.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-operator by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: operator-next-webhook -spec: - componentName: webhook - application: openshift-pipelines-operator-next - build-nudges-ref: - - operator-next-bundle - source: - git: - url: https://github.com/openshift-pipelines/operator.git - dockerfileUrl: .konflux/dockerfiles/webhook.Dockerfile - revision: next diff --git a/.konflux/openshift-pipelines-operator/next/operator/image-bundle-next.yaml b/.konflux/openshift-pipelines-operator/next/operator/image-bundle-next.yaml deleted file mode 100644 index c082d056..00000000 --- a/.konflux/openshift-pipelines-operator/next/operator/image-bundle-next.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-operator by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: operator-next-bundle - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: operator-next-bundle - appstudio.redhat.com/application: openshift-pipelines-operator-next -spec: - image: - name: pipelines-operator-bundle - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-operator/next/operator/image-operator-next.yaml b/.konflux/openshift-pipelines-operator/next/operator/image-operator-next.yaml deleted file mode 100644 index cc2174b6..00000000 --- a/.konflux/openshift-pipelines-operator/next/operator/image-operator-next.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-operator by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: operator-next-operator - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: operator-next-operator - appstudio.redhat.com/application: openshift-pipelines-operator-next -spec: - image: - name: pipelines-rhel9-operator - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-operator/next/operator/image-proxy-next.yaml b/.konflux/openshift-pipelines-operator/next/operator/image-proxy-next.yaml deleted file mode 100644 index 47c52bcb..00000000 --- a/.konflux/openshift-pipelines-operator/next/operator/image-proxy-next.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-operator by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: operator-next-proxy - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: operator-next-proxy - appstudio.redhat.com/application: openshift-pipelines-operator-next -spec: - image: - name: pipelines-operator-proxy-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-operator/next/operator/image-webhook-next.yaml b/.konflux/openshift-pipelines-operator/next/operator/image-webhook-next.yaml deleted file mode 100644 index d5d47f24..00000000 --- a/.konflux/openshift-pipelines-operator/next/operator/image-webhook-next.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-operator by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: operator-next-webhook - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: operator-next-webhook - appstudio.redhat.com/application: openshift-pipelines-operator-next -spec: - image: - name: pipelines-operator-webhook-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-operator/next/release-plan.yaml b/.konflux/openshift-pipelines-operator/next/release-plan.yaml deleted file mode 100644 index de2570ae..00000000 --- a/.konflux/openshift-pipelines-operator/next/release-plan.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-operator by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ReleasePlan -metadata: - labels: - release.appstudio.openshift.io/auto-release: "true" - release.appstudio.openshift.io/standing-attribution: 'true' - name: openshift-pipelines-operator-next-rp -spec: - application: openshift-pipelines-operator-next - tenantPipeline: - serviceAccountName: release-registry-openshift-pipelines-operator - pipelineRef: - resolver: git - params: - - name: url - value: https://github.com/openshift-pipelines/hack.git - - name: revision - # value: next - value: main - - name: pathInRepo - value: pipelines/release-pipeline.yaml - params: - - name: release_version - value: "next" - - name: release_to_github - value: "false" diff --git a/.konflux/openshift-pipelines-operator/next/tests.yaml b/.konflux/openshift-pipelines-operator/next/tests.yaml deleted file mode 100644 index 6d042d75..00000000 --- a/.konflux/openshift-pipelines-operator/next/tests.yaml +++ /dev/null @@ -1,27 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-operator by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1beta2 -kind: IntegrationTestScenario -metadata: - name: openshift-pipelines-operator-next-enterprise-contract -spec: - application: openshift-pipelines-operator-next - contexts: - - description: execute the integration test for a component - name: component - params: - - name: POLICY_CONFIGURATION - value: tekton-ecosystem-tenant/tekton-ecosystem-tenant-containers - - name: TIMEOUT - value: "15m0s" - - name: SINGLE_COMPONENT - value: "true" - resolverRef: - params: - - name: url - value: "https://github.com/konflux-ci/build-definitions" - - name: revision - value: main - - name: pathInRepo - value: pipelines/enterprise-contract.yaml - resolver: git diff --git a/.konflux/openshift-pipelines-operator/role.yaml b/.konflux/openshift-pipelines-operator/role.yaml deleted file mode 100644 index ba1c85b6..00000000 --- a/.konflux/openshift-pipelines-operator/role.yaml +++ /dev/null @@ -1,14 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-operator by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: rbac.authorization.k8s.io/v1 -kind: RoleBinding -metadata: - name: release-plan-rolebinding-openshift-pipelines-operator -subjects: - - kind: ServiceAccount - name: release-registry-openshift-pipelines-operator - apiGroup: "" -roleRef: - kind: ClusterRole - name: konflux-releaser-bot-actions - apiGroup: rbac.authorization.k8s.io \ No newline at end of file diff --git a/.konflux/openshift-pipelines-operator/service-account.yaml b/.konflux/openshift-pipelines-operator/service-account.yaml deleted file mode 100644 index cb461406..00000000 --- a/.konflux/openshift-pipelines-operator/service-account.yaml +++ /dev/null @@ -1,10 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-operator by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: v1 -imagePullSecrets: - - name: release-registry-openshift-pipelines-quay -kind: ServiceAccount -metadata: - name: release-registry-openshift-pipelines-operator -secrets: - - name: release-registry-openshift-pipelines-quay \ No newline at end of file diff --git a/cmd/konflux/main.go b/cmd/konflux/main.go index 61d80c6d..5e158fae 100644 --- a/cmd/konflux/main.go +++ b/cmd/konflux/main.go @@ -44,6 +44,11 @@ func main() { } versionConfig.Version.ImagePrefix = config.ImagePrefix + versionConfig.Version.ImagePrefix versionConfig.Version.Version = version + if versionConfig.Version.Version == "next" { + versionConfig.Version.PatchVersion = version + } else if !strings.HasPrefix(versionConfig.Version.PatchVersion, "v") { + versionConfig.Version.PatchVersion = "v" + versionConfig.Version.PatchVersion + } } for _, applicationName := range config.Applications { @@ -159,9 +164,12 @@ func updateRepository(repo *k.Repository, a k.Application) error { if repo.Tekton == (k.Tekton{}) { repo.Tekton = k.Tekton{} if repo.Tekton.WatchedSources == "" { - repo.Tekton.WatchedSources = `"upstream/***".pathChanged() || ".konflux/patches/***".pathChanged() || ".konflux/rpms/***".pathChanged()` + if repo.Upstream != "" { + repo.Tekton.WatchedSources = `"upstream/***".pathChanged() || ".konflux/patches/***".pathChanged() || ".konflux/rpms/***".pathChanged()` + } else { + repo.Tekton.WatchedSources = `"***".pathChanged()` + } } - } return nil diff --git a/config/downstream/konflux.yaml b/config/downstream/konflux.yaml index 170649af..ee3f8ce2 100644 --- a/config/downstream/konflux.yaml +++ b/config/downstream/konflux.yaml @@ -1,6 +1,7 @@ organization: openshift-pipelines namespace: tekton-ecosystem-tenant image-prefix: pipelines- +product: openshift-pipelines applications: - core - index diff --git a/internal/konflux/config.go b/internal/konflux/config.go index 26707bf3..738604bb 100644 --- a/internal/konflux/config.go +++ b/internal/konflux/config.go @@ -8,6 +8,7 @@ type Config struct { Repositories []Repository `json:"repos" yaml:"repos"` ImagePrefix string `json:"image-prefix" yaml:"image-prefix"` ImageSuffix string `json:"image-suffix" yaml:"image-suffix"` + Product string `json:"product" yaml:"product"` } type Application struct { diff --git a/internal/konflux/config_generator.go b/internal/konflux/config_generator.go index 74b12cd6..e4d9cef1 100644 --- a/internal/konflux/config_generator.go +++ b/internal/konflux/config_generator.go @@ -109,7 +109,7 @@ func generateKonfluxConfig(application Application) error { if application.Release.Version == "main" { return nil } - appDir := filepath.Join(konfluxDir, application.Name) + appDir := filepath.Join(konfluxDir, application.Config.Product, application.Name) targetDir := filepath.Join(appDir, hyphenize(application.Release.Version)) log.Printf("Delete Konflux dir in %s\n", targetDir) From c281559188a8ddaab20817298d80fdb5a999176e Mon Sep 17 00:00:00 2001 From: Pramod Bindal Date: Mon, 2 Feb 2026 14:34:12 +0530 Subject: [PATCH 07/18] Remove 1-22 from main --- .../0-1/application.yaml | 8 ------ .../component-multicluster-proxy-aae-0.1.yaml | 18 ------------ .../image-multicluster-proxy-aae-0.1.yaml | 22 --------------- .../0-1/release-plan.yaml | 28 ------------------- .../0-1/release-plan_github.yaml | 28 ------------------- .../multicluster-proxy-aae/0-1/tests.yaml | 27 ------------------ .konflux/multicluster-proxy-aae/role.yaml | 14 ---------- .../service-account.yaml | 10 ------- .konflux/syncer-service/0-1/application.yaml | 8 ------ .konflux/syncer-service/0-1/release-plan.yaml | 28 ------------------- .../0-1/release-plan_github.yaml | 28 ------------------- .../component-syncer-service-0.1.yaml | 18 ------------ .../image-syncer-service-0.1.yaml | 22 --------------- .konflux/syncer-service/0-1/tests.yaml | 27 ------------------ .konflux/syncer-service/role.yaml | 14 ---------- .konflux/syncer-service/service-account.yaml | 10 ------- 16 files changed, 310 deletions(-) delete mode 100644 .konflux/multicluster-proxy-aae/0-1/application.yaml delete mode 100644 .konflux/multicluster-proxy-aae/0-1/multicluster-proxy-aae/component-multicluster-proxy-aae-0.1.yaml delete mode 100644 .konflux/multicluster-proxy-aae/0-1/multicluster-proxy-aae/image-multicluster-proxy-aae-0.1.yaml delete mode 100644 .konflux/multicluster-proxy-aae/0-1/release-plan.yaml delete mode 100644 .konflux/multicluster-proxy-aae/0-1/release-plan_github.yaml delete mode 100644 .konflux/multicluster-proxy-aae/0-1/tests.yaml delete mode 100644 .konflux/multicluster-proxy-aae/role.yaml delete mode 100644 .konflux/multicluster-proxy-aae/service-account.yaml delete mode 100644 .konflux/syncer-service/0-1/application.yaml delete mode 100644 .konflux/syncer-service/0-1/release-plan.yaml delete mode 100644 .konflux/syncer-service/0-1/release-plan_github.yaml delete mode 100644 .konflux/syncer-service/0-1/syncer-service/component-syncer-service-0.1.yaml delete mode 100644 .konflux/syncer-service/0-1/syncer-service/image-syncer-service-0.1.yaml delete mode 100644 .konflux/syncer-service/0-1/tests.yaml delete mode 100644 .konflux/syncer-service/role.yaml delete mode 100644 .konflux/syncer-service/service-account.yaml diff --git a/.konflux/multicluster-proxy-aae/0-1/application.yaml b/.konflux/multicluster-proxy-aae/0-1/application.yaml deleted file mode 100644 index 3d7ae607..00000000 --- a/.konflux/multicluster-proxy-aae/0-1/application.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Generated for Konflux Application multicluster-proxy-aae by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Application -metadata: - name: multicluster-proxy-aae-0-1 -spec: - displayName: multicluster-proxy-aae-0-1 diff --git a/.konflux/multicluster-proxy-aae/0-1/multicluster-proxy-aae/component-multicluster-proxy-aae-0.1.yaml b/.konflux/multicluster-proxy-aae/0-1/multicluster-proxy-aae/component-multicluster-proxy-aae-0.1.yaml deleted file mode 100644 index 39d025b3..00000000 --- a/.konflux/multicluster-proxy-aae/0-1/multicluster-proxy-aae/component-multicluster-proxy-aae-0.1.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application multicluster-proxy-aae by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: multicluster-proxy-aae-0-1-multicluster-proxy-aae -spec: - componentName: multicluster-proxy-aae - application: multicluster-proxy-aae-0-1 - build-nudges-ref: - - operator-0-1-bundle - source: - git: - url: https://github.com/openshift-pipelines/multicluster-proxy-aae.git - dockerfileUrl: Dockerfile - revision: release-v0.1.x diff --git a/.konflux/multicluster-proxy-aae/0-1/multicluster-proxy-aae/image-multicluster-proxy-aae-0.1.yaml b/.konflux/multicluster-proxy-aae/0-1/multicluster-proxy-aae/image-multicluster-proxy-aae-0.1.yaml deleted file mode 100644 index b34a0742..00000000 --- a/.konflux/multicluster-proxy-aae/0-1/multicluster-proxy-aae/image-multicluster-proxy-aae-0.1.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application multicluster-proxy-aae by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: multicluster-proxy-aae-0-1-multicluster-proxy-aae - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: multicluster-proxy-aae-0-1-multicluster-proxy-aae - appstudio.redhat.com/application: multicluster-proxy-aae-0-1 -spec: - image: - name: multicluster-proxy-aae/multicluster-proxy-aae-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/multicluster-proxy-aae/0-1/release-plan.yaml b/.konflux/multicluster-proxy-aae/0-1/release-plan.yaml deleted file mode 100644 index 07ca4bcd..00000000 --- a/.konflux/multicluster-proxy-aae/0-1/release-plan.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Generated for Konflux Application multicluster-proxy-aae by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ReleasePlan -metadata: - labels: - release.appstudio.openshift.io/auto-release: "true" - release.appstudio.openshift.io/standing-attribution: 'true' - name: multicluster-proxy-aae-0-1-rp -spec: - application: multicluster-proxy-aae-0-1 - tenantPipeline: - serviceAccountName: release-registry-multicluster-proxy-aae - pipelineRef: - resolver: git - params: - - name: url - value: https://github.com/openshift-pipelines/hack.git - - name: revision - # value: release-v0.1.x - value: main - - name: pathInRepo - value: pipelines/release-pipeline.yaml - params: - - name: release_version - value: "v0.1.0" - - name: release_to_github - value: "false" diff --git a/.konflux/multicluster-proxy-aae/0-1/release-plan_github.yaml b/.konflux/multicluster-proxy-aae/0-1/release-plan_github.yaml deleted file mode 100644 index 1a14d2b3..00000000 --- a/.konflux/multicluster-proxy-aae/0-1/release-plan_github.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Generated for Konflux Application multicluster-proxy-aae by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ReleasePlan -metadata: - labels: - release.appstudio.openshift.io/auto-release: "false" - release.appstudio.openshift.io/standing-attribution: 'true' - name: multicluster-proxy-aae-0-1-github-rp -spec: - application: multicluster-proxy-aae-0-1 - tenantPipeline: - serviceAccountName: release-registry-multicluster-proxy-aae - pipelineRef: - resolver: git - params: - - name: url - value: https://github.com/openshift-pipelines/hack.git - - name: revision - # value: release-v0.1.x - value: main - - name: pathInRepo - value: pipelines/release-pipeline.yaml - params: - - name: release_version - value: "v0.1.0" - - name: release_to_github - value: "true" diff --git a/.konflux/multicluster-proxy-aae/0-1/tests.yaml b/.konflux/multicluster-proxy-aae/0-1/tests.yaml deleted file mode 100644 index 2442c6f2..00000000 --- a/.konflux/multicluster-proxy-aae/0-1/tests.yaml +++ /dev/null @@ -1,27 +0,0 @@ -# Generated for Konflux Application multicluster-proxy-aae by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1beta2 -kind: IntegrationTestScenario -metadata: - name: multicluster-proxy-aae-0-1-enterprise-contract -spec: - application: multicluster-proxy-aae-0-1 - contexts: - - description: execute the integration test for a component - name: component - params: - - name: POLICY_CONFIGURATION - value: tekton-ecosystem-tenant/tekton-ecosystem-tenant-containers - - name: TIMEOUT - value: "15m0s" - - name: SINGLE_COMPONENT - value: "true" - resolverRef: - params: - - name: url - value: "https://github.com/konflux-ci/build-definitions" - - name: revision - value: main - - name: pathInRepo - value: pipelines/enterprise-contract.yaml - resolver: git diff --git a/.konflux/multicluster-proxy-aae/role.yaml b/.konflux/multicluster-proxy-aae/role.yaml deleted file mode 100644 index 9600a04a..00000000 --- a/.konflux/multicluster-proxy-aae/role.yaml +++ /dev/null @@ -1,14 +0,0 @@ -# Generated for Konflux Application multicluster-proxy-aae by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: rbac.authorization.k8s.io/v1 -kind: RoleBinding -metadata: - name: release-plan-rolebinding-multicluster-proxy-aae -subjects: - - kind: ServiceAccount - name: release-registry-multicluster-proxy-aae - apiGroup: "" -roleRef: - kind: ClusterRole - name: konflux-releaser-bot-actions - apiGroup: rbac.authorization.k8s.io \ No newline at end of file diff --git a/.konflux/multicluster-proxy-aae/service-account.yaml b/.konflux/multicluster-proxy-aae/service-account.yaml deleted file mode 100644 index 6e6b7bd8..00000000 --- a/.konflux/multicluster-proxy-aae/service-account.yaml +++ /dev/null @@ -1,10 +0,0 @@ -# Generated for Konflux Application multicluster-proxy-aae by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: v1 -imagePullSecrets: - - name: release-registry-openshift-pipelines-quay -kind: ServiceAccount -metadata: - name: release-registry-multicluster-proxy-aae -secrets: - - name: release-registry-openshift-pipelines-quay \ No newline at end of file diff --git a/.konflux/syncer-service/0-1/application.yaml b/.konflux/syncer-service/0-1/application.yaml deleted file mode 100644 index 7d4f4e2f..00000000 --- a/.konflux/syncer-service/0-1/application.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Generated for Konflux Application syncer-service by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Application -metadata: - name: syncer-service-0-1 -spec: - displayName: syncer-service-0-1 diff --git a/.konflux/syncer-service/0-1/release-plan.yaml b/.konflux/syncer-service/0-1/release-plan.yaml deleted file mode 100644 index 55d05a67..00000000 --- a/.konflux/syncer-service/0-1/release-plan.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Generated for Konflux Application syncer-service by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ReleasePlan -metadata: - labels: - release.appstudio.openshift.io/auto-release: "true" - release.appstudio.openshift.io/standing-attribution: 'true' - name: syncer-service-0-1-rp -spec: - application: syncer-service-0-1 - tenantPipeline: - serviceAccountName: release-registry-syncer-service - pipelineRef: - resolver: git - params: - - name: url - value: https://github.com/openshift-pipelines/hack.git - - name: revision - # value: release-v0.1.x - value: main - - name: pathInRepo - value: pipelines/release-pipeline.yaml - params: - - name: release_version - value: "v0.1.0" - - name: release_to_github - value: "false" diff --git a/.konflux/syncer-service/0-1/release-plan_github.yaml b/.konflux/syncer-service/0-1/release-plan_github.yaml deleted file mode 100644 index f0b39cc7..00000000 --- a/.konflux/syncer-service/0-1/release-plan_github.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Generated for Konflux Application syncer-service by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ReleasePlan -metadata: - labels: - release.appstudio.openshift.io/auto-release: "false" - release.appstudio.openshift.io/standing-attribution: 'true' - name: syncer-service-0-1-github-rp -spec: - application: syncer-service-0-1 - tenantPipeline: - serviceAccountName: release-registry-syncer-service - pipelineRef: - resolver: git - params: - - name: url - value: https://github.com/openshift-pipelines/hack.git - - name: revision - # value: release-v0.1.x - value: main - - name: pathInRepo - value: pipelines/release-pipeline.yaml - params: - - name: release_version - value: "v0.1.0" - - name: release_to_github - value: "true" diff --git a/.konflux/syncer-service/0-1/syncer-service/component-syncer-service-0.1.yaml b/.konflux/syncer-service/0-1/syncer-service/component-syncer-service-0.1.yaml deleted file mode 100644 index 83109429..00000000 --- a/.konflux/syncer-service/0-1/syncer-service/component-syncer-service-0.1.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application syncer-service by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: syncer-service-0-1-syncer-service -spec: - componentName: syncer-service - application: syncer-service-0-1 - build-nudges-ref: - - operator-0-1-bundle - source: - git: - url: https://github.com/openshift-pipelines/syncer-service.git - dockerfileUrl: Dockerfile - revision: release-v0.1.x diff --git a/.konflux/syncer-service/0-1/syncer-service/image-syncer-service-0.1.yaml b/.konflux/syncer-service/0-1/syncer-service/image-syncer-service-0.1.yaml deleted file mode 100644 index 2b60df9f..00000000 --- a/.konflux/syncer-service/0-1/syncer-service/image-syncer-service-0.1.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application syncer-service by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: syncer-service-0-1-syncer-service - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: syncer-service-0-1-syncer-service - appstudio.redhat.com/application: syncer-service-0-1 -spec: - image: - name: syncer-service/syncer-service-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/syncer-service/0-1/tests.yaml b/.konflux/syncer-service/0-1/tests.yaml deleted file mode 100644 index ca66ac26..00000000 --- a/.konflux/syncer-service/0-1/tests.yaml +++ /dev/null @@ -1,27 +0,0 @@ -# Generated for Konflux Application syncer-service by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1beta2 -kind: IntegrationTestScenario -metadata: - name: syncer-service-0-1-enterprise-contract -spec: - application: syncer-service-0-1 - contexts: - - description: execute the integration test for a component - name: component - params: - - name: POLICY_CONFIGURATION - value: tekton-ecosystem-tenant/tekton-ecosystem-tenant-containers - - name: TIMEOUT - value: "15m0s" - - name: SINGLE_COMPONENT - value: "true" - resolverRef: - params: - - name: url - value: "https://github.com/konflux-ci/build-definitions" - - name: revision - value: main - - name: pathInRepo - value: pipelines/enterprise-contract.yaml - resolver: git diff --git a/.konflux/syncer-service/role.yaml b/.konflux/syncer-service/role.yaml deleted file mode 100644 index 932a430e..00000000 --- a/.konflux/syncer-service/role.yaml +++ /dev/null @@ -1,14 +0,0 @@ -# Generated for Konflux Application syncer-service by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: rbac.authorization.k8s.io/v1 -kind: RoleBinding -metadata: - name: release-plan-rolebinding-syncer-service -subjects: - - kind: ServiceAccount - name: release-registry-syncer-service - apiGroup: "" -roleRef: - kind: ClusterRole - name: konflux-releaser-bot-actions - apiGroup: rbac.authorization.k8s.io \ No newline at end of file diff --git a/.konflux/syncer-service/service-account.yaml b/.konflux/syncer-service/service-account.yaml deleted file mode 100644 index 67709c9a..00000000 --- a/.konflux/syncer-service/service-account.yaml +++ /dev/null @@ -1,10 +0,0 @@ -# Generated for Konflux Application syncer-service by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: v1 -imagePullSecrets: - - name: release-registry-openshift-pipelines-quay -kind: ServiceAccount -metadata: - name: release-registry-syncer-service -secrets: - - name: release-registry-openshift-pipelines-quay \ No newline at end of file From cdd131b39646fabce55d8c5ce58b99087fd64573 Mon Sep 17 00:00:00 2001 From: Pramod Bindal Date: Tue, 3 Feb 2026 12:54:26 +0530 Subject: [PATCH 08/18] Update 1.22 configuration --- config/downstream/applications/index.yaml | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/config/downstream/applications/index.yaml b/config/downstream/applications/index.yaml index 1511e532..490dc069 100644 --- a/config/downstream/applications/index.yaml +++ b/config/downstream/applications/index.yaml @@ -1,3 +1,18 @@ +#- name: openshift-pipelines-index-4.21 +# repos: +# - operator-index-4.21 - name: openshift-pipelines-index-4.20 repos: - - operator-index-4.20 \ No newline at end of file + - operator-index-4.20 +- name: openshift-pipelines-index-4.19 + repos: + - operator-index-4.19 +- name: openshift-pipelines-index-4.18 + repos: + - operator-index-4.18 +- name: openshift-pipelines-index-4.17 + repos: + - operator-index-4.17 +- name: openshift-pipelines-index-4.16 + repos: + - operator-index-4.16 From bea3bf07d482b0c59fe7e37c8168af87c1d5c945 Mon Sep 17 00:00:00 2001 From: Pramod Bindal Date: Tue, 3 Feb 2026 12:58:38 +0530 Subject: [PATCH 09/18] update workflow --- .github/workflows/generate-konflux.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/generate-konflux.yaml b/.github/workflows/generate-konflux.yaml index 2b36cc50..c3a53b10 100644 --- a/.github/workflows/generate-konflux.yaml +++ b/.github/workflows/generate-konflux.yaml @@ -5,7 +5,7 @@ on: pull_request: branches: - 'main' - - 'next' + - 'multi-cluster' - 'release-v*' push: branches: From 6011217d6c1f6687af419f8e9326182c3bbbe94b Mon Sep 17 00:00:00 2001 From: Pramod Bindal Date: Tue, 3 Feb 2026 12:59:31 +0530 Subject: [PATCH 10/18] update workflow --- .github/workflows/generate-konflux.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/generate-konflux.yaml b/.github/workflows/generate-konflux.yaml index c3a53b10..491580b2 100644 --- a/.github/workflows/generate-konflux.yaml +++ b/.github/workflows/generate-konflux.yaml @@ -11,6 +11,7 @@ on: branches: - 'main' - 'next' + - 'multi-cluster' - 'release-v*' workflow_dispatch: # Manual workflow trigger From 56239cd71e7976fd73e414bbd2a2b0354cd5a12a Mon Sep 17 00:00:00 2001 From: Pramod Bindal Date: Tue, 3 Feb 2026 13:05:47 +0530 Subject: [PATCH 11/18] Add New Patch --- config/downstream/releases/1.22.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/config/downstream/releases/1.22.yaml b/config/downstream/releases/1.22.yaml index 023d2048..91ca06d5 100644 --- a/config/downstream/releases/1.22.yaml +++ b/config/downstream/releases/1.22.yaml @@ -36,3 +36,4 @@ branches: upstream: release-v0.1.x multicluster-proxy-aae: upstream: release-v0.1.x +patch-version: 1.22.0 From 322e95024b9a196efc9da71bdd2d909ef333b316 Mon Sep 17 00:00:00 2001 From: openshift-pipelines-bot Date: Tue, 3 Feb 2026 07:38:21 +0000 Subject: [PATCH 12/18] [bot:multi-cluster] Update Generated Konflux Config --- .../1-22/application.yaml | 8 ++++++ .../component-proxy-server-1.22.yaml | 18 ++++++++++++ .../image-proxy-server-1.22.yaml | 22 +++++++++++++++ .../component-controller-1.22.yaml | 18 ++++++++++++ .../image-controller-1.22.yaml | 22 +++++++++++++++ .../1-22/release-plan.yaml | 28 +++++++++++++++++++ .../component-scheduler-1.22.yaml | 18 ++++++++++++ .../tekton-kueue/image-scheduler-1.22.yaml | 22 +++++++++++++++ .../component-controller-1.22.yaml | 18 ++++++++++++ .../image-controller-1.22.yaml | 22 +++++++++++++++ .../1-22/tektoncd-hub/component-api-1.22.yaml | 18 ++++++++++++ .../component-db-migration-1.22.yaml | 18 ++++++++++++ .../1-22/tektoncd-hub/component-ui-1.22.yaml | 18 ++++++++++++ .../1-22/tektoncd-hub/image-api-1.22.yaml | 22 +++++++++++++++ .../tektoncd-hub/image-db-migration-1.22.yaml | 22 +++++++++++++++ .../1-22/tektoncd-hub/image-ui-1.22.yaml | 22 +++++++++++++++ .../component-controller-1.22.yaml | 18 ++++++++++++ .../component-entrypoint-1.22.yaml | 18 ++++++++++++ .../component-events-1.22.yaml | 18 ++++++++++++ .../tektoncd-pipeline/component-nop-1.22.yaml | 18 ++++++++++++ .../component-resolvers-1.22.yaml | 18 ++++++++++++ .../component-sidecarlogresults-1.22.yaml | 18 ++++++++++++ .../component-webhook-1.22.yaml | 18 ++++++++++++ .../component-workingdirinit-1.22.yaml | 18 ++++++++++++ .../image-controller-1.22.yaml | 22 +++++++++++++++ .../image-entrypoint-1.22.yaml | 22 +++++++++++++++ .../tektoncd-pipeline/image-events-1.22.yaml | 22 +++++++++++++++ .../tektoncd-pipeline/image-nop-1.22.yaml | 22 +++++++++++++++ .../image-resolvers-1.22.yaml | 22 +++++++++++++++ .../image-sidecarlogresults-1.22.yaml | 22 +++++++++++++++ .../tektoncd-pipeline/image-webhook-1.22.yaml | 22 +++++++++++++++ .../image-workingdirinit-1.22.yaml | 22 +++++++++++++++ .../component-controller-1.22.yaml | 18 ++++++++++++ .../image-controller-1.22.yaml | 22 +++++++++++++++ .../tektoncd-results/component-api-1.22.yaml | 18 ++++++++++++ ...component-retention-policy-agent-1.22.yaml | 18 ++++++++++++ .../component-watcher-1.22.yaml | 18 ++++++++++++ .../1-22/tektoncd-results/image-api-1.22.yaml | 22 +++++++++++++++ .../image-retention-policy-agent-1.22.yaml | 22 +++++++++++++++ .../tektoncd-results/image-watcher-1.22.yaml | 22 +++++++++++++++ .../component-controller-1.22.yaml | 18 ++++++++++++ .../component-core-interceptors-1.22.yaml | 18 ++++++++++++ .../component-eventlistenersink-1.22.yaml | 18 ++++++++++++ .../component-webhook-1.22.yaml | 18 ++++++++++++ .../image-controller-1.22.yaml | 22 +++++++++++++++ .../image-core-interceptors-1.22.yaml | 22 +++++++++++++++ .../image-eventlistenersink-1.22.yaml | 22 +++++++++++++++ .../tektoncd-triggers/image-webhook-1.22.yaml | 22 +++++++++++++++ .../openshift-pipelines-core/1-22/tests.yaml | 27 ++++++++++++++++++ .../openshift-pipelines-core/role.yaml | 14 ++++++++++ .../service-account.yaml | 10 +++++++ .../1-22/application.yaml | 8 ++++++ .../operator/component-index-4.16-1.22.yaml | 18 ++++++++++++ .../1-22/operator/image-index-4.16-1.22.yaml | 22 +++++++++++++++ .../1-22/release-plan.yaml | 28 +++++++++++++++++++ .../1-22/tests.yaml | 27 ++++++++++++++++++ .../openshift-pipelines-index-4.16/role.yaml | 14 ++++++++++ .../service-account.yaml | 10 +++++++ .../1-22/application.yaml | 8 ++++++ .../operator/component-index-4.17-1.22.yaml | 18 ++++++++++++ .../1-22/operator/image-index-4.17-1.22.yaml | 22 +++++++++++++++ .../1-22/release-plan.yaml | 28 +++++++++++++++++++ .../1-22/tests.yaml | 27 ++++++++++++++++++ .../openshift-pipelines-index-4.17/role.yaml | 14 ++++++++++ .../service-account.yaml | 10 +++++++ .../1-22/application.yaml | 8 ++++++ .../operator/component-index-4.18-1.22.yaml | 18 ++++++++++++ .../1-22/operator/image-index-4.18-1.22.yaml | 22 +++++++++++++++ .../1-22/release-plan.yaml | 28 +++++++++++++++++++ .../1-22/tests.yaml | 27 ++++++++++++++++++ .../openshift-pipelines-index-4.18/role.yaml | 14 ++++++++++ .../service-account.yaml | 10 +++++++ .../1-22/application.yaml | 8 ++++++ .../operator/component-index-4.19-1.22.yaml | 18 ++++++++++++ .../1-22/operator/image-index-4.19-1.22.yaml | 22 +++++++++++++++ .../1-22/release-plan.yaml | 28 +++++++++++++++++++ .../1-22/tests.yaml | 27 ++++++++++++++++++ .../openshift-pipelines-index-4.19/role.yaml | 14 ++++++++++ .../service-account.yaml | 10 +++++++ .../1-22/application.yaml | 8 ++++++ .../operator/component-index-4.20-1.22.yaml | 18 ++++++++++++ .../1-22/operator/image-index-4.20-1.22.yaml | 22 +++++++++++++++ .../1-22/release-plan.yaml | 28 +++++++++++++++++++ .../1-22/tests.yaml | 27 ++++++++++++++++++ .../openshift-pipelines-index-4.20/role.yaml | 14 ++++++++++ .../service-account.yaml | 10 +++++++ .../1-22/application.yaml | 8 ++++++ .../1-22/operator/component-bundle-1.22.yaml | 18 ++++++++++++ .../operator/component-operator-1.22.yaml | 18 ++++++++++++ .../1-22/operator/component-proxy-1.22.yaml | 18 ++++++++++++ .../1-22/operator/component-webhook-1.22.yaml | 18 ++++++++++++ .../1-22/operator/image-bundle-1.22.yaml | 22 +++++++++++++++ .../1-22/operator/image-operator-1.22.yaml | 22 +++++++++++++++ .../1-22/operator/image-proxy-1.22.yaml | 22 +++++++++++++++ .../1-22/operator/image-webhook-1.22.yaml | 22 +++++++++++++++ .../1-22/release-plan.yaml | 28 +++++++++++++++++++ .../1-22/tests.yaml | 27 ++++++++++++++++++ .../openshift-pipelines-operator/role.yaml | 14 ++++++++++ .../service-account.yaml | 10 +++++++ 99 files changed, 1889 insertions(+) create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/1-22/application.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/1-22/p12n-multicluster-proxy-aae/component-proxy-server-1.22.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/1-22/p12n-multicluster-proxy-aae/image-proxy-server-1.22.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/1-22/p12n-syncer-service/component-controller-1.22.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/1-22/p12n-syncer-service/image-controller-1.22.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/1-22/release-plan.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/1-22/tekton-kueue/component-scheduler-1.22.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/1-22/tekton-kueue/image-scheduler-1.22.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-chains/component-controller-1.22.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-chains/image-controller-1.22.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-hub/component-api-1.22.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-hub/component-db-migration-1.22.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-hub/component-ui-1.22.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-hub/image-api-1.22.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-hub/image-db-migration-1.22.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-hub/image-ui-1.22.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-pipeline/component-controller-1.22.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-pipeline/component-entrypoint-1.22.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-pipeline/component-events-1.22.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-pipeline/component-nop-1.22.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-pipeline/component-resolvers-1.22.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-pipeline/component-sidecarlogresults-1.22.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-pipeline/component-webhook-1.22.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-pipeline/component-workingdirinit-1.22.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-pipeline/image-controller-1.22.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-pipeline/image-entrypoint-1.22.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-pipeline/image-events-1.22.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-pipeline/image-nop-1.22.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-pipeline/image-resolvers-1.22.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-pipeline/image-sidecarlogresults-1.22.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-pipeline/image-webhook-1.22.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-pipeline/image-workingdirinit-1.22.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-pruner/component-controller-1.22.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-pruner/image-controller-1.22.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-results/component-api-1.22.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-results/component-retention-policy-agent-1.22.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-results/component-watcher-1.22.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-results/image-api-1.22.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-results/image-retention-policy-agent-1.22.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-results/image-watcher-1.22.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-triggers/component-controller-1.22.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-triggers/component-core-interceptors-1.22.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-triggers/component-eventlistenersink-1.22.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-triggers/component-webhook-1.22.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-triggers/image-controller-1.22.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-triggers/image-core-interceptors-1.22.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-triggers/image-eventlistenersink-1.22.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-triggers/image-webhook-1.22.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/1-22/tests.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/role.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/service-account.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-index-4.16/1-22/application.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-index-4.16/1-22/operator/component-index-4.16-1.22.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-index-4.16/1-22/operator/image-index-4.16-1.22.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-index-4.16/1-22/release-plan.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-index-4.16/1-22/tests.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-index-4.16/role.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-index-4.16/service-account.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-index-4.17/1-22/application.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-index-4.17/1-22/operator/component-index-4.17-1.22.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-index-4.17/1-22/operator/image-index-4.17-1.22.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-index-4.17/1-22/release-plan.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-index-4.17/1-22/tests.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-index-4.17/role.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-index-4.17/service-account.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-index-4.18/1-22/application.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-index-4.18/1-22/operator/component-index-4.18-1.22.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-index-4.18/1-22/operator/image-index-4.18-1.22.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-index-4.18/1-22/release-plan.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-index-4.18/1-22/tests.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-index-4.18/role.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-index-4.18/service-account.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-index-4.19/1-22/application.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-index-4.19/1-22/operator/component-index-4.19-1.22.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-index-4.19/1-22/operator/image-index-4.19-1.22.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-index-4.19/1-22/release-plan.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-index-4.19/1-22/tests.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-index-4.19/role.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-index-4.19/service-account.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-index-4.20/1-22/application.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-index-4.20/1-22/operator/component-index-4.20-1.22.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-index-4.20/1-22/operator/image-index-4.20-1.22.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-index-4.20/1-22/release-plan.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-index-4.20/1-22/tests.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-index-4.20/role.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-index-4.20/service-account.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-operator/1-22/application.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-operator/1-22/operator/component-bundle-1.22.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-operator/1-22/operator/component-operator-1.22.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-operator/1-22/operator/component-proxy-1.22.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-operator/1-22/operator/component-webhook-1.22.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-operator/1-22/operator/image-bundle-1.22.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-operator/1-22/operator/image-operator-1.22.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-operator/1-22/operator/image-proxy-1.22.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-operator/1-22/operator/image-webhook-1.22.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-operator/1-22/release-plan.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-operator/1-22/tests.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-operator/role.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-operator/service-account.yaml diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/application.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/application.yaml new file mode 100644 index 00000000..71a3680a --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/application.yaml @@ -0,0 +1,8 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Application +metadata: + name: openshift-pipelines-core-1-22 +spec: + displayName: openshift-pipelines-core-1-22 diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/p12n-multicluster-proxy-aae/component-proxy-server-1.22.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/p12n-multicluster-proxy-aae/component-proxy-server-1.22.yaml new file mode 100644 index 00000000..858e8864 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/p12n-multicluster-proxy-aae/component-proxy-server-1.22.yaml @@ -0,0 +1,18 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Component +metadata: + annotations: + build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' + name: p12n-multicluster-proxy-aae-1-22-proxy-server +spec: + componentName: proxy-server + application: openshift-pipelines-core-1-22 + build-nudges-ref: + - operator-1-22-bundle + source: + git: + url: https://github.com/openshift-pipelines/p12n-multicluster-proxy-aae.git + dockerfileUrl: .konflux/dockerfiles/proxy-server.Dockerfile + revision: release-v1.22.x diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/p12n-multicluster-proxy-aae/image-proxy-server-1.22.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/p12n-multicluster-proxy-aae/image-proxy-server-1.22.yaml new file mode 100644 index 00000000..5c40d729 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/p12n-multicluster-proxy-aae/image-proxy-server-1.22.yaml @@ -0,0 +1,22 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ImageRepository +metadata: + name: p12n-multicluster-proxy-aae-1-22-proxy-server + annotations: + image-controller.appstudio.redhat.com/update-component-image: "true" + image-controller.appstudio.redhat.com/skip-repository-deletion: "true" + labels: + appstudio.redhat.com/component: p12n-multicluster-proxy-aae-1-22-proxy-server + appstudio.redhat.com/application: openshift-pipelines-core-1-22 +spec: + image: + name: pipelines-multicluster-proxy-aae-proxy-server-rhel9 + visibility: public + notifications: + - config: + url: https://bombino.api.redhat.com/v1/sbom/quay/push + event: repo_push + method: webhook + title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/p12n-syncer-service/component-controller-1.22.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/p12n-syncer-service/component-controller-1.22.yaml new file mode 100644 index 00000000..bbf891eb --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/p12n-syncer-service/component-controller-1.22.yaml @@ -0,0 +1,18 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Component +metadata: + annotations: + build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' + name: p12n-syncer-service-1-22-controller +spec: + componentName: controller + application: openshift-pipelines-core-1-22 + build-nudges-ref: + - operator-1-22-bundle + source: + git: + url: https://github.com/openshift-pipelines/p12n-syncer-service.git + dockerfileUrl: .konflux/dockerfiles/controller.Dockerfile + revision: release-v1.22.x diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/p12n-syncer-service/image-controller-1.22.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/p12n-syncer-service/image-controller-1.22.yaml new file mode 100644 index 00000000..b4334be8 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/p12n-syncer-service/image-controller-1.22.yaml @@ -0,0 +1,22 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ImageRepository +metadata: + name: p12n-syncer-service-1-22-controller + annotations: + image-controller.appstudio.redhat.com/update-component-image: "true" + image-controller.appstudio.redhat.com/skip-repository-deletion: "true" + labels: + appstudio.redhat.com/component: p12n-syncer-service-1-22-controller + appstudio.redhat.com/application: openshift-pipelines-core-1-22 +spec: + image: + name: pipelines-syncer-service-controller-rhel9 + visibility: public + notifications: + - config: + url: https://bombino.api.redhat.com/v1/sbom/quay/push + event: repo_push + method: webhook + title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/release-plan.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/release-plan.yaml new file mode 100644 index 00000000..e513eb32 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/release-plan.yaml @@ -0,0 +1,28 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ReleasePlan +metadata: + labels: + release.appstudio.openshift.io/auto-release: "true" + release.appstudio.openshift.io/standing-attribution: 'true' + name: openshift-pipelines-core-1-22-rp +spec: + application: openshift-pipelines-core-1-22 + tenantPipeline: + serviceAccountName: release-registry-openshift-pipelines-core + pipelineRef: + resolver: git + params: + - name: url + value: https://github.com/openshift-pipelines/hack.git + - name: revision + # value: release-v1.22.x + value: main + - name: pathInRepo + value: pipelines/release-pipeline.yaml + params: + - name: release_version + value: "v1.22.0" + - name: release_to_github + value: "false" diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tekton-kueue/component-scheduler-1.22.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tekton-kueue/component-scheduler-1.22.yaml new file mode 100644 index 00000000..40b6588d --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tekton-kueue/component-scheduler-1.22.yaml @@ -0,0 +1,18 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Component +metadata: + annotations: + build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' + name: tekton-kueue-1-22-scheduler +spec: + componentName: scheduler + application: openshift-pipelines-core-1-22 + build-nudges-ref: + - operator-1-22-bundle + source: + git: + url: https://github.com/openshift-pipelines/tekton-kueue.git + dockerfileUrl: .konflux/dockerfiles/scheduler.Dockerfile + revision: release-v1.22.x diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tekton-kueue/image-scheduler-1.22.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tekton-kueue/image-scheduler-1.22.yaml new file mode 100644 index 00000000..ea890db4 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tekton-kueue/image-scheduler-1.22.yaml @@ -0,0 +1,22 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ImageRepository +metadata: + name: tekton-kueue-1-22-scheduler + annotations: + image-controller.appstudio.redhat.com/update-component-image: "true" + image-controller.appstudio.redhat.com/skip-repository-deletion: "true" + labels: + appstudio.redhat.com/component: tekton-kueue-1-22-scheduler + appstudio.redhat.com/application: openshift-pipelines-core-1-22 +spec: + image: + name: pipelines-scheduler-rhel9 + visibility: public + notifications: + - config: + url: https://bombino.api.redhat.com/v1/sbom/quay/push + event: repo_push + method: webhook + title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-chains/component-controller-1.22.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-chains/component-controller-1.22.yaml new file mode 100644 index 00000000..2a79ce44 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-chains/component-controller-1.22.yaml @@ -0,0 +1,18 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Component +metadata: + annotations: + build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' + name: tektoncd-chains-1-22-controller +spec: + componentName: controller + application: openshift-pipelines-core-1-22 + build-nudges-ref: + - operator-1-22-bundle + source: + git: + url: https://github.com/openshift-pipelines/tektoncd-chains.git + dockerfileUrl: .konflux/dockerfiles/controller.Dockerfile + revision: release-v1.22.x diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-chains/image-controller-1.22.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-chains/image-controller-1.22.yaml new file mode 100644 index 00000000..8523bda9 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-chains/image-controller-1.22.yaml @@ -0,0 +1,22 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ImageRepository +metadata: + name: tektoncd-chains-1-22-controller + annotations: + image-controller.appstudio.redhat.com/update-component-image: "true" + image-controller.appstudio.redhat.com/skip-repository-deletion: "true" + labels: + appstudio.redhat.com/component: tektoncd-chains-1-22-controller + appstudio.redhat.com/application: openshift-pipelines-core-1-22 +spec: + image: + name: pipelines-chains-controller-rhel9 + visibility: public + notifications: + - config: + url: https://bombino.api.redhat.com/v1/sbom/quay/push + event: repo_push + method: webhook + title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-hub/component-api-1.22.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-hub/component-api-1.22.yaml new file mode 100644 index 00000000..981486a3 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-hub/component-api-1.22.yaml @@ -0,0 +1,18 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Component +metadata: + annotations: + build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' + name: tektoncd-hub-1-22-api +spec: + componentName: api + application: openshift-pipelines-core-1-22 + build-nudges-ref: + - operator-1-22-bundle + source: + git: + url: https://github.com/openshift-pipelines/tektoncd-hub.git + dockerfileUrl: .konflux/dockerfiles/api.Dockerfile + revision: release-v1.22.x diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-hub/component-db-migration-1.22.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-hub/component-db-migration-1.22.yaml new file mode 100644 index 00000000..57e1c291 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-hub/component-db-migration-1.22.yaml @@ -0,0 +1,18 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Component +metadata: + annotations: + build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' + name: tektoncd-hub-1-22-db-migration +spec: + componentName: db-migration + application: openshift-pipelines-core-1-22 + build-nudges-ref: + - operator-1-22-bundle + source: + git: + url: https://github.com/openshift-pipelines/tektoncd-hub.git + dockerfileUrl: .konflux/dockerfiles/db-migration.Dockerfile + revision: release-v1.22.x diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-hub/component-ui-1.22.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-hub/component-ui-1.22.yaml new file mode 100644 index 00000000..94e9c47a --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-hub/component-ui-1.22.yaml @@ -0,0 +1,18 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Component +metadata: + annotations: + build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' + name: tektoncd-hub-1-22-ui +spec: + componentName: ui + application: openshift-pipelines-core-1-22 + build-nudges-ref: + - operator-1-22-bundle + source: + git: + url: https://github.com/openshift-pipelines/tektoncd-hub.git + dockerfileUrl: .konflux/dockerfiles/ui.Dockerfile + revision: release-v1.22.x diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-hub/image-api-1.22.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-hub/image-api-1.22.yaml new file mode 100644 index 00000000..9f625056 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-hub/image-api-1.22.yaml @@ -0,0 +1,22 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ImageRepository +metadata: + name: tektoncd-hub-1-22-api + annotations: + image-controller.appstudio.redhat.com/update-component-image: "true" + image-controller.appstudio.redhat.com/skip-repository-deletion: "true" + labels: + appstudio.redhat.com/component: tektoncd-hub-1-22-api + appstudio.redhat.com/application: openshift-pipelines-core-1-22 +spec: + image: + name: pipelines-hub-api-rhel9 + visibility: public + notifications: + - config: + url: https://bombino.api.redhat.com/v1/sbom/quay/push + event: repo_push + method: webhook + title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-hub/image-db-migration-1.22.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-hub/image-db-migration-1.22.yaml new file mode 100644 index 00000000..199a6310 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-hub/image-db-migration-1.22.yaml @@ -0,0 +1,22 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ImageRepository +metadata: + name: tektoncd-hub-1-22-db-migration + annotations: + image-controller.appstudio.redhat.com/update-component-image: "true" + image-controller.appstudio.redhat.com/skip-repository-deletion: "true" + labels: + appstudio.redhat.com/component: tektoncd-hub-1-22-db-migration + appstudio.redhat.com/application: openshift-pipelines-core-1-22 +spec: + image: + name: pipelines-hub-db-migration-rhel9 + visibility: public + notifications: + - config: + url: https://bombino.api.redhat.com/v1/sbom/quay/push + event: repo_push + method: webhook + title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-hub/image-ui-1.22.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-hub/image-ui-1.22.yaml new file mode 100644 index 00000000..258da843 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-hub/image-ui-1.22.yaml @@ -0,0 +1,22 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ImageRepository +metadata: + name: tektoncd-hub-1-22-ui + annotations: + image-controller.appstudio.redhat.com/update-component-image: "true" + image-controller.appstudio.redhat.com/skip-repository-deletion: "true" + labels: + appstudio.redhat.com/component: tektoncd-hub-1-22-ui + appstudio.redhat.com/application: openshift-pipelines-core-1-22 +spec: + image: + name: pipelines-hub-ui-rhel9 + visibility: public + notifications: + - config: + url: https://bombino.api.redhat.com/v1/sbom/quay/push + event: repo_push + method: webhook + title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-pipeline/component-controller-1.22.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-pipeline/component-controller-1.22.yaml new file mode 100644 index 00000000..fde9653d --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-pipeline/component-controller-1.22.yaml @@ -0,0 +1,18 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Component +metadata: + annotations: + build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' + name: tektoncd-pipeline-1-22-controller +spec: + componentName: controller + application: openshift-pipelines-core-1-22 + build-nudges-ref: + - operator-1-22-bundle + source: + git: + url: https://github.com/openshift-pipelines/tektoncd-pipeline.git + dockerfileUrl: .konflux/dockerfiles/controller.Dockerfile + revision: release-v1.22.x diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-pipeline/component-entrypoint-1.22.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-pipeline/component-entrypoint-1.22.yaml new file mode 100644 index 00000000..ea61d0a6 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-pipeline/component-entrypoint-1.22.yaml @@ -0,0 +1,18 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Component +metadata: + annotations: + build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' + name: tektoncd-pipeline-1-22-entrypoint +spec: + componentName: entrypoint + application: openshift-pipelines-core-1-22 + build-nudges-ref: + - operator-1-22-bundle + source: + git: + url: https://github.com/openshift-pipelines/tektoncd-pipeline.git + dockerfileUrl: .konflux/dockerfiles/entrypoint.Dockerfile + revision: release-v1.22.x diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-pipeline/component-events-1.22.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-pipeline/component-events-1.22.yaml new file mode 100644 index 00000000..1ab2dd3a --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-pipeline/component-events-1.22.yaml @@ -0,0 +1,18 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Component +metadata: + annotations: + build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' + name: tektoncd-pipeline-1-22-events +spec: + componentName: events + application: openshift-pipelines-core-1-22 + build-nudges-ref: + - operator-1-22-bundle + source: + git: + url: https://github.com/openshift-pipelines/tektoncd-pipeline.git + dockerfileUrl: .konflux/dockerfiles/events.Dockerfile + revision: release-v1.22.x diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-pipeline/component-nop-1.22.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-pipeline/component-nop-1.22.yaml new file mode 100644 index 00000000..87075f4f --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-pipeline/component-nop-1.22.yaml @@ -0,0 +1,18 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Component +metadata: + annotations: + build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' + name: tektoncd-pipeline-1-22-nop +spec: + componentName: nop + application: openshift-pipelines-core-1-22 + build-nudges-ref: + - operator-1-22-bundle + source: + git: + url: https://github.com/openshift-pipelines/tektoncd-pipeline.git + dockerfileUrl: .konflux/dockerfiles/nop.Dockerfile + revision: release-v1.22.x diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-pipeline/component-resolvers-1.22.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-pipeline/component-resolvers-1.22.yaml new file mode 100644 index 00000000..7710a0cf --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-pipeline/component-resolvers-1.22.yaml @@ -0,0 +1,18 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Component +metadata: + annotations: + build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' + name: tektoncd-pipeline-1-22-resolvers +spec: + componentName: resolvers + application: openshift-pipelines-core-1-22 + build-nudges-ref: + - operator-1-22-bundle + source: + git: + url: https://github.com/openshift-pipelines/tektoncd-pipeline.git + dockerfileUrl: .konflux/dockerfiles/resolvers.Dockerfile + revision: release-v1.22.x diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-pipeline/component-sidecarlogresults-1.22.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-pipeline/component-sidecarlogresults-1.22.yaml new file mode 100644 index 00000000..54aaf940 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-pipeline/component-sidecarlogresults-1.22.yaml @@ -0,0 +1,18 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Component +metadata: + annotations: + build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' + name: tektoncd-pipeline-1-22-sidecarlogresults +spec: + componentName: sidecarlogresults + application: openshift-pipelines-core-1-22 + build-nudges-ref: + - operator-1-22-bundle + source: + git: + url: https://github.com/openshift-pipelines/tektoncd-pipeline.git + dockerfileUrl: .konflux/dockerfiles/sidecarlogresults.Dockerfile + revision: release-v1.22.x diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-pipeline/component-webhook-1.22.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-pipeline/component-webhook-1.22.yaml new file mode 100644 index 00000000..353be9c1 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-pipeline/component-webhook-1.22.yaml @@ -0,0 +1,18 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Component +metadata: + annotations: + build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' + name: tektoncd-pipeline-1-22-webhook +spec: + componentName: webhook + application: openshift-pipelines-core-1-22 + build-nudges-ref: + - operator-1-22-bundle + source: + git: + url: https://github.com/openshift-pipelines/tektoncd-pipeline.git + dockerfileUrl: .konflux/dockerfiles/webhook.Dockerfile + revision: release-v1.22.x diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-pipeline/component-workingdirinit-1.22.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-pipeline/component-workingdirinit-1.22.yaml new file mode 100644 index 00000000..a10abcc0 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-pipeline/component-workingdirinit-1.22.yaml @@ -0,0 +1,18 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Component +metadata: + annotations: + build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' + name: tektoncd-pipeline-1-22-workingdirinit +spec: + componentName: workingdirinit + application: openshift-pipelines-core-1-22 + build-nudges-ref: + - operator-1-22-bundle + source: + git: + url: https://github.com/openshift-pipelines/tektoncd-pipeline.git + dockerfileUrl: .konflux/dockerfiles/workingdirinit.Dockerfile + revision: release-v1.22.x diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-pipeline/image-controller-1.22.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-pipeline/image-controller-1.22.yaml new file mode 100644 index 00000000..624c165d --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-pipeline/image-controller-1.22.yaml @@ -0,0 +1,22 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ImageRepository +metadata: + name: tektoncd-pipeline-1-22-controller + annotations: + image-controller.appstudio.redhat.com/update-component-image: "true" + image-controller.appstudio.redhat.com/skip-repository-deletion: "true" + labels: + appstudio.redhat.com/component: tektoncd-pipeline-1-22-controller + appstudio.redhat.com/application: openshift-pipelines-core-1-22 +spec: + image: + name: pipelines-controller-rhel9 + visibility: public + notifications: + - config: + url: https://bombino.api.redhat.com/v1/sbom/quay/push + event: repo_push + method: webhook + title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-pipeline/image-entrypoint-1.22.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-pipeline/image-entrypoint-1.22.yaml new file mode 100644 index 00000000..97aac2aa --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-pipeline/image-entrypoint-1.22.yaml @@ -0,0 +1,22 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ImageRepository +metadata: + name: tektoncd-pipeline-1-22-entrypoint + annotations: + image-controller.appstudio.redhat.com/update-component-image: "true" + image-controller.appstudio.redhat.com/skip-repository-deletion: "true" + labels: + appstudio.redhat.com/component: tektoncd-pipeline-1-22-entrypoint + appstudio.redhat.com/application: openshift-pipelines-core-1-22 +spec: + image: + name: pipelines-entrypoint-rhel9 + visibility: public + notifications: + - config: + url: https://bombino.api.redhat.com/v1/sbom/quay/push + event: repo_push + method: webhook + title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-pipeline/image-events-1.22.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-pipeline/image-events-1.22.yaml new file mode 100644 index 00000000..898c88a8 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-pipeline/image-events-1.22.yaml @@ -0,0 +1,22 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ImageRepository +metadata: + name: tektoncd-pipeline-1-22-events + annotations: + image-controller.appstudio.redhat.com/update-component-image: "true" + image-controller.appstudio.redhat.com/skip-repository-deletion: "true" + labels: + appstudio.redhat.com/component: tektoncd-pipeline-1-22-events + appstudio.redhat.com/application: openshift-pipelines-core-1-22 +spec: + image: + name: pipelines-events-rhel9 + visibility: public + notifications: + - config: + url: https://bombino.api.redhat.com/v1/sbom/quay/push + event: repo_push + method: webhook + title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-pipeline/image-nop-1.22.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-pipeline/image-nop-1.22.yaml new file mode 100644 index 00000000..0c644e29 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-pipeline/image-nop-1.22.yaml @@ -0,0 +1,22 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ImageRepository +metadata: + name: tektoncd-pipeline-1-22-nop + annotations: + image-controller.appstudio.redhat.com/update-component-image: "true" + image-controller.appstudio.redhat.com/skip-repository-deletion: "true" + labels: + appstudio.redhat.com/component: tektoncd-pipeline-1-22-nop + appstudio.redhat.com/application: openshift-pipelines-core-1-22 +spec: + image: + name: pipelines-nop-rhel9 + visibility: public + notifications: + - config: + url: https://bombino.api.redhat.com/v1/sbom/quay/push + event: repo_push + method: webhook + title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-pipeline/image-resolvers-1.22.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-pipeline/image-resolvers-1.22.yaml new file mode 100644 index 00000000..097fb38c --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-pipeline/image-resolvers-1.22.yaml @@ -0,0 +1,22 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ImageRepository +metadata: + name: tektoncd-pipeline-1-22-resolvers + annotations: + image-controller.appstudio.redhat.com/update-component-image: "true" + image-controller.appstudio.redhat.com/skip-repository-deletion: "true" + labels: + appstudio.redhat.com/component: tektoncd-pipeline-1-22-resolvers + appstudio.redhat.com/application: openshift-pipelines-core-1-22 +spec: + image: + name: pipelines-resolvers-rhel9 + visibility: public + notifications: + - config: + url: https://bombino.api.redhat.com/v1/sbom/quay/push + event: repo_push + method: webhook + title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-pipeline/image-sidecarlogresults-1.22.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-pipeline/image-sidecarlogresults-1.22.yaml new file mode 100644 index 00000000..18b9dec6 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-pipeline/image-sidecarlogresults-1.22.yaml @@ -0,0 +1,22 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ImageRepository +metadata: + name: tektoncd-pipeline-1-22-sidecarlogresults + annotations: + image-controller.appstudio.redhat.com/update-component-image: "true" + image-controller.appstudio.redhat.com/skip-repository-deletion: "true" + labels: + appstudio.redhat.com/component: tektoncd-pipeline-1-22-sidecarlogresults + appstudio.redhat.com/application: openshift-pipelines-core-1-22 +spec: + image: + name: pipelines-sidecarlogresults-rhel9 + visibility: public + notifications: + - config: + url: https://bombino.api.redhat.com/v1/sbom/quay/push + event: repo_push + method: webhook + title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-pipeline/image-webhook-1.22.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-pipeline/image-webhook-1.22.yaml new file mode 100644 index 00000000..d3256b01 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-pipeline/image-webhook-1.22.yaml @@ -0,0 +1,22 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ImageRepository +metadata: + name: tektoncd-pipeline-1-22-webhook + annotations: + image-controller.appstudio.redhat.com/update-component-image: "true" + image-controller.appstudio.redhat.com/skip-repository-deletion: "true" + labels: + appstudio.redhat.com/component: tektoncd-pipeline-1-22-webhook + appstudio.redhat.com/application: openshift-pipelines-core-1-22 +spec: + image: + name: pipelines-webhook-rhel9 + visibility: public + notifications: + - config: + url: https://bombino.api.redhat.com/v1/sbom/quay/push + event: repo_push + method: webhook + title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-pipeline/image-workingdirinit-1.22.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-pipeline/image-workingdirinit-1.22.yaml new file mode 100644 index 00000000..8e048dbd --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-pipeline/image-workingdirinit-1.22.yaml @@ -0,0 +1,22 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ImageRepository +metadata: + name: tektoncd-pipeline-1-22-workingdirinit + annotations: + image-controller.appstudio.redhat.com/update-component-image: "true" + image-controller.appstudio.redhat.com/skip-repository-deletion: "true" + labels: + appstudio.redhat.com/component: tektoncd-pipeline-1-22-workingdirinit + appstudio.redhat.com/application: openshift-pipelines-core-1-22 +spec: + image: + name: pipelines-workingdirinit-rhel9 + visibility: public + notifications: + - config: + url: https://bombino.api.redhat.com/v1/sbom/quay/push + event: repo_push + method: webhook + title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-pruner/component-controller-1.22.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-pruner/component-controller-1.22.yaml new file mode 100644 index 00000000..cf2116d3 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-pruner/component-controller-1.22.yaml @@ -0,0 +1,18 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Component +metadata: + annotations: + build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' + name: tektoncd-pruner-1-22-controller +spec: + componentName: controller + application: openshift-pipelines-core-1-22 + build-nudges-ref: + - operator-1-22-bundle + source: + git: + url: https://github.com/openshift-pipelines/tektoncd-pruner.git + dockerfileUrl: .konflux/dockerfiles/controller.Dockerfile + revision: release-v1.22.x diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-pruner/image-controller-1.22.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-pruner/image-controller-1.22.yaml new file mode 100644 index 00000000..4e002a61 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-pruner/image-controller-1.22.yaml @@ -0,0 +1,22 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ImageRepository +metadata: + name: tektoncd-pruner-1-22-controller + annotations: + image-controller.appstudio.redhat.com/update-component-image: "true" + image-controller.appstudio.redhat.com/skip-repository-deletion: "true" + labels: + appstudio.redhat.com/component: tektoncd-pruner-1-22-controller + appstudio.redhat.com/application: openshift-pipelines-core-1-22 +spec: + image: + name: pipelines-pruner-controller-rhel9 + visibility: public + notifications: + - config: + url: https://bombino.api.redhat.com/v1/sbom/quay/push + event: repo_push + method: webhook + title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-results/component-api-1.22.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-results/component-api-1.22.yaml new file mode 100644 index 00000000..67370d38 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-results/component-api-1.22.yaml @@ -0,0 +1,18 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Component +metadata: + annotations: + build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' + name: tektoncd-results-1-22-api +spec: + componentName: api + application: openshift-pipelines-core-1-22 + build-nudges-ref: + - operator-1-22-bundle + source: + git: + url: https://github.com/openshift-pipelines/tektoncd-results.git + dockerfileUrl: .konflux/dockerfiles/api.Dockerfile + revision: release-v1.22.x diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-results/component-retention-policy-agent-1.22.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-results/component-retention-policy-agent-1.22.yaml new file mode 100644 index 00000000..ec63d808 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-results/component-retention-policy-agent-1.22.yaml @@ -0,0 +1,18 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Component +metadata: + annotations: + build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' + name: tektoncd-results-1-22-retention-policy-agent +spec: + componentName: retention-policy-agent + application: openshift-pipelines-core-1-22 + build-nudges-ref: + - operator-1-22-bundle + source: + git: + url: https://github.com/openshift-pipelines/tektoncd-results.git + dockerfileUrl: .konflux/dockerfiles/retention-policy-agent.Dockerfile + revision: release-v1.22.x diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-results/component-watcher-1.22.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-results/component-watcher-1.22.yaml new file mode 100644 index 00000000..989f5d72 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-results/component-watcher-1.22.yaml @@ -0,0 +1,18 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Component +metadata: + annotations: + build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' + name: tektoncd-results-1-22-watcher +spec: + componentName: watcher + application: openshift-pipelines-core-1-22 + build-nudges-ref: + - operator-1-22-bundle + source: + git: + url: https://github.com/openshift-pipelines/tektoncd-results.git + dockerfileUrl: .konflux/dockerfiles/watcher.Dockerfile + revision: release-v1.22.x diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-results/image-api-1.22.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-results/image-api-1.22.yaml new file mode 100644 index 00000000..a6b29ac8 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-results/image-api-1.22.yaml @@ -0,0 +1,22 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ImageRepository +metadata: + name: tektoncd-results-1-22-api + annotations: + image-controller.appstudio.redhat.com/update-component-image: "true" + image-controller.appstudio.redhat.com/skip-repository-deletion: "true" + labels: + appstudio.redhat.com/component: tektoncd-results-1-22-api + appstudio.redhat.com/application: openshift-pipelines-core-1-22 +spec: + image: + name: pipelines-results-api-rhel9 + visibility: public + notifications: + - config: + url: https://bombino.api.redhat.com/v1/sbom/quay/push + event: repo_push + method: webhook + title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-results/image-retention-policy-agent-1.22.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-results/image-retention-policy-agent-1.22.yaml new file mode 100644 index 00000000..5726b851 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-results/image-retention-policy-agent-1.22.yaml @@ -0,0 +1,22 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ImageRepository +metadata: + name: tektoncd-results-1-22-retention-policy-agent + annotations: + image-controller.appstudio.redhat.com/update-component-image: "true" + image-controller.appstudio.redhat.com/skip-repository-deletion: "true" + labels: + appstudio.redhat.com/component: tektoncd-results-1-22-retention-policy-agent + appstudio.redhat.com/application: openshift-pipelines-core-1-22 +spec: + image: + name: pipelines-results-retention-policy-agent-rhel9 + visibility: public + notifications: + - config: + url: https://bombino.api.redhat.com/v1/sbom/quay/push + event: repo_push + method: webhook + title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-results/image-watcher-1.22.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-results/image-watcher-1.22.yaml new file mode 100644 index 00000000..9f66dd86 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-results/image-watcher-1.22.yaml @@ -0,0 +1,22 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ImageRepository +metadata: + name: tektoncd-results-1-22-watcher + annotations: + image-controller.appstudio.redhat.com/update-component-image: "true" + image-controller.appstudio.redhat.com/skip-repository-deletion: "true" + labels: + appstudio.redhat.com/component: tektoncd-results-1-22-watcher + appstudio.redhat.com/application: openshift-pipelines-core-1-22 +spec: + image: + name: pipelines-results-watcher-rhel9 + visibility: public + notifications: + - config: + url: https://bombino.api.redhat.com/v1/sbom/quay/push + event: repo_push + method: webhook + title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-triggers/component-controller-1.22.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-triggers/component-controller-1.22.yaml new file mode 100644 index 00000000..25805908 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-triggers/component-controller-1.22.yaml @@ -0,0 +1,18 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Component +metadata: + annotations: + build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' + name: tektoncd-triggers-1-22-controller +spec: + componentName: controller + application: openshift-pipelines-core-1-22 + build-nudges-ref: + - operator-1-22-bundle + source: + git: + url: https://github.com/openshift-pipelines/tektoncd-triggers.git + dockerfileUrl: .konflux/dockerfiles/controller.Dockerfile + revision: release-v1.22.x diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-triggers/component-core-interceptors-1.22.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-triggers/component-core-interceptors-1.22.yaml new file mode 100644 index 00000000..11a912ab --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-triggers/component-core-interceptors-1.22.yaml @@ -0,0 +1,18 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Component +metadata: + annotations: + build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' + name: tektoncd-triggers-1-22-core-interceptors +spec: + componentName: core-interceptors + application: openshift-pipelines-core-1-22 + build-nudges-ref: + - operator-1-22-bundle + source: + git: + url: https://github.com/openshift-pipelines/tektoncd-triggers.git + dockerfileUrl: .konflux/dockerfiles/core-interceptors.Dockerfile + revision: release-v1.22.x diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-triggers/component-eventlistenersink-1.22.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-triggers/component-eventlistenersink-1.22.yaml new file mode 100644 index 00000000..9c5e3a47 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-triggers/component-eventlistenersink-1.22.yaml @@ -0,0 +1,18 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Component +metadata: + annotations: + build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' + name: tektoncd-triggers-1-22-eventlistenersink +spec: + componentName: eventlistenersink + application: openshift-pipelines-core-1-22 + build-nudges-ref: + - operator-1-22-bundle + source: + git: + url: https://github.com/openshift-pipelines/tektoncd-triggers.git + dockerfileUrl: .konflux/dockerfiles/eventlistenersink.Dockerfile + revision: release-v1.22.x diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-triggers/component-webhook-1.22.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-triggers/component-webhook-1.22.yaml new file mode 100644 index 00000000..7a2b65bc --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-triggers/component-webhook-1.22.yaml @@ -0,0 +1,18 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Component +metadata: + annotations: + build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' + name: tektoncd-triggers-1-22-webhook +spec: + componentName: webhook + application: openshift-pipelines-core-1-22 + build-nudges-ref: + - operator-1-22-bundle + source: + git: + url: https://github.com/openshift-pipelines/tektoncd-triggers.git + dockerfileUrl: .konflux/dockerfiles/webhook.Dockerfile + revision: release-v1.22.x diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-triggers/image-controller-1.22.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-triggers/image-controller-1.22.yaml new file mode 100644 index 00000000..21c86870 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-triggers/image-controller-1.22.yaml @@ -0,0 +1,22 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ImageRepository +metadata: + name: tektoncd-triggers-1-22-controller + annotations: + image-controller.appstudio.redhat.com/update-component-image: "true" + image-controller.appstudio.redhat.com/skip-repository-deletion: "true" + labels: + appstudio.redhat.com/component: tektoncd-triggers-1-22-controller + appstudio.redhat.com/application: openshift-pipelines-core-1-22 +spec: + image: + name: pipelines-triggers-controller-rhel9 + visibility: public + notifications: + - config: + url: https://bombino.api.redhat.com/v1/sbom/quay/push + event: repo_push + method: webhook + title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-triggers/image-core-interceptors-1.22.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-triggers/image-core-interceptors-1.22.yaml new file mode 100644 index 00000000..14e0d4b7 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-triggers/image-core-interceptors-1.22.yaml @@ -0,0 +1,22 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ImageRepository +metadata: + name: tektoncd-triggers-1-22-core-interceptors + annotations: + image-controller.appstudio.redhat.com/update-component-image: "true" + image-controller.appstudio.redhat.com/skip-repository-deletion: "true" + labels: + appstudio.redhat.com/component: tektoncd-triggers-1-22-core-interceptors + appstudio.redhat.com/application: openshift-pipelines-core-1-22 +spec: + image: + name: pipelines-triggers-core-interceptors-rhel9 + visibility: public + notifications: + - config: + url: https://bombino.api.redhat.com/v1/sbom/quay/push + event: repo_push + method: webhook + title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-triggers/image-eventlistenersink-1.22.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-triggers/image-eventlistenersink-1.22.yaml new file mode 100644 index 00000000..cc9b7600 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-triggers/image-eventlistenersink-1.22.yaml @@ -0,0 +1,22 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ImageRepository +metadata: + name: tektoncd-triggers-1-22-eventlistenersink + annotations: + image-controller.appstudio.redhat.com/update-component-image: "true" + image-controller.appstudio.redhat.com/skip-repository-deletion: "true" + labels: + appstudio.redhat.com/component: tektoncd-triggers-1-22-eventlistenersink + appstudio.redhat.com/application: openshift-pipelines-core-1-22 +spec: + image: + name: pipelines-triggers-eventlistenersink-rhel9 + visibility: public + notifications: + - config: + url: https://bombino.api.redhat.com/v1/sbom/quay/push + event: repo_push + method: webhook + title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-triggers/image-webhook-1.22.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-triggers/image-webhook-1.22.yaml new file mode 100644 index 00000000..7d088102 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-triggers/image-webhook-1.22.yaml @@ -0,0 +1,22 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ImageRepository +metadata: + name: tektoncd-triggers-1-22-webhook + annotations: + image-controller.appstudio.redhat.com/update-component-image: "true" + image-controller.appstudio.redhat.com/skip-repository-deletion: "true" + labels: + appstudio.redhat.com/component: tektoncd-triggers-1-22-webhook + appstudio.redhat.com/application: openshift-pipelines-core-1-22 +spec: + image: + name: pipelines-triggers-webhook-rhel9 + visibility: public + notifications: + - config: + url: https://bombino.api.redhat.com/v1/sbom/quay/push + event: repo_push + method: webhook + title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tests.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tests.yaml new file mode 100644 index 00000000..0e0b58a2 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tests.yaml @@ -0,0 +1,27 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1beta2 +kind: IntegrationTestScenario +metadata: + name: openshift-pipelines-core-1-22-enterprise-contract +spec: + application: openshift-pipelines-core-1-22 + contexts: + - description: execute the integration test for a component + name: component + params: + - name: POLICY_CONFIGURATION + value: tekton-ecosystem-tenant/tekton-ecosystem-tenant-containers + - name: TIMEOUT + value: "15m0s" + - name: SINGLE_COMPONENT + value: "true" + resolverRef: + params: + - name: url + value: "https://github.com/konflux-ci/build-definitions" + - name: revision + value: main + - name: pathInRepo + value: pipelines/enterprise-contract.yaml + resolver: git diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/role.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/role.yaml new file mode 100644 index 00000000..5b247b4e --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/role.yaml @@ -0,0 +1,14 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: RoleBinding +metadata: + name: release-plan-rolebinding-openshift-pipelines-core +subjects: + - kind: ServiceAccount + name: release-registry-openshift-pipelines-core + apiGroup: "" +roleRef: + kind: ClusterRole + name: konflux-releaser-bot-actions + apiGroup: rbac.authorization.k8s.io \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/service-account.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/service-account.yaml new file mode 100644 index 00000000..f09221f1 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/service-account.yaml @@ -0,0 +1,10 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: v1 +imagePullSecrets: + - name: release-registry-openshift-pipelines-quay +kind: ServiceAccount +metadata: + name: release-registry-openshift-pipelines-core +secrets: + - name: release-registry-openshift-pipelines-quay \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-index-4.16/1-22/application.yaml b/.konflux/openshift-pipelines/openshift-pipelines-index-4.16/1-22/application.yaml new file mode 100644 index 00000000..6b6244ec --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-index-4.16/1-22/application.yaml @@ -0,0 +1,8 @@ +# Generated for Konflux Application openshift-pipelines-index-4.16 by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Application +metadata: + name: openshift-pipelines-index-4-16-1-22 +spec: + displayName: openshift-pipelines-index-4-16-1-22 diff --git a/.konflux/openshift-pipelines/openshift-pipelines-index-4.16/1-22/operator/component-index-4.16-1.22.yaml b/.konflux/openshift-pipelines/openshift-pipelines-index-4.16/1-22/operator/component-index-4.16-1.22.yaml new file mode 100644 index 00000000..ddbd7c0e --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-index-4.16/1-22/operator/component-index-4.16-1.22.yaml @@ -0,0 +1,18 @@ +# Generated for Konflux Application openshift-pipelines-index-4.16 by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Component +metadata: + annotations: + build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' + name: operator-1-22-index-4-16 +spec: + componentName: index-4-16 + application: openshift-pipelines-index-4-16-1-22 + build-nudges-ref: + - + source: + git: + url: https://github.com/openshift-pipelines/operator.git + dockerfileUrl: .konflux/dockerfiles/index-4.16.Dockerfile + revision: release-v1.22.x diff --git a/.konflux/openshift-pipelines/openshift-pipelines-index-4.16/1-22/operator/image-index-4.16-1.22.yaml b/.konflux/openshift-pipelines/openshift-pipelines-index-4.16/1-22/operator/image-index-4.16-1.22.yaml new file mode 100644 index 00000000..71d42f60 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-index-4.16/1-22/operator/image-index-4.16-1.22.yaml @@ -0,0 +1,22 @@ +# Generated for Konflux Application openshift-pipelines-index-4.16 by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ImageRepository +metadata: + name: operator-1-22-index-4-16 + annotations: + image-controller.appstudio.redhat.com/update-component-image: "true" + image-controller.appstudio.redhat.com/skip-repository-deletion: "true" + labels: + appstudio.redhat.com/component: operator-1-22-index-4-16 + appstudio.redhat.com/application: openshift-pipelines-index-4-16-1-22 +spec: + image: + name: operator/pipelines-index-4.16 + visibility: public + notifications: + - config: + url: https://bombino.api.redhat.com/v1/sbom/quay/push + event: repo_push + method: webhook + title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-index-4.16/1-22/release-plan.yaml b/.konflux/openshift-pipelines/openshift-pipelines-index-4.16/1-22/release-plan.yaml new file mode 100644 index 00000000..bf2f56e1 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-index-4.16/1-22/release-plan.yaml @@ -0,0 +1,28 @@ +# Generated for Konflux Application openshift-pipelines-index-4.16 by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ReleasePlan +metadata: + labels: + release.appstudio.openshift.io/auto-release: "true" + release.appstudio.openshift.io/standing-attribution: 'true' + name: openshift-pipelines-index-4-16-1-22-rp +spec: + application: openshift-pipelines-index-4-16-1-22 + tenantPipeline: + serviceAccountName: release-registry-openshift-pipelines-index-4-16 + pipelineRef: + resolver: git + params: + - name: url + value: https://github.com/openshift-pipelines/hack.git + - name: revision + # value: release-v1.22.x + value: main + - name: pathInRepo + value: pipelines/release-pipeline.yaml + params: + - name: release_version + value: "v1.22.0" + - name: release_to_github + value: "false" diff --git a/.konflux/openshift-pipelines/openshift-pipelines-index-4.16/1-22/tests.yaml b/.konflux/openshift-pipelines/openshift-pipelines-index-4.16/1-22/tests.yaml new file mode 100644 index 00000000..6a8fc859 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-index-4.16/1-22/tests.yaml @@ -0,0 +1,27 @@ +# Generated for Konflux Application openshift-pipelines-index-4.16 by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1beta2 +kind: IntegrationTestScenario +metadata: + name: openshift-pipelines-index-4-16-1-22-enterprise-contract +spec: + application: openshift-pipelines-index-4-16-1-22 + contexts: + - description: execute the integration test for a component + name: component + params: + - name: POLICY_CONFIGURATION + value: tekton-ecosystem-tenant/tekton-ecosystem-tenant-indexes + - name: TIMEOUT + value: "15m0s" + - name: SINGLE_COMPONENT + value: "true" + resolverRef: + params: + - name: url + value: "https://github.com/konflux-ci/build-definitions" + - name: revision + value: main + - name: pathInRepo + value: pipelines/enterprise-contract.yaml + resolver: git diff --git a/.konflux/openshift-pipelines/openshift-pipelines-index-4.16/role.yaml b/.konflux/openshift-pipelines/openshift-pipelines-index-4.16/role.yaml new file mode 100644 index 00000000..5471e5ed --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-index-4.16/role.yaml @@ -0,0 +1,14 @@ +# Generated for Konflux Application openshift-pipelines-index-4.16 by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: RoleBinding +metadata: + name: release-plan-rolebinding-openshift-pipelines-index-4-16 +subjects: + - kind: ServiceAccount + name: release-registry-openshift-pipelines-index-4-16 + apiGroup: "" +roleRef: + kind: ClusterRole + name: konflux-releaser-bot-actions + apiGroup: rbac.authorization.k8s.io \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-index-4.16/service-account.yaml b/.konflux/openshift-pipelines/openshift-pipelines-index-4.16/service-account.yaml new file mode 100644 index 00000000..5c4436f8 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-index-4.16/service-account.yaml @@ -0,0 +1,10 @@ +# Generated for Konflux Application openshift-pipelines-index-4.16 by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: v1 +imagePullSecrets: + - name: release-registry-openshift-pipelines-quay +kind: ServiceAccount +metadata: + name: release-registry-openshift-pipelines-index-4-16 +secrets: + - name: release-registry-openshift-pipelines-quay \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-index-4.17/1-22/application.yaml b/.konflux/openshift-pipelines/openshift-pipelines-index-4.17/1-22/application.yaml new file mode 100644 index 00000000..e72a47ca --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-index-4.17/1-22/application.yaml @@ -0,0 +1,8 @@ +# Generated for Konflux Application openshift-pipelines-index-4.17 by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Application +metadata: + name: openshift-pipelines-index-4-17-1-22 +spec: + displayName: openshift-pipelines-index-4-17-1-22 diff --git a/.konflux/openshift-pipelines/openshift-pipelines-index-4.17/1-22/operator/component-index-4.17-1.22.yaml b/.konflux/openshift-pipelines/openshift-pipelines-index-4.17/1-22/operator/component-index-4.17-1.22.yaml new file mode 100644 index 00000000..887363b4 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-index-4.17/1-22/operator/component-index-4.17-1.22.yaml @@ -0,0 +1,18 @@ +# Generated for Konflux Application openshift-pipelines-index-4.17 by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Component +metadata: + annotations: + build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' + name: operator-1-22-index-4-17 +spec: + componentName: index-4-17 + application: openshift-pipelines-index-4-17-1-22 + build-nudges-ref: + - + source: + git: + url: https://github.com/openshift-pipelines/operator.git + dockerfileUrl: .konflux/dockerfiles/index-4.17.Dockerfile + revision: release-v1.22.x diff --git a/.konflux/openshift-pipelines/openshift-pipelines-index-4.17/1-22/operator/image-index-4.17-1.22.yaml b/.konflux/openshift-pipelines/openshift-pipelines-index-4.17/1-22/operator/image-index-4.17-1.22.yaml new file mode 100644 index 00000000..9cd7e7fc --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-index-4.17/1-22/operator/image-index-4.17-1.22.yaml @@ -0,0 +1,22 @@ +# Generated for Konflux Application openshift-pipelines-index-4.17 by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ImageRepository +metadata: + name: operator-1-22-index-4-17 + annotations: + image-controller.appstudio.redhat.com/update-component-image: "true" + image-controller.appstudio.redhat.com/skip-repository-deletion: "true" + labels: + appstudio.redhat.com/component: operator-1-22-index-4-17 + appstudio.redhat.com/application: openshift-pipelines-index-4-17-1-22 +spec: + image: + name: operator/pipelines-index-4.17 + visibility: public + notifications: + - config: + url: https://bombino.api.redhat.com/v1/sbom/quay/push + event: repo_push + method: webhook + title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-index-4.17/1-22/release-plan.yaml b/.konflux/openshift-pipelines/openshift-pipelines-index-4.17/1-22/release-plan.yaml new file mode 100644 index 00000000..9a09b7a1 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-index-4.17/1-22/release-plan.yaml @@ -0,0 +1,28 @@ +# Generated for Konflux Application openshift-pipelines-index-4.17 by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ReleasePlan +metadata: + labels: + release.appstudio.openshift.io/auto-release: "true" + release.appstudio.openshift.io/standing-attribution: 'true' + name: openshift-pipelines-index-4-17-1-22-rp +spec: + application: openshift-pipelines-index-4-17-1-22 + tenantPipeline: + serviceAccountName: release-registry-openshift-pipelines-index-4-17 + pipelineRef: + resolver: git + params: + - name: url + value: https://github.com/openshift-pipelines/hack.git + - name: revision + # value: release-v1.22.x + value: main + - name: pathInRepo + value: pipelines/release-pipeline.yaml + params: + - name: release_version + value: "v1.22.0" + - name: release_to_github + value: "false" diff --git a/.konflux/openshift-pipelines/openshift-pipelines-index-4.17/1-22/tests.yaml b/.konflux/openshift-pipelines/openshift-pipelines-index-4.17/1-22/tests.yaml new file mode 100644 index 00000000..e19158f9 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-index-4.17/1-22/tests.yaml @@ -0,0 +1,27 @@ +# Generated for Konflux Application openshift-pipelines-index-4.17 by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1beta2 +kind: IntegrationTestScenario +metadata: + name: openshift-pipelines-index-4-17-1-22-enterprise-contract +spec: + application: openshift-pipelines-index-4-17-1-22 + contexts: + - description: execute the integration test for a component + name: component + params: + - name: POLICY_CONFIGURATION + value: tekton-ecosystem-tenant/tekton-ecosystem-tenant-indexes + - name: TIMEOUT + value: "15m0s" + - name: SINGLE_COMPONENT + value: "true" + resolverRef: + params: + - name: url + value: "https://github.com/konflux-ci/build-definitions" + - name: revision + value: main + - name: pathInRepo + value: pipelines/enterprise-contract.yaml + resolver: git diff --git a/.konflux/openshift-pipelines/openshift-pipelines-index-4.17/role.yaml b/.konflux/openshift-pipelines/openshift-pipelines-index-4.17/role.yaml new file mode 100644 index 00000000..c39bf491 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-index-4.17/role.yaml @@ -0,0 +1,14 @@ +# Generated for Konflux Application openshift-pipelines-index-4.17 by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: RoleBinding +metadata: + name: release-plan-rolebinding-openshift-pipelines-index-4-17 +subjects: + - kind: ServiceAccount + name: release-registry-openshift-pipelines-index-4-17 + apiGroup: "" +roleRef: + kind: ClusterRole + name: konflux-releaser-bot-actions + apiGroup: rbac.authorization.k8s.io \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-index-4.17/service-account.yaml b/.konflux/openshift-pipelines/openshift-pipelines-index-4.17/service-account.yaml new file mode 100644 index 00000000..72813171 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-index-4.17/service-account.yaml @@ -0,0 +1,10 @@ +# Generated for Konflux Application openshift-pipelines-index-4.17 by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: v1 +imagePullSecrets: + - name: release-registry-openshift-pipelines-quay +kind: ServiceAccount +metadata: + name: release-registry-openshift-pipelines-index-4-17 +secrets: + - name: release-registry-openshift-pipelines-quay \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-index-4.18/1-22/application.yaml b/.konflux/openshift-pipelines/openshift-pipelines-index-4.18/1-22/application.yaml new file mode 100644 index 00000000..62d46c21 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-index-4.18/1-22/application.yaml @@ -0,0 +1,8 @@ +# Generated for Konflux Application openshift-pipelines-index-4.18 by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Application +metadata: + name: openshift-pipelines-index-4-18-1-22 +spec: + displayName: openshift-pipelines-index-4-18-1-22 diff --git a/.konflux/openshift-pipelines/openshift-pipelines-index-4.18/1-22/operator/component-index-4.18-1.22.yaml b/.konflux/openshift-pipelines/openshift-pipelines-index-4.18/1-22/operator/component-index-4.18-1.22.yaml new file mode 100644 index 00000000..ef802333 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-index-4.18/1-22/operator/component-index-4.18-1.22.yaml @@ -0,0 +1,18 @@ +# Generated for Konflux Application openshift-pipelines-index-4.18 by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Component +metadata: + annotations: + build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' + name: operator-1-22-index-4-18 +spec: + componentName: index-4-18 + application: openshift-pipelines-index-4-18-1-22 + build-nudges-ref: + - + source: + git: + url: https://github.com/openshift-pipelines/operator.git + dockerfileUrl: .konflux/dockerfiles/index-4.18.Dockerfile + revision: release-v1.22.x diff --git a/.konflux/openshift-pipelines/openshift-pipelines-index-4.18/1-22/operator/image-index-4.18-1.22.yaml b/.konflux/openshift-pipelines/openshift-pipelines-index-4.18/1-22/operator/image-index-4.18-1.22.yaml new file mode 100644 index 00000000..74401f82 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-index-4.18/1-22/operator/image-index-4.18-1.22.yaml @@ -0,0 +1,22 @@ +# Generated for Konflux Application openshift-pipelines-index-4.18 by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ImageRepository +metadata: + name: operator-1-22-index-4-18 + annotations: + image-controller.appstudio.redhat.com/update-component-image: "true" + image-controller.appstudio.redhat.com/skip-repository-deletion: "true" + labels: + appstudio.redhat.com/component: operator-1-22-index-4-18 + appstudio.redhat.com/application: openshift-pipelines-index-4-18-1-22 +spec: + image: + name: operator/pipelines-index-4.18 + visibility: public + notifications: + - config: + url: https://bombino.api.redhat.com/v1/sbom/quay/push + event: repo_push + method: webhook + title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-index-4.18/1-22/release-plan.yaml b/.konflux/openshift-pipelines/openshift-pipelines-index-4.18/1-22/release-plan.yaml new file mode 100644 index 00000000..29659261 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-index-4.18/1-22/release-plan.yaml @@ -0,0 +1,28 @@ +# Generated for Konflux Application openshift-pipelines-index-4.18 by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ReleasePlan +metadata: + labels: + release.appstudio.openshift.io/auto-release: "true" + release.appstudio.openshift.io/standing-attribution: 'true' + name: openshift-pipelines-index-4-18-1-22-rp +spec: + application: openshift-pipelines-index-4-18-1-22 + tenantPipeline: + serviceAccountName: release-registry-openshift-pipelines-index-4-18 + pipelineRef: + resolver: git + params: + - name: url + value: https://github.com/openshift-pipelines/hack.git + - name: revision + # value: release-v1.22.x + value: main + - name: pathInRepo + value: pipelines/release-pipeline.yaml + params: + - name: release_version + value: "v1.22.0" + - name: release_to_github + value: "false" diff --git a/.konflux/openshift-pipelines/openshift-pipelines-index-4.18/1-22/tests.yaml b/.konflux/openshift-pipelines/openshift-pipelines-index-4.18/1-22/tests.yaml new file mode 100644 index 00000000..70d3f477 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-index-4.18/1-22/tests.yaml @@ -0,0 +1,27 @@ +# Generated for Konflux Application openshift-pipelines-index-4.18 by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1beta2 +kind: IntegrationTestScenario +metadata: + name: openshift-pipelines-index-4-18-1-22-enterprise-contract +spec: + application: openshift-pipelines-index-4-18-1-22 + contexts: + - description: execute the integration test for a component + name: component + params: + - name: POLICY_CONFIGURATION + value: tekton-ecosystem-tenant/tekton-ecosystem-tenant-indexes + - name: TIMEOUT + value: "15m0s" + - name: SINGLE_COMPONENT + value: "true" + resolverRef: + params: + - name: url + value: "https://github.com/konflux-ci/build-definitions" + - name: revision + value: main + - name: pathInRepo + value: pipelines/enterprise-contract.yaml + resolver: git diff --git a/.konflux/openshift-pipelines/openshift-pipelines-index-4.18/role.yaml b/.konflux/openshift-pipelines/openshift-pipelines-index-4.18/role.yaml new file mode 100644 index 00000000..553af545 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-index-4.18/role.yaml @@ -0,0 +1,14 @@ +# Generated for Konflux Application openshift-pipelines-index-4.18 by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: RoleBinding +metadata: + name: release-plan-rolebinding-openshift-pipelines-index-4-18 +subjects: + - kind: ServiceAccount + name: release-registry-openshift-pipelines-index-4-18 + apiGroup: "" +roleRef: + kind: ClusterRole + name: konflux-releaser-bot-actions + apiGroup: rbac.authorization.k8s.io \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-index-4.18/service-account.yaml b/.konflux/openshift-pipelines/openshift-pipelines-index-4.18/service-account.yaml new file mode 100644 index 00000000..92003aaf --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-index-4.18/service-account.yaml @@ -0,0 +1,10 @@ +# Generated for Konflux Application openshift-pipelines-index-4.18 by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: v1 +imagePullSecrets: + - name: release-registry-openshift-pipelines-quay +kind: ServiceAccount +metadata: + name: release-registry-openshift-pipelines-index-4-18 +secrets: + - name: release-registry-openshift-pipelines-quay \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-index-4.19/1-22/application.yaml b/.konflux/openshift-pipelines/openshift-pipelines-index-4.19/1-22/application.yaml new file mode 100644 index 00000000..eb4c5bae --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-index-4.19/1-22/application.yaml @@ -0,0 +1,8 @@ +# Generated for Konflux Application openshift-pipelines-index-4.19 by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Application +metadata: + name: openshift-pipelines-index-4-19-1-22 +spec: + displayName: openshift-pipelines-index-4-19-1-22 diff --git a/.konflux/openshift-pipelines/openshift-pipelines-index-4.19/1-22/operator/component-index-4.19-1.22.yaml b/.konflux/openshift-pipelines/openshift-pipelines-index-4.19/1-22/operator/component-index-4.19-1.22.yaml new file mode 100644 index 00000000..2442da19 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-index-4.19/1-22/operator/component-index-4.19-1.22.yaml @@ -0,0 +1,18 @@ +# Generated for Konflux Application openshift-pipelines-index-4.19 by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Component +metadata: + annotations: + build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' + name: operator-1-22-index-4-19 +spec: + componentName: index-4-19 + application: openshift-pipelines-index-4-19-1-22 + build-nudges-ref: + - + source: + git: + url: https://github.com/openshift-pipelines/operator.git + dockerfileUrl: .konflux/dockerfiles/index-4.19.Dockerfile + revision: release-v1.22.x diff --git a/.konflux/openshift-pipelines/openshift-pipelines-index-4.19/1-22/operator/image-index-4.19-1.22.yaml b/.konflux/openshift-pipelines/openshift-pipelines-index-4.19/1-22/operator/image-index-4.19-1.22.yaml new file mode 100644 index 00000000..4281357b --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-index-4.19/1-22/operator/image-index-4.19-1.22.yaml @@ -0,0 +1,22 @@ +# Generated for Konflux Application openshift-pipelines-index-4.19 by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ImageRepository +metadata: + name: operator-1-22-index-4-19 + annotations: + image-controller.appstudio.redhat.com/update-component-image: "true" + image-controller.appstudio.redhat.com/skip-repository-deletion: "true" + labels: + appstudio.redhat.com/component: operator-1-22-index-4-19 + appstudio.redhat.com/application: openshift-pipelines-index-4-19-1-22 +spec: + image: + name: operator/pipelines-index-4.19 + visibility: public + notifications: + - config: + url: https://bombino.api.redhat.com/v1/sbom/quay/push + event: repo_push + method: webhook + title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-index-4.19/1-22/release-plan.yaml b/.konflux/openshift-pipelines/openshift-pipelines-index-4.19/1-22/release-plan.yaml new file mode 100644 index 00000000..76d1fc31 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-index-4.19/1-22/release-plan.yaml @@ -0,0 +1,28 @@ +# Generated for Konflux Application openshift-pipelines-index-4.19 by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ReleasePlan +metadata: + labels: + release.appstudio.openshift.io/auto-release: "true" + release.appstudio.openshift.io/standing-attribution: 'true' + name: openshift-pipelines-index-4-19-1-22-rp +spec: + application: openshift-pipelines-index-4-19-1-22 + tenantPipeline: + serviceAccountName: release-registry-openshift-pipelines-index-4-19 + pipelineRef: + resolver: git + params: + - name: url + value: https://github.com/openshift-pipelines/hack.git + - name: revision + # value: release-v1.22.x + value: main + - name: pathInRepo + value: pipelines/release-pipeline.yaml + params: + - name: release_version + value: "v1.22.0" + - name: release_to_github + value: "false" diff --git a/.konflux/openshift-pipelines/openshift-pipelines-index-4.19/1-22/tests.yaml b/.konflux/openshift-pipelines/openshift-pipelines-index-4.19/1-22/tests.yaml new file mode 100644 index 00000000..8b54f238 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-index-4.19/1-22/tests.yaml @@ -0,0 +1,27 @@ +# Generated for Konflux Application openshift-pipelines-index-4.19 by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1beta2 +kind: IntegrationTestScenario +metadata: + name: openshift-pipelines-index-4-19-1-22-enterprise-contract +spec: + application: openshift-pipelines-index-4-19-1-22 + contexts: + - description: execute the integration test for a component + name: component + params: + - name: POLICY_CONFIGURATION + value: tekton-ecosystem-tenant/tekton-ecosystem-tenant-indexes + - name: TIMEOUT + value: "15m0s" + - name: SINGLE_COMPONENT + value: "true" + resolverRef: + params: + - name: url + value: "https://github.com/konflux-ci/build-definitions" + - name: revision + value: main + - name: pathInRepo + value: pipelines/enterprise-contract.yaml + resolver: git diff --git a/.konflux/openshift-pipelines/openshift-pipelines-index-4.19/role.yaml b/.konflux/openshift-pipelines/openshift-pipelines-index-4.19/role.yaml new file mode 100644 index 00000000..c6ef5c59 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-index-4.19/role.yaml @@ -0,0 +1,14 @@ +# Generated for Konflux Application openshift-pipelines-index-4.19 by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: RoleBinding +metadata: + name: release-plan-rolebinding-openshift-pipelines-index-4-19 +subjects: + - kind: ServiceAccount + name: release-registry-openshift-pipelines-index-4-19 + apiGroup: "" +roleRef: + kind: ClusterRole + name: konflux-releaser-bot-actions + apiGroup: rbac.authorization.k8s.io \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-index-4.19/service-account.yaml b/.konflux/openshift-pipelines/openshift-pipelines-index-4.19/service-account.yaml new file mode 100644 index 00000000..f242aed9 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-index-4.19/service-account.yaml @@ -0,0 +1,10 @@ +# Generated for Konflux Application openshift-pipelines-index-4.19 by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: v1 +imagePullSecrets: + - name: release-registry-openshift-pipelines-quay +kind: ServiceAccount +metadata: + name: release-registry-openshift-pipelines-index-4-19 +secrets: + - name: release-registry-openshift-pipelines-quay \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-index-4.20/1-22/application.yaml b/.konflux/openshift-pipelines/openshift-pipelines-index-4.20/1-22/application.yaml new file mode 100644 index 00000000..b2f30223 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-index-4.20/1-22/application.yaml @@ -0,0 +1,8 @@ +# Generated for Konflux Application openshift-pipelines-index-4.20 by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Application +metadata: + name: openshift-pipelines-index-4-20-1-22 +spec: + displayName: openshift-pipelines-index-4-20-1-22 diff --git a/.konflux/openshift-pipelines/openshift-pipelines-index-4.20/1-22/operator/component-index-4.20-1.22.yaml b/.konflux/openshift-pipelines/openshift-pipelines-index-4.20/1-22/operator/component-index-4.20-1.22.yaml new file mode 100644 index 00000000..6f4c85e5 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-index-4.20/1-22/operator/component-index-4.20-1.22.yaml @@ -0,0 +1,18 @@ +# Generated for Konflux Application openshift-pipelines-index-4.20 by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Component +metadata: + annotations: + build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' + name: operator-1-22-index-4-20 +spec: + componentName: index-4-20 + application: openshift-pipelines-index-4-20-1-22 + build-nudges-ref: + - + source: + git: + url: https://github.com/openshift-pipelines/operator.git + dockerfileUrl: .konflux/dockerfiles/index-4.20.Dockerfile + revision: release-v1.22.x diff --git a/.konflux/openshift-pipelines/openshift-pipelines-index-4.20/1-22/operator/image-index-4.20-1.22.yaml b/.konflux/openshift-pipelines/openshift-pipelines-index-4.20/1-22/operator/image-index-4.20-1.22.yaml new file mode 100644 index 00000000..ed612d51 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-index-4.20/1-22/operator/image-index-4.20-1.22.yaml @@ -0,0 +1,22 @@ +# Generated for Konflux Application openshift-pipelines-index-4.20 by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ImageRepository +metadata: + name: operator-1-22-index-4-20 + annotations: + image-controller.appstudio.redhat.com/update-component-image: "true" + image-controller.appstudio.redhat.com/skip-repository-deletion: "true" + labels: + appstudio.redhat.com/component: operator-1-22-index-4-20 + appstudio.redhat.com/application: openshift-pipelines-index-4-20-1-22 +spec: + image: + name: operator/pipelines-index-4.20 + visibility: public + notifications: + - config: + url: https://bombino.api.redhat.com/v1/sbom/quay/push + event: repo_push + method: webhook + title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-index-4.20/1-22/release-plan.yaml b/.konflux/openshift-pipelines/openshift-pipelines-index-4.20/1-22/release-plan.yaml new file mode 100644 index 00000000..274e5893 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-index-4.20/1-22/release-plan.yaml @@ -0,0 +1,28 @@ +# Generated for Konflux Application openshift-pipelines-index-4.20 by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ReleasePlan +metadata: + labels: + release.appstudio.openshift.io/auto-release: "true" + release.appstudio.openshift.io/standing-attribution: 'true' + name: openshift-pipelines-index-4-20-1-22-rp +spec: + application: openshift-pipelines-index-4-20-1-22 + tenantPipeline: + serviceAccountName: release-registry-openshift-pipelines-index-4-20 + pipelineRef: + resolver: git + params: + - name: url + value: https://github.com/openshift-pipelines/hack.git + - name: revision + # value: release-v1.22.x + value: main + - name: pathInRepo + value: pipelines/release-pipeline.yaml + params: + - name: release_version + value: "v1.22.0" + - name: release_to_github + value: "false" diff --git a/.konflux/openshift-pipelines/openshift-pipelines-index-4.20/1-22/tests.yaml b/.konflux/openshift-pipelines/openshift-pipelines-index-4.20/1-22/tests.yaml new file mode 100644 index 00000000..b5cbd16f --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-index-4.20/1-22/tests.yaml @@ -0,0 +1,27 @@ +# Generated for Konflux Application openshift-pipelines-index-4.20 by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1beta2 +kind: IntegrationTestScenario +metadata: + name: openshift-pipelines-index-4-20-1-22-enterprise-contract +spec: + application: openshift-pipelines-index-4-20-1-22 + contexts: + - description: execute the integration test for a component + name: component + params: + - name: POLICY_CONFIGURATION + value: tekton-ecosystem-tenant/tekton-ecosystem-tenant-indexes + - name: TIMEOUT + value: "15m0s" + - name: SINGLE_COMPONENT + value: "true" + resolverRef: + params: + - name: url + value: "https://github.com/konflux-ci/build-definitions" + - name: revision + value: main + - name: pathInRepo + value: pipelines/enterprise-contract.yaml + resolver: git diff --git a/.konflux/openshift-pipelines/openshift-pipelines-index-4.20/role.yaml b/.konflux/openshift-pipelines/openshift-pipelines-index-4.20/role.yaml new file mode 100644 index 00000000..a718fea4 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-index-4.20/role.yaml @@ -0,0 +1,14 @@ +# Generated for Konflux Application openshift-pipelines-index-4.20 by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: RoleBinding +metadata: + name: release-plan-rolebinding-openshift-pipelines-index-4-20 +subjects: + - kind: ServiceAccount + name: release-registry-openshift-pipelines-index-4-20 + apiGroup: "" +roleRef: + kind: ClusterRole + name: konflux-releaser-bot-actions + apiGroup: rbac.authorization.k8s.io \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-index-4.20/service-account.yaml b/.konflux/openshift-pipelines/openshift-pipelines-index-4.20/service-account.yaml new file mode 100644 index 00000000..c5cf7ddc --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-index-4.20/service-account.yaml @@ -0,0 +1,10 @@ +# Generated for Konflux Application openshift-pipelines-index-4.20 by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: v1 +imagePullSecrets: + - name: release-registry-openshift-pipelines-quay +kind: ServiceAccount +metadata: + name: release-registry-openshift-pipelines-index-4-20 +secrets: + - name: release-registry-openshift-pipelines-quay \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-operator/1-22/application.yaml b/.konflux/openshift-pipelines/openshift-pipelines-operator/1-22/application.yaml new file mode 100644 index 00000000..aa46d079 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-operator/1-22/application.yaml @@ -0,0 +1,8 @@ +# Generated for Konflux Application openshift-pipelines-operator by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Application +metadata: + name: openshift-pipelines-operator-1-22 +spec: + displayName: openshift-pipelines-operator-1-22 diff --git a/.konflux/openshift-pipelines/openshift-pipelines-operator/1-22/operator/component-bundle-1.22.yaml b/.konflux/openshift-pipelines/openshift-pipelines-operator/1-22/operator/component-bundle-1.22.yaml new file mode 100644 index 00000000..b068ab68 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-operator/1-22/operator/component-bundle-1.22.yaml @@ -0,0 +1,18 @@ +# Generated for Konflux Application openshift-pipelines-operator by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Component +metadata: + annotations: + build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' + name: operator-1-22-bundle +spec: + componentName: bundle + application: openshift-pipelines-operator-1-22 + build-nudges-ref: + - operator-1-22-index-4-20 + source: + git: + url: https://github.com/openshift-pipelines/operator.git + dockerfileUrl: .konflux/dockerfiles/bundle.Dockerfile + revision: release-v1.22.x diff --git a/.konflux/openshift-pipelines/openshift-pipelines-operator/1-22/operator/component-operator-1.22.yaml b/.konflux/openshift-pipelines/openshift-pipelines-operator/1-22/operator/component-operator-1.22.yaml new file mode 100644 index 00000000..a296a800 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-operator/1-22/operator/component-operator-1.22.yaml @@ -0,0 +1,18 @@ +# Generated for Konflux Application openshift-pipelines-operator by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Component +metadata: + annotations: + build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' + name: operator-1-22-operator +spec: + componentName: operator + application: openshift-pipelines-operator-1-22 + build-nudges-ref: + - operator-1-22-bundle + source: + git: + url: https://github.com/openshift-pipelines/operator.git + dockerfileUrl: .konflux/dockerfiles/operator.Dockerfile + revision: release-v1.22.x diff --git a/.konflux/openshift-pipelines/openshift-pipelines-operator/1-22/operator/component-proxy-1.22.yaml b/.konflux/openshift-pipelines/openshift-pipelines-operator/1-22/operator/component-proxy-1.22.yaml new file mode 100644 index 00000000..75eadbbb --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-operator/1-22/operator/component-proxy-1.22.yaml @@ -0,0 +1,18 @@ +# Generated for Konflux Application openshift-pipelines-operator by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Component +metadata: + annotations: + build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' + name: operator-1-22-proxy +spec: + componentName: proxy + application: openshift-pipelines-operator-1-22 + build-nudges-ref: + - operator-1-22-bundle + source: + git: + url: https://github.com/openshift-pipelines/operator.git + dockerfileUrl: .konflux/dockerfiles/proxy.Dockerfile + revision: release-v1.22.x diff --git a/.konflux/openshift-pipelines/openshift-pipelines-operator/1-22/operator/component-webhook-1.22.yaml b/.konflux/openshift-pipelines/openshift-pipelines-operator/1-22/operator/component-webhook-1.22.yaml new file mode 100644 index 00000000..727fe75d --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-operator/1-22/operator/component-webhook-1.22.yaml @@ -0,0 +1,18 @@ +# Generated for Konflux Application openshift-pipelines-operator by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Component +metadata: + annotations: + build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' + name: operator-1-22-webhook +spec: + componentName: webhook + application: openshift-pipelines-operator-1-22 + build-nudges-ref: + - operator-1-22-bundle + source: + git: + url: https://github.com/openshift-pipelines/operator.git + dockerfileUrl: .konflux/dockerfiles/webhook.Dockerfile + revision: release-v1.22.x diff --git a/.konflux/openshift-pipelines/openshift-pipelines-operator/1-22/operator/image-bundle-1.22.yaml b/.konflux/openshift-pipelines/openshift-pipelines-operator/1-22/operator/image-bundle-1.22.yaml new file mode 100644 index 00000000..56769a89 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-operator/1-22/operator/image-bundle-1.22.yaml @@ -0,0 +1,22 @@ +# Generated for Konflux Application openshift-pipelines-operator by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ImageRepository +metadata: + name: operator-1-22-bundle + annotations: + image-controller.appstudio.redhat.com/update-component-image: "true" + image-controller.appstudio.redhat.com/skip-repository-deletion: "true" + labels: + appstudio.redhat.com/component: operator-1-22-bundle + appstudio.redhat.com/application: openshift-pipelines-operator-1-22 +spec: + image: + name: pipelines-operator-bundle + visibility: public + notifications: + - config: + url: https://bombino.api.redhat.com/v1/sbom/quay/push + event: repo_push + method: webhook + title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-operator/1-22/operator/image-operator-1.22.yaml b/.konflux/openshift-pipelines/openshift-pipelines-operator/1-22/operator/image-operator-1.22.yaml new file mode 100644 index 00000000..b35ec08a --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-operator/1-22/operator/image-operator-1.22.yaml @@ -0,0 +1,22 @@ +# Generated for Konflux Application openshift-pipelines-operator by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ImageRepository +metadata: + name: operator-1-22-operator + annotations: + image-controller.appstudio.redhat.com/update-component-image: "true" + image-controller.appstudio.redhat.com/skip-repository-deletion: "true" + labels: + appstudio.redhat.com/component: operator-1-22-operator + appstudio.redhat.com/application: openshift-pipelines-operator-1-22 +spec: + image: + name: pipelines-rhel9-operator + visibility: public + notifications: + - config: + url: https://bombino.api.redhat.com/v1/sbom/quay/push + event: repo_push + method: webhook + title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-operator/1-22/operator/image-proxy-1.22.yaml b/.konflux/openshift-pipelines/openshift-pipelines-operator/1-22/operator/image-proxy-1.22.yaml new file mode 100644 index 00000000..65acc314 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-operator/1-22/operator/image-proxy-1.22.yaml @@ -0,0 +1,22 @@ +# Generated for Konflux Application openshift-pipelines-operator by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ImageRepository +metadata: + name: operator-1-22-proxy + annotations: + image-controller.appstudio.redhat.com/update-component-image: "true" + image-controller.appstudio.redhat.com/skip-repository-deletion: "true" + labels: + appstudio.redhat.com/component: operator-1-22-proxy + appstudio.redhat.com/application: openshift-pipelines-operator-1-22 +spec: + image: + name: pipelines-operator-proxy-rhel9 + visibility: public + notifications: + - config: + url: https://bombino.api.redhat.com/v1/sbom/quay/push + event: repo_push + method: webhook + title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-operator/1-22/operator/image-webhook-1.22.yaml b/.konflux/openshift-pipelines/openshift-pipelines-operator/1-22/operator/image-webhook-1.22.yaml new file mode 100644 index 00000000..5d846679 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-operator/1-22/operator/image-webhook-1.22.yaml @@ -0,0 +1,22 @@ +# Generated for Konflux Application openshift-pipelines-operator by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ImageRepository +metadata: + name: operator-1-22-webhook + annotations: + image-controller.appstudio.redhat.com/update-component-image: "true" + image-controller.appstudio.redhat.com/skip-repository-deletion: "true" + labels: + appstudio.redhat.com/component: operator-1-22-webhook + appstudio.redhat.com/application: openshift-pipelines-operator-1-22 +spec: + image: + name: pipelines-operator-webhook-rhel9 + visibility: public + notifications: + - config: + url: https://bombino.api.redhat.com/v1/sbom/quay/push + event: repo_push + method: webhook + title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-operator/1-22/release-plan.yaml b/.konflux/openshift-pipelines/openshift-pipelines-operator/1-22/release-plan.yaml new file mode 100644 index 00000000..e4ac5ef5 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-operator/1-22/release-plan.yaml @@ -0,0 +1,28 @@ +# Generated for Konflux Application openshift-pipelines-operator by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ReleasePlan +metadata: + labels: + release.appstudio.openshift.io/auto-release: "true" + release.appstudio.openshift.io/standing-attribution: 'true' + name: openshift-pipelines-operator-1-22-rp +spec: + application: openshift-pipelines-operator-1-22 + tenantPipeline: + serviceAccountName: release-registry-openshift-pipelines-operator + pipelineRef: + resolver: git + params: + - name: url + value: https://github.com/openshift-pipelines/hack.git + - name: revision + # value: release-v1.22.x + value: main + - name: pathInRepo + value: pipelines/release-pipeline.yaml + params: + - name: release_version + value: "v1.22.0" + - name: release_to_github + value: "false" diff --git a/.konflux/openshift-pipelines/openshift-pipelines-operator/1-22/tests.yaml b/.konflux/openshift-pipelines/openshift-pipelines-operator/1-22/tests.yaml new file mode 100644 index 00000000..8350d1dc --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-operator/1-22/tests.yaml @@ -0,0 +1,27 @@ +# Generated for Konflux Application openshift-pipelines-operator by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1beta2 +kind: IntegrationTestScenario +metadata: + name: openshift-pipelines-operator-1-22-enterprise-contract +spec: + application: openshift-pipelines-operator-1-22 + contexts: + - description: execute the integration test for a component + name: component + params: + - name: POLICY_CONFIGURATION + value: tekton-ecosystem-tenant/tekton-ecosystem-tenant-containers + - name: TIMEOUT + value: "15m0s" + - name: SINGLE_COMPONENT + value: "true" + resolverRef: + params: + - name: url + value: "https://github.com/konflux-ci/build-definitions" + - name: revision + value: main + - name: pathInRepo + value: pipelines/enterprise-contract.yaml + resolver: git diff --git a/.konflux/openshift-pipelines/openshift-pipelines-operator/role.yaml b/.konflux/openshift-pipelines/openshift-pipelines-operator/role.yaml new file mode 100644 index 00000000..ba1c85b6 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-operator/role.yaml @@ -0,0 +1,14 @@ +# Generated for Konflux Application openshift-pipelines-operator by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: RoleBinding +metadata: + name: release-plan-rolebinding-openshift-pipelines-operator +subjects: + - kind: ServiceAccount + name: release-registry-openshift-pipelines-operator + apiGroup: "" +roleRef: + kind: ClusterRole + name: konflux-releaser-bot-actions + apiGroup: rbac.authorization.k8s.io \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-operator/service-account.yaml b/.konflux/openshift-pipelines/openshift-pipelines-operator/service-account.yaml new file mode 100644 index 00000000..cb461406 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-operator/service-account.yaml @@ -0,0 +1,10 @@ +# Generated for Konflux Application openshift-pipelines-operator by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: v1 +imagePullSecrets: + - name: release-registry-openshift-pipelines-quay +kind: ServiceAccount +metadata: + name: release-registry-openshift-pipelines-operator +secrets: + - name: release-registry-openshift-pipelines-quay \ No newline at end of file From 82c438f91ed9db2fc7d2e913814478966925b7c3 Mon Sep 17 00:00:00 2001 From: Pramod Bindal Date: Thu, 5 Feb 2026 15:39:47 +0530 Subject: [PATCH 13/18] update operator config --- .../multicluster/application.yaml | 8 ----- .../component-index-4.20-multicluster.yaml | 18 ---------- .../image-index-4.20-multicluster.yaml | 22 ------------ .../multicluster/release-plan.yaml | 28 --------------- .../multicluster/tests.yaml | 27 -------------- .../multicluster/application.yaml | 8 ----- .../component-bundle-multicluster.yaml | 18 ---------- .../component-operator-multicluster.yaml | 18 ---------- .../component-proxy-multicluster.yaml | 18 ---------- .../component-webhook-multicluster.yaml | 18 ---------- .../operator/image-bundle-multicluster.yaml | 22 ------------ .../operator/image-operator-multicluster.yaml | 22 ------------ .../operator/image-proxy-multicluster.yaml | 22 ------------ .../operator/image-webhook-multicluster.yaml | 22 ------------ .../multicluster/release-plan.yaml | 28 --------------- .../multicluster/tests.yaml | 27 -------------- config/downstream/applications/core.yaml | 4 +-- config/downstream/releases/multicluster.yaml | 36 ------------------- .../downstream/repos/tektoncd-operator.yaml | 7 ++-- internal/konflux/config_generator.go | 8 ++--- .../templates/konflux/release-tests.yaml | 6 ++-- 21 files changed, 10 insertions(+), 377 deletions(-) delete mode 100644 .konflux/openshift-pipelines-index-4.20/multicluster/application.yaml delete mode 100644 .konflux/openshift-pipelines-index-4.20/multicluster/operator/component-index-4.20-multicluster.yaml delete mode 100644 .konflux/openshift-pipelines-index-4.20/multicluster/operator/image-index-4.20-multicluster.yaml delete mode 100644 .konflux/openshift-pipelines-index-4.20/multicluster/release-plan.yaml delete mode 100644 .konflux/openshift-pipelines-index-4.20/multicluster/tests.yaml delete mode 100644 .konflux/openshift-pipelines-operator/multicluster/application.yaml delete mode 100644 .konflux/openshift-pipelines-operator/multicluster/operator/component-bundle-multicluster.yaml delete mode 100644 .konflux/openshift-pipelines-operator/multicluster/operator/component-operator-multicluster.yaml delete mode 100644 .konflux/openshift-pipelines-operator/multicluster/operator/component-proxy-multicluster.yaml delete mode 100644 .konflux/openshift-pipelines-operator/multicluster/operator/component-webhook-multicluster.yaml delete mode 100644 .konflux/openshift-pipelines-operator/multicluster/operator/image-bundle-multicluster.yaml delete mode 100644 .konflux/openshift-pipelines-operator/multicluster/operator/image-operator-multicluster.yaml delete mode 100644 .konflux/openshift-pipelines-operator/multicluster/operator/image-proxy-multicluster.yaml delete mode 100644 .konflux/openshift-pipelines-operator/multicluster/operator/image-webhook-multicluster.yaml delete mode 100644 .konflux/openshift-pipelines-operator/multicluster/release-plan.yaml delete mode 100644 .konflux/openshift-pipelines-operator/multicluster/tests.yaml delete mode 100644 config/downstream/releases/multicluster.yaml diff --git a/.konflux/openshift-pipelines-index-4.20/multicluster/application.yaml b/.konflux/openshift-pipelines-index-4.20/multicluster/application.yaml deleted file mode 100644 index 79e76d39..00000000 --- a/.konflux/openshift-pipelines-index-4.20/multicluster/application.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.20 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Application -metadata: - name: openshift-pipelines-index-4-20-multicluster -spec: - displayName: openshift-pipelines-index-4-20-multicluster diff --git a/.konflux/openshift-pipelines-index-4.20/multicluster/operator/component-index-4.20-multicluster.yaml b/.konflux/openshift-pipelines-index-4.20/multicluster/operator/component-index-4.20-multicluster.yaml deleted file mode 100644 index d34b6678..00000000 --- a/.konflux/openshift-pipelines-index-4.20/multicluster/operator/component-index-4.20-multicluster.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.20 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: operator-multicluster-index-4-20 -spec: - componentName: index-4-20 - application: openshift-pipelines-index-4-20-multicluster - build-nudges-ref: - - - source: - git: - url: https://github.com/openshift-pipelines/operator.git - dockerfileUrl: .konflux/dockerfiles/index-4.20.Dockerfile - revision: multicluster diff --git a/.konflux/openshift-pipelines-index-4.20/multicluster/operator/image-index-4.20-multicluster.yaml b/.konflux/openshift-pipelines-index-4.20/multicluster/operator/image-index-4.20-multicluster.yaml deleted file mode 100644 index 4803cf00..00000000 --- a/.konflux/openshift-pipelines-index-4.20/multicluster/operator/image-index-4.20-multicluster.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.20 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: operator-multicluster-index-4-20 - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: operator-multicluster-index-4-20 - appstudio.redhat.com/application: openshift-pipelines-index-4-20-multicluster -spec: - image: - name: operator/pipelines-index-4.20 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-index-4.20/multicluster/release-plan.yaml b/.konflux/openshift-pipelines-index-4.20/multicluster/release-plan.yaml deleted file mode 100644 index 4a7c1e28..00000000 --- a/.konflux/openshift-pipelines-index-4.20/multicluster/release-plan.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.20 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ReleasePlan -metadata: - labels: - release.appstudio.openshift.io/auto-release: "true" - release.appstudio.openshift.io/standing-attribution: 'true' - name: openshift-pipelines-index-4-20-multicluster-rp -spec: - application: openshift-pipelines-index-4-20-multicluster - tenantPipeline: - serviceAccountName: release-registry-openshift-pipelines-index-4-20 - pipelineRef: - resolver: git - params: - - name: url - value: https://github.com/openshift-pipelines/hack.git - - name: revision - # value: release-vmulticluster.x - value: main - - name: pathInRepo - value: pipelines/release-pipeline.yaml - params: - - name: release_version - value: "multicluster" - - name: release_to_github - value: "false" diff --git a/.konflux/openshift-pipelines-index-4.20/multicluster/tests.yaml b/.konflux/openshift-pipelines-index-4.20/multicluster/tests.yaml deleted file mode 100644 index 6d5108f1..00000000 --- a/.konflux/openshift-pipelines-index-4.20/multicluster/tests.yaml +++ /dev/null @@ -1,27 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-index-4.20 by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1beta2 -kind: IntegrationTestScenario -metadata: - name: openshift-pipelines-index-4-20-multicluster-enterprise-contract -spec: - application: openshift-pipelines-index-4-20-multicluster - contexts: - - description: execute the integration test for a component - name: component - params: - - name: POLICY_CONFIGURATION - value: tekton-ecosystem-tenant/tekton-ecosystem-tenant-indexes - - name: TIMEOUT - value: "15m0s" - - name: SINGLE_COMPONENT - value: "true" - resolverRef: - params: - - name: url - value: "https://github.com/konflux-ci/build-definitions" - - name: revision - value: main - - name: pathInRepo - value: pipelines/enterprise-contract.yaml - resolver: git diff --git a/.konflux/openshift-pipelines-operator/multicluster/application.yaml b/.konflux/openshift-pipelines-operator/multicluster/application.yaml deleted file mode 100644 index e37b1d5c..00000000 --- a/.konflux/openshift-pipelines-operator/multicluster/application.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-operator by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Application -metadata: - name: openshift-pipelines-operator-multicluster -spec: - displayName: openshift-pipelines-operator-multicluster diff --git a/.konflux/openshift-pipelines-operator/multicluster/operator/component-bundle-multicluster.yaml b/.konflux/openshift-pipelines-operator/multicluster/operator/component-bundle-multicluster.yaml deleted file mode 100644 index ce124ee5..00000000 --- a/.konflux/openshift-pipelines-operator/multicluster/operator/component-bundle-multicluster.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-operator by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: operator-multicluster-bundle -spec: - componentName: bundle - application: openshift-pipelines-operator-multicluster - build-nudges-ref: - - operator-multicluster-index-4-20 - source: - git: - url: https://github.com/openshift-pipelines/operator.git - dockerfileUrl: .konflux/dockerfiles/bundle.Dockerfile - revision: multicluster diff --git a/.konflux/openshift-pipelines-operator/multicluster/operator/component-operator-multicluster.yaml b/.konflux/openshift-pipelines-operator/multicluster/operator/component-operator-multicluster.yaml deleted file mode 100644 index 3bfd9dec..00000000 --- a/.konflux/openshift-pipelines-operator/multicluster/operator/component-operator-multicluster.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-operator by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: operator-multicluster-operator -spec: - componentName: operator - application: openshift-pipelines-operator-multicluster - build-nudges-ref: - - operator-multicluster-bundle - source: - git: - url: https://github.com/openshift-pipelines/operator.git - dockerfileUrl: .konflux/dockerfiles/operator.Dockerfile - revision: multicluster diff --git a/.konflux/openshift-pipelines-operator/multicluster/operator/component-proxy-multicluster.yaml b/.konflux/openshift-pipelines-operator/multicluster/operator/component-proxy-multicluster.yaml deleted file mode 100644 index 04d80e84..00000000 --- a/.konflux/openshift-pipelines-operator/multicluster/operator/component-proxy-multicluster.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-operator by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: operator-multicluster-proxy -spec: - componentName: proxy - application: openshift-pipelines-operator-multicluster - build-nudges-ref: - - operator-multicluster-bundle - source: - git: - url: https://github.com/openshift-pipelines/operator.git - dockerfileUrl: .konflux/dockerfiles/proxy.Dockerfile - revision: multicluster diff --git a/.konflux/openshift-pipelines-operator/multicluster/operator/component-webhook-multicluster.yaml b/.konflux/openshift-pipelines-operator/multicluster/operator/component-webhook-multicluster.yaml deleted file mode 100644 index 9897aaa6..00000000 --- a/.konflux/openshift-pipelines-operator/multicluster/operator/component-webhook-multicluster.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-operator by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: Component -metadata: - annotations: - build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' - name: operator-multicluster-webhook -spec: - componentName: webhook - application: openshift-pipelines-operator-multicluster - build-nudges-ref: - - operator-multicluster-bundle - source: - git: - url: https://github.com/openshift-pipelines/operator.git - dockerfileUrl: .konflux/dockerfiles/webhook.Dockerfile - revision: multicluster diff --git a/.konflux/openshift-pipelines-operator/multicluster/operator/image-bundle-multicluster.yaml b/.konflux/openshift-pipelines-operator/multicluster/operator/image-bundle-multicluster.yaml deleted file mode 100644 index dc521fcb..00000000 --- a/.konflux/openshift-pipelines-operator/multicluster/operator/image-bundle-multicluster.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-operator by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: operator-multicluster-bundle - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: operator-multicluster-bundle - appstudio.redhat.com/application: openshift-pipelines-operator-multicluster -spec: - image: - name: pipelines-operator-bundle - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-operator/multicluster/operator/image-operator-multicluster.yaml b/.konflux/openshift-pipelines-operator/multicluster/operator/image-operator-multicluster.yaml deleted file mode 100644 index b4c62dd5..00000000 --- a/.konflux/openshift-pipelines-operator/multicluster/operator/image-operator-multicluster.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-operator by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: operator-multicluster-operator - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: operator-multicluster-operator - appstudio.redhat.com/application: openshift-pipelines-operator-multicluster -spec: - image: - name: pipelines-rhel9-operator - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-operator/multicluster/operator/image-proxy-multicluster.yaml b/.konflux/openshift-pipelines-operator/multicluster/operator/image-proxy-multicluster.yaml deleted file mode 100644 index 90b68532..00000000 --- a/.konflux/openshift-pipelines-operator/multicluster/operator/image-proxy-multicluster.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-operator by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: operator-multicluster-proxy - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: operator-multicluster-proxy - appstudio.redhat.com/application: openshift-pipelines-operator-multicluster -spec: - image: - name: pipelines-operator-proxy-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-operator/multicluster/operator/image-webhook-multicluster.yaml b/.konflux/openshift-pipelines-operator/multicluster/operator/image-webhook-multicluster.yaml deleted file mode 100644 index 520dec02..00000000 --- a/.konflux/openshift-pipelines-operator/multicluster/operator/image-webhook-multicluster.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-operator by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ImageRepository -metadata: - name: operator-multicluster-webhook - annotations: - image-controller.appstudio.redhat.com/update-component-image: "true" - image-controller.appstudio.redhat.com/skip-repository-deletion: "true" - labels: - appstudio.redhat.com/component: operator-multicluster-webhook - appstudio.redhat.com/application: openshift-pipelines-operator-multicluster -spec: - image: - name: pipelines-operator-webhook-rhel9 - visibility: public - notifications: - - config: - url: https://bombino.api.redhat.com/v1/sbom/quay/push - event: repo_push - method: webhook - title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines-operator/multicluster/release-plan.yaml b/.konflux/openshift-pipelines-operator/multicluster/release-plan.yaml deleted file mode 100644 index 2126ef70..00000000 --- a/.konflux/openshift-pipelines-operator/multicluster/release-plan.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-operator by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1alpha1 -kind: ReleasePlan -metadata: - labels: - release.appstudio.openshift.io/auto-release: "true" - release.appstudio.openshift.io/standing-attribution: 'true' - name: openshift-pipelines-operator-multicluster-rp -spec: - application: openshift-pipelines-operator-multicluster - tenantPipeline: - serviceAccountName: release-registry-openshift-pipelines-operator - pipelineRef: - resolver: git - params: - - name: url - value: https://github.com/openshift-pipelines/hack.git - - name: revision - # value: release-vmulticluster.x - value: main - - name: pathInRepo - value: pipelines/release-pipeline.yaml - params: - - name: release_version - value: "multicluster" - - name: release_to_github - value: "false" diff --git a/.konflux/openshift-pipelines-operator/multicluster/tests.yaml b/.konflux/openshift-pipelines-operator/multicluster/tests.yaml deleted file mode 100644 index f8cfaead..00000000 --- a/.konflux/openshift-pipelines-operator/multicluster/tests.yaml +++ /dev/null @@ -1,27 +0,0 @@ -# Generated for Konflux Application openshift-pipelines-operator by openshift-pipelines/hack. DO NOT EDIT ---- -apiVersion: appstudio.redhat.com/v1beta2 -kind: IntegrationTestScenario -metadata: - name: openshift-pipelines-operator-multicluster-enterprise-contract -spec: - application: openshift-pipelines-operator-multicluster - contexts: - - description: execute the integration test for a component - name: component - params: - - name: POLICY_CONFIGURATION - value: tekton-ecosystem-tenant/tekton-ecosystem-tenant-containers - - name: TIMEOUT - value: "15m0s" - - name: SINGLE_COMPONENT - value: "true" - resolverRef: - params: - - name: url - value: "https://github.com/konflux-ci/build-definitions" - - name: revision - value: main - - name: pathInRepo - value: pipelines/enterprise-contract.yaml - resolver: git diff --git a/config/downstream/applications/core.yaml b/config/downstream/applications/core.yaml index acac0888..71896278 100644 --- a/config/downstream/applications/core.yaml +++ b/config/downstream/applications/core.yaml @@ -13,8 +13,8 @@ - tektoncd-pruner - tektoncd-results - tektoncd-triggers - - syncer-service - - multicluster-proxy-aae +# - syncer-service +# - multicluster-proxy-aae - name: openshift-pipelines-operator repos: - tektoncd-operator diff --git a/config/downstream/releases/multicluster.yaml b/config/downstream/releases/multicluster.yaml deleted file mode 100644 index a209248c..00000000 --- a/config/downstream/releases/multicluster.yaml +++ /dev/null @@ -1,36 +0,0 @@ -version: multicluster -image-suffix: -rhel9 -patch-version: multicluster -branches: - git-init: - upstream: release-v1.2.x - manual-approval-gate: - upstream: release-v0.7.0 - opc: - upstream: release-v1.19.x - pipelines-as-code: - upstream: release-v0.41.x - tekton-assist: - upstream: release-v0.1.x - tekton-caches: - upstream: release-v0.3.x - tekton-kueue: - upstream: release-v0.3.x - tektoncd-chains: - upstream: release-v0.26.x - tektoncd-cli: - upstream: release-v0.43.x - tektoncd-hub: - upstream: release-v1.23.6 - tektoncd-pipeline: - upstream: release-v1.9.x - tektoncd-pruner: - upstream: release-v0.3.x - tektoncd-results: - upstream: release-v0.17.x - tektoncd-triggers: - upstream: release-v0.34.x - syncer-service: - upstream: release-v0.1.x - multicluster-proxy-aae: - upstream: release-v0.1.x diff --git a/config/downstream/repos/tektoncd-operator.yaml b/config/downstream/repos/tektoncd-operator.yaml index 2127accc..7aa6dff4 100644 --- a/config/downstream/repos/tektoncd-operator.yaml +++ b/config/downstream/repos/tektoncd-operator.yaml @@ -1,16 +1,13 @@ name: operator -upstream: openshift-pipelines/operator-multicluster -no-prefix-upstream: true +upstream: tektoncd/operator components: - name: operator image-prefix: rhel9- + no-prefix-upstream: true no-image-suffix: true - name: webhook - image-prefix: operator- - name: proxy - image-prefix: operator- - name: bundle - image-prefix: operator- no-image-suffix: true nudges: - operator-{{hyphenize .Version.Version}}-index-4-20 diff --git a/internal/konflux/config_generator.go b/internal/konflux/config_generator.go index e4d9cef1..03b6770d 100644 --- a/internal/konflux/config_generator.go +++ b/internal/konflux/config_generator.go @@ -142,14 +142,12 @@ func generateKonfluxApplication(application Application, targetDir string) error if err := generateFileFromTemplate("tests.yaml", application, filepath.Join(targetDir, "tests.yaml"), application); err != nil { return err } - if application.ReleaseToGitHub { - tempApplication := application - tempApplication.AutoRelease = false - if err := generateFileFromTemplate("release-plan.yaml", tempApplication, filepath.Join(targetDir, "release-plan_github.yaml"), tempApplication); err != nil { + log.Printf("Create Release Tests in %s\n", targetDir) + if strings.Contains(application.Name, "index") { + if err := generateFileFromTemplate("release-tests.yaml", application, filepath.Join(targetDir, "release-tests.yaml"), application); err != nil { return err } } - application.ReleaseToGitHub = false if err := generateFileFromTemplate("release-plan.yaml", application, filepath.Join(targetDir, "release-plan.yaml"), application); err != nil { return err } diff --git a/internal/konflux/templates/konflux/release-tests.yaml b/internal/konflux/templates/konflux/release-tests.yaml index 4625faef..ca10b0f3 100644 --- a/internal/konflux/templates/konflux/release-tests.yaml +++ b/internal/konflux/templates/konflux/release-tests.yaml @@ -2,9 +2,9 @@ apiVersion: appstudio.redhat.com/v1beta2 kind: IntegrationTestScenario metadata: - name: {{hyphenize .Name}}-{{hyphenize .Version.Version}}-release-tests + name: {{hyphenize .Name}}-{{hyphenize .Release.Version}}-release-tests spec: - application: {{hyphenize .Name}}-{{hyphenize .Version.Version}} + application: {{hyphenize .Name}}-{{hyphenize .Release.Version}} contexts: - description: execute the integration test for a Snapshot created for a `push` event name: push @@ -15,5 +15,5 @@ spec: - name: revision value: main - name: pathInRepo - value: .konflux/tekton/bundle-e2e-pipeline.yaml + value: .konflux/tekton/release-test-pipeline.yaml resolver: git From 64e902dc4f80e7d7a95a6f9a3f1f8ea93192d728 Mon Sep 17 00:00:00 2001 From: Pramod Bindal Date: Thu, 5 Feb 2026 15:42:00 +0530 Subject: [PATCH 14/18] Enable 4.21 --- config/downstream/applications/index.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config/downstream/applications/index.yaml b/config/downstream/applications/index.yaml index 490dc069..a71a6daf 100644 --- a/config/downstream/applications/index.yaml +++ b/config/downstream/applications/index.yaml @@ -1,6 +1,6 @@ -#- name: openshift-pipelines-index-4.21 -# repos: -# - operator-index-4.21 +- name: openshift-pipelines-index-4.21 + repos: + - operator-index-4.21 - name: openshift-pipelines-index-4.20 repos: - operator-index-4.20 From 9b08deed86ead5be5ddf277629157664a02d1b1d Mon Sep 17 00:00:00 2001 From: Pramod Bindal Date: Thu, 5 Feb 2026 15:43:07 +0530 Subject: [PATCH 15/18] Add next --- config/downstream/releases/next.yaml | 36 ++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 config/downstream/releases/next.yaml diff --git a/config/downstream/releases/next.yaml b/config/downstream/releases/next.yaml new file mode 100644 index 00000000..e0757a67 --- /dev/null +++ b/config/downstream/releases/next.yaml @@ -0,0 +1,36 @@ +branches: + git-init: + upstream: release-v1.2.x + manual-approval-gate: + upstream: release-v0.7.0 + opc: + upstream: release-v1.19.x + pipelines-as-code: + upstream: release-v0.41.x + tekton-assist: + upstream: release-v0.1.x + tekton-caches: + upstream: release-v0.3.x + tekton-kueue: + upstream: release-v0.3.x + tektoncd-chains: + upstream: release-v0.26.x + tektoncd-cli: + upstream: release-v0.43.x + tektoncd-hub: + upstream: release-v1.23.6 + tektoncd-operator: + upstream: main + tektoncd-pipeline: + upstream: release-v1.9.x + tektoncd-pruner: + upstream: release-v0.3.x + tektoncd-results: + upstream: release-v0.17.x + tektoncd-triggers: + upstream: release-v0.34.x + syncer-service: + upstream: release-v0.1.x + multicluster-proxy-aae: + upstream: release-v0.1.x +patch-version: next From 376bffee5d6db8525d3bf7f2a34f5f58a0f89a0d Mon Sep 17 00:00:00 2001 From: Pramod Bindal Date: Thu, 5 Feb 2026 15:45:21 +0530 Subject: [PATCH 16/18] Add next --- config/downstream/applications/core.yaml | 4 ++-- config/downstream/releases/1.22.yaml | 3 +-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/config/downstream/applications/core.yaml b/config/downstream/applications/core.yaml index 71896278..acac0888 100644 --- a/config/downstream/applications/core.yaml +++ b/config/downstream/applications/core.yaml @@ -13,8 +13,8 @@ - tektoncd-pruner - tektoncd-results - tektoncd-triggers -# - syncer-service -# - multicluster-proxy-aae + - syncer-service + - multicluster-proxy-aae - name: openshift-pipelines-operator repos: - tektoncd-operator diff --git a/config/downstream/releases/1.22.yaml b/config/downstream/releases/1.22.yaml index 91ca06d5..61ba75ec 100644 --- a/config/downstream/releases/1.22.yaml +++ b/config/downstream/releases/1.22.yaml @@ -35,5 +35,4 @@ branches: syncer-service: upstream: release-v0.1.x multicluster-proxy-aae: - upstream: release-v0.1.x -patch-version: 1.22.0 + upstream: release-v0.1.x \ No newline at end of file From 4b48d9dbc6e9d4b8124127a89b98251d97805bd4 Mon Sep 17 00:00:00 2001 From: openshift-pipelines-bot Date: Thu, 5 Feb 2026 10:24:57 +0000 Subject: [PATCH 17/18] [bot:multi-cluster] Update Generated Konflux Config --- .../0-1/application.yaml | 8 ++++++ .../component-multicluster-proxy-aae-0.1.yaml | 18 ++++++++++++ .../image-multicluster-proxy-aae-0.1.yaml | 22 +++++++++++++++ .../0-1/release-plan.yaml | 28 +++++++++++++++++++ .../multicluster-proxy-aae/0-1/tests.yaml | 27 ++++++++++++++++++ .konflux/multicluster-proxy-aae/role.yaml | 14 ++++++++++ .../service-account.yaml | 10 +++++++ .konflux/syncer-service/0-1/application.yaml | 8 ++++++ .konflux/syncer-service/0-1/release-plan.yaml | 28 +++++++++++++++++++ .../component-syncer-service-0.1.yaml | 18 ++++++++++++ .../image-syncer-service-0.1.yaml | 22 +++++++++++++++ .konflux/syncer-service/0-1/tests.yaml | 27 ++++++++++++++++++ .konflux/syncer-service/role.yaml | 14 ++++++++++ .konflux/syncer-service/service-account.yaml | 10 +++++++ 14 files changed, 254 insertions(+) create mode 100644 .konflux/multicluster-proxy-aae/0-1/application.yaml create mode 100644 .konflux/multicluster-proxy-aae/0-1/multicluster-proxy-aae/component-multicluster-proxy-aae-0.1.yaml create mode 100644 .konflux/multicluster-proxy-aae/0-1/multicluster-proxy-aae/image-multicluster-proxy-aae-0.1.yaml create mode 100644 .konflux/multicluster-proxy-aae/0-1/release-plan.yaml create mode 100644 .konflux/multicluster-proxy-aae/0-1/tests.yaml create mode 100644 .konflux/multicluster-proxy-aae/role.yaml create mode 100644 .konflux/multicluster-proxy-aae/service-account.yaml create mode 100644 .konflux/syncer-service/0-1/application.yaml create mode 100644 .konflux/syncer-service/0-1/release-plan.yaml create mode 100644 .konflux/syncer-service/0-1/syncer-service/component-syncer-service-0.1.yaml create mode 100644 .konflux/syncer-service/0-1/syncer-service/image-syncer-service-0.1.yaml create mode 100644 .konflux/syncer-service/0-1/tests.yaml create mode 100644 .konflux/syncer-service/role.yaml create mode 100644 .konflux/syncer-service/service-account.yaml diff --git a/.konflux/multicluster-proxy-aae/0-1/application.yaml b/.konflux/multicluster-proxy-aae/0-1/application.yaml new file mode 100644 index 00000000..3d7ae607 --- /dev/null +++ b/.konflux/multicluster-proxy-aae/0-1/application.yaml @@ -0,0 +1,8 @@ +# Generated for Konflux Application multicluster-proxy-aae by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Application +metadata: + name: multicluster-proxy-aae-0-1 +spec: + displayName: multicluster-proxy-aae-0-1 diff --git a/.konflux/multicluster-proxy-aae/0-1/multicluster-proxy-aae/component-multicluster-proxy-aae-0.1.yaml b/.konflux/multicluster-proxy-aae/0-1/multicluster-proxy-aae/component-multicluster-proxy-aae-0.1.yaml new file mode 100644 index 00000000..39d025b3 --- /dev/null +++ b/.konflux/multicluster-proxy-aae/0-1/multicluster-proxy-aae/component-multicluster-proxy-aae-0.1.yaml @@ -0,0 +1,18 @@ +# Generated for Konflux Application multicluster-proxy-aae by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Component +metadata: + annotations: + build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' + name: multicluster-proxy-aae-0-1-multicluster-proxy-aae +spec: + componentName: multicluster-proxy-aae + application: multicluster-proxy-aae-0-1 + build-nudges-ref: + - operator-0-1-bundle + source: + git: + url: https://github.com/openshift-pipelines/multicluster-proxy-aae.git + dockerfileUrl: Dockerfile + revision: release-v0.1.x diff --git a/.konflux/multicluster-proxy-aae/0-1/multicluster-proxy-aae/image-multicluster-proxy-aae-0.1.yaml b/.konflux/multicluster-proxy-aae/0-1/multicluster-proxy-aae/image-multicluster-proxy-aae-0.1.yaml new file mode 100644 index 00000000..b34a0742 --- /dev/null +++ b/.konflux/multicluster-proxy-aae/0-1/multicluster-proxy-aae/image-multicluster-proxy-aae-0.1.yaml @@ -0,0 +1,22 @@ +# Generated for Konflux Application multicluster-proxy-aae by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ImageRepository +metadata: + name: multicluster-proxy-aae-0-1-multicluster-proxy-aae + annotations: + image-controller.appstudio.redhat.com/update-component-image: "true" + image-controller.appstudio.redhat.com/skip-repository-deletion: "true" + labels: + appstudio.redhat.com/component: multicluster-proxy-aae-0-1-multicluster-proxy-aae + appstudio.redhat.com/application: multicluster-proxy-aae-0-1 +spec: + image: + name: multicluster-proxy-aae/multicluster-proxy-aae-rhel9 + visibility: public + notifications: + - config: + url: https://bombino.api.redhat.com/v1/sbom/quay/push + event: repo_push + method: webhook + title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/multicluster-proxy-aae/0-1/release-plan.yaml b/.konflux/multicluster-proxy-aae/0-1/release-plan.yaml new file mode 100644 index 00000000..84691a5a --- /dev/null +++ b/.konflux/multicluster-proxy-aae/0-1/release-plan.yaml @@ -0,0 +1,28 @@ +# Generated for Konflux Application multicluster-proxy-aae by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ReleasePlan +metadata: + labels: + release.appstudio.openshift.io/auto-release: "true" + release.appstudio.openshift.io/standing-attribution: 'true' + name: multicluster-proxy-aae-0-1-github-rp +spec: + application: multicluster-proxy-aae-0-1 + tenantPipeline: + serviceAccountName: release-registry-multicluster-proxy-aae + pipelineRef: + resolver: git + params: + - name: url + value: https://github.com/openshift-pipelines/hack.git + - name: revision + # value: release-v0.1.x + value: main + - name: pathInRepo + value: pipelines/release-pipeline.yaml + params: + - name: release_version + value: "v0.1.0" + - name: release_to_github + value: "true" diff --git a/.konflux/multicluster-proxy-aae/0-1/tests.yaml b/.konflux/multicluster-proxy-aae/0-1/tests.yaml new file mode 100644 index 00000000..2442c6f2 --- /dev/null +++ b/.konflux/multicluster-proxy-aae/0-1/tests.yaml @@ -0,0 +1,27 @@ +# Generated for Konflux Application multicluster-proxy-aae by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1beta2 +kind: IntegrationTestScenario +metadata: + name: multicluster-proxy-aae-0-1-enterprise-contract +spec: + application: multicluster-proxy-aae-0-1 + contexts: + - description: execute the integration test for a component + name: component + params: + - name: POLICY_CONFIGURATION + value: tekton-ecosystem-tenant/tekton-ecosystem-tenant-containers + - name: TIMEOUT + value: "15m0s" + - name: SINGLE_COMPONENT + value: "true" + resolverRef: + params: + - name: url + value: "https://github.com/konflux-ci/build-definitions" + - name: revision + value: main + - name: pathInRepo + value: pipelines/enterprise-contract.yaml + resolver: git diff --git a/.konflux/multicluster-proxy-aae/role.yaml b/.konflux/multicluster-proxy-aae/role.yaml new file mode 100644 index 00000000..9600a04a --- /dev/null +++ b/.konflux/multicluster-proxy-aae/role.yaml @@ -0,0 +1,14 @@ +# Generated for Konflux Application multicluster-proxy-aae by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: RoleBinding +metadata: + name: release-plan-rolebinding-multicluster-proxy-aae +subjects: + - kind: ServiceAccount + name: release-registry-multicluster-proxy-aae + apiGroup: "" +roleRef: + kind: ClusterRole + name: konflux-releaser-bot-actions + apiGroup: rbac.authorization.k8s.io \ No newline at end of file diff --git a/.konflux/multicluster-proxy-aae/service-account.yaml b/.konflux/multicluster-proxy-aae/service-account.yaml new file mode 100644 index 00000000..6e6b7bd8 --- /dev/null +++ b/.konflux/multicluster-proxy-aae/service-account.yaml @@ -0,0 +1,10 @@ +# Generated for Konflux Application multicluster-proxy-aae by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: v1 +imagePullSecrets: + - name: release-registry-openshift-pipelines-quay +kind: ServiceAccount +metadata: + name: release-registry-multicluster-proxy-aae +secrets: + - name: release-registry-openshift-pipelines-quay \ No newline at end of file diff --git a/.konflux/syncer-service/0-1/application.yaml b/.konflux/syncer-service/0-1/application.yaml new file mode 100644 index 00000000..7d4f4e2f --- /dev/null +++ b/.konflux/syncer-service/0-1/application.yaml @@ -0,0 +1,8 @@ +# Generated for Konflux Application syncer-service by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Application +metadata: + name: syncer-service-0-1 +spec: + displayName: syncer-service-0-1 diff --git a/.konflux/syncer-service/0-1/release-plan.yaml b/.konflux/syncer-service/0-1/release-plan.yaml new file mode 100644 index 00000000..edad06c7 --- /dev/null +++ b/.konflux/syncer-service/0-1/release-plan.yaml @@ -0,0 +1,28 @@ +# Generated for Konflux Application syncer-service by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ReleasePlan +metadata: + labels: + release.appstudio.openshift.io/auto-release: "true" + release.appstudio.openshift.io/standing-attribution: 'true' + name: syncer-service-0-1-github-rp +spec: + application: syncer-service-0-1 + tenantPipeline: + serviceAccountName: release-registry-syncer-service + pipelineRef: + resolver: git + params: + - name: url + value: https://github.com/openshift-pipelines/hack.git + - name: revision + # value: release-v0.1.x + value: main + - name: pathInRepo + value: pipelines/release-pipeline.yaml + params: + - name: release_version + value: "v0.1.0" + - name: release_to_github + value: "true" diff --git a/.konflux/syncer-service/0-1/syncer-service/component-syncer-service-0.1.yaml b/.konflux/syncer-service/0-1/syncer-service/component-syncer-service-0.1.yaml new file mode 100644 index 00000000..83109429 --- /dev/null +++ b/.konflux/syncer-service/0-1/syncer-service/component-syncer-service-0.1.yaml @@ -0,0 +1,18 @@ +# Generated for Konflux Application syncer-service by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Component +metadata: + annotations: + build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' + name: syncer-service-0-1-syncer-service +spec: + componentName: syncer-service + application: syncer-service-0-1 + build-nudges-ref: + - operator-0-1-bundle + source: + git: + url: https://github.com/openshift-pipelines/syncer-service.git + dockerfileUrl: Dockerfile + revision: release-v0.1.x diff --git a/.konflux/syncer-service/0-1/syncer-service/image-syncer-service-0.1.yaml b/.konflux/syncer-service/0-1/syncer-service/image-syncer-service-0.1.yaml new file mode 100644 index 00000000..2b60df9f --- /dev/null +++ b/.konflux/syncer-service/0-1/syncer-service/image-syncer-service-0.1.yaml @@ -0,0 +1,22 @@ +# Generated for Konflux Application syncer-service by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ImageRepository +metadata: + name: syncer-service-0-1-syncer-service + annotations: + image-controller.appstudio.redhat.com/update-component-image: "true" + image-controller.appstudio.redhat.com/skip-repository-deletion: "true" + labels: + appstudio.redhat.com/component: syncer-service-0-1-syncer-service + appstudio.redhat.com/application: syncer-service-0-1 +spec: + image: + name: syncer-service/syncer-service-rhel9 + visibility: public + notifications: + - config: + url: https://bombino.api.redhat.com/v1/sbom/quay/push + event: repo_push + method: webhook + title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/syncer-service/0-1/tests.yaml b/.konflux/syncer-service/0-1/tests.yaml new file mode 100644 index 00000000..ca66ac26 --- /dev/null +++ b/.konflux/syncer-service/0-1/tests.yaml @@ -0,0 +1,27 @@ +# Generated for Konflux Application syncer-service by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1beta2 +kind: IntegrationTestScenario +metadata: + name: syncer-service-0-1-enterprise-contract +spec: + application: syncer-service-0-1 + contexts: + - description: execute the integration test for a component + name: component + params: + - name: POLICY_CONFIGURATION + value: tekton-ecosystem-tenant/tekton-ecosystem-tenant-containers + - name: TIMEOUT + value: "15m0s" + - name: SINGLE_COMPONENT + value: "true" + resolverRef: + params: + - name: url + value: "https://github.com/konflux-ci/build-definitions" + - name: revision + value: main + - name: pathInRepo + value: pipelines/enterprise-contract.yaml + resolver: git diff --git a/.konflux/syncer-service/role.yaml b/.konflux/syncer-service/role.yaml new file mode 100644 index 00000000..932a430e --- /dev/null +++ b/.konflux/syncer-service/role.yaml @@ -0,0 +1,14 @@ +# Generated for Konflux Application syncer-service by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: RoleBinding +metadata: + name: release-plan-rolebinding-syncer-service +subjects: + - kind: ServiceAccount + name: release-registry-syncer-service + apiGroup: "" +roleRef: + kind: ClusterRole + name: konflux-releaser-bot-actions + apiGroup: rbac.authorization.k8s.io \ No newline at end of file diff --git a/.konflux/syncer-service/service-account.yaml b/.konflux/syncer-service/service-account.yaml new file mode 100644 index 00000000..67709c9a --- /dev/null +++ b/.konflux/syncer-service/service-account.yaml @@ -0,0 +1,10 @@ +# Generated for Konflux Application syncer-service by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: v1 +imagePullSecrets: + - name: release-registry-openshift-pipelines-quay +kind: ServiceAccount +metadata: + name: release-registry-syncer-service +secrets: + - name: release-registry-openshift-pipelines-quay \ No newline at end of file From 0fdf8a4555feaacc70a1a146ef56b2d6399b92cf Mon Sep 17 00:00:00 2001 From: openshift-pipelines-bot Date: Thu, 5 Feb 2026 10:30:37 +0000 Subject: [PATCH 18/18] [bot:multi-cluster] Update Generated Konflux Config --- .../1-22/application.yaml | 8 ++++++ .../1-22/p12n-opc/component-opc-1.22.yaml | 18 ++++++++++++ .../1-22/p12n-opc/image-opc-1.22.yaml | 22 +++++++++++++++ .../1-22/release-plan.yaml | 28 +++++++++++++++++++ .../component-serve-tkn-cli-1.22.yaml | 18 ++++++++++++ .../image-serve-tkn-cli-1.22.yaml | 22 +++++++++++++++ .../1-22/tektoncd-cli/component-tkn-1.22.yaml | 18 ++++++++++++ .../1-22/tektoncd-cli/image-tkn-1.22.yaml | 22 +++++++++++++++ .../openshift-pipelines-cli/1-22/tests.yaml | 27 ++++++++++++++++++ .../next/application.yaml | 8 ++++++ .../next/p12n-opc/component-opc-next.yaml | 18 ++++++++++++ .../next/p12n-opc/image-opc-next.yaml | 22 +++++++++++++++ .../next/release-plan.yaml | 28 +++++++++++++++++++ .../component-serve-tkn-cli-next.yaml | 18 ++++++++++++ .../image-serve-tkn-cli-next.yaml | 22 +++++++++++++++ .../next/tektoncd-cli/component-tkn-next.yaml | 18 ++++++++++++ .../next/tektoncd-cli/image-tkn-next.yaml | 22 +++++++++++++++ .../openshift-pipelines-cli/next/tests.yaml | 27 ++++++++++++++++++ .../openshift-pipelines-cli/role.yaml | 14 ++++++++++ .../service-account.yaml | 10 +++++++ .../component-console-plugin-1.22.yaml | 18 ++++++++++++ .../image-console-plugin-1.22.yaml | 22 +++++++++++++++ .../component-controller-1.22.yaml | 18 ++++++++++++ .../component-webhook-1.22.yaml | 18 ++++++++++++ .../image-controller-1.22.yaml | 22 +++++++++++++++ .../image-webhook-1.22.yaml | 22 +++++++++++++++ .../component-tekton-assist-1.22.yaml | 18 ++++++++++++ .../image-tekton-assist-1.22.yaml | 22 +++++++++++++++ .../component-cache-1.22.yaml | 18 ++++++++++++ .../p12n-tekton-caches/image-cache-1.22.yaml | 22 +++++++++++++++ .../pac-downstream/component-cli-1.22.yaml | 19 +++++++++++++ .../component-controller-1.22.yaml | 18 ++++++++++++ .../component-watcher-1.22.yaml | 18 ++++++++++++ .../component-webhook-1.22.yaml | 18 ++++++++++++ .../1-22/pac-downstream/image-cli-1.22.yaml | 22 +++++++++++++++ .../pac-downstream/image-controller-1.22.yaml | 22 +++++++++++++++ .../pac-downstream/image-watcher-1.22.yaml | 22 +++++++++++++++ .../pac-downstream/image-webhook-1.22.yaml | 22 +++++++++++++++ .../component-git-init-1.22.yaml | 18 ++++++++++++ .../image-git-init-1.22.yaml | 22 +++++++++++++++ .../next/application.yaml | 8 ++++++ .../component-console-plugin-next.yaml | 18 ++++++++++++ .../image-console-plugin-next.yaml | 22 +++++++++++++++ .../component-controller-next.yaml | 18 ++++++++++++ .../component-webhook-next.yaml | 18 ++++++++++++ .../image-controller-next.yaml | 22 +++++++++++++++ .../image-webhook-next.yaml | 22 +++++++++++++++ .../component-proxy-server-next.yaml | 18 ++++++++++++ .../image-proxy-server-next.yaml | 22 +++++++++++++++ .../component-controller-next.yaml | 18 ++++++++++++ .../image-controller-next.yaml | 22 +++++++++++++++ .../component-tekton-assist-next.yaml | 18 ++++++++++++ .../image-tekton-assist-next.yaml | 22 +++++++++++++++ .../component-cache-next.yaml | 18 ++++++++++++ .../p12n-tekton-caches/image-cache-next.yaml | 22 +++++++++++++++ .../pac-downstream/component-cli-next.yaml | 19 +++++++++++++ .../component-controller-next.yaml | 18 ++++++++++++ .../component-watcher-next.yaml | 18 ++++++++++++ .../component-webhook-next.yaml | 18 ++++++++++++ .../next/pac-downstream/image-cli-next.yaml | 22 +++++++++++++++ .../pac-downstream/image-controller-next.yaml | 22 +++++++++++++++ .../pac-downstream/image-watcher-next.yaml | 22 +++++++++++++++ .../pac-downstream/image-webhook-next.yaml | 22 +++++++++++++++ .../next/release-plan.yaml | 28 +++++++++++++++++++ .../component-scheduler-next.yaml | 18 ++++++++++++ .../tekton-kueue/image-scheduler-next.yaml | 22 +++++++++++++++ .../component-controller-next.yaml | 18 ++++++++++++ .../image-controller-next.yaml | 22 +++++++++++++++ .../component-git-init-next.yaml | 18 ++++++++++++ .../image-git-init-next.yaml | 22 +++++++++++++++ .../next/tektoncd-hub/component-api-next.yaml | 18 ++++++++++++ .../component-db-migration-next.yaml | 18 ++++++++++++ .../next/tektoncd-hub/component-ui-next.yaml | 18 ++++++++++++ .../next/tektoncd-hub/image-api-next.yaml | 22 +++++++++++++++ .../tektoncd-hub/image-db-migration-next.yaml | 22 +++++++++++++++ .../next/tektoncd-hub/image-ui-next.yaml | 22 +++++++++++++++ .../component-controller-next.yaml | 18 ++++++++++++ .../component-entrypoint-next.yaml | 18 ++++++++++++ .../component-events-next.yaml | 18 ++++++++++++ .../tektoncd-pipeline/component-nop-next.yaml | 18 ++++++++++++ .../component-resolvers-next.yaml | 18 ++++++++++++ .../component-sidecarlogresults-next.yaml | 18 ++++++++++++ .../component-webhook-next.yaml | 18 ++++++++++++ .../component-workingdirinit-next.yaml | 18 ++++++++++++ .../image-controller-next.yaml | 22 +++++++++++++++ .../image-entrypoint-next.yaml | 22 +++++++++++++++ .../tektoncd-pipeline/image-events-next.yaml | 22 +++++++++++++++ .../tektoncd-pipeline/image-nop-next.yaml | 22 +++++++++++++++ .../image-resolvers-next.yaml | 22 +++++++++++++++ .../image-sidecarlogresults-next.yaml | 22 +++++++++++++++ .../tektoncd-pipeline/image-webhook-next.yaml | 22 +++++++++++++++ .../image-workingdirinit-next.yaml | 22 +++++++++++++++ .../component-controller-next.yaml | 18 ++++++++++++ .../image-controller-next.yaml | 22 +++++++++++++++ .../tektoncd-results/component-api-next.yaml | 18 ++++++++++++ ...component-retention-policy-agent-next.yaml | 18 ++++++++++++ .../component-watcher-next.yaml | 18 ++++++++++++ .../next/tektoncd-results/image-api-next.yaml | 22 +++++++++++++++ .../image-retention-policy-agent-next.yaml | 22 +++++++++++++++ .../tektoncd-results/image-watcher-next.yaml | 22 +++++++++++++++ .../component-controller-next.yaml | 18 ++++++++++++ .../component-core-interceptors-next.yaml | 18 ++++++++++++ .../component-eventlistenersink-next.yaml | 18 ++++++++++++ .../component-webhook-next.yaml | 18 ++++++++++++ .../image-controller-next.yaml | 22 +++++++++++++++ .../image-core-interceptors-next.yaml | 22 +++++++++++++++ .../image-eventlistenersink-next.yaml | 22 +++++++++++++++ .../tektoncd-triggers/image-webhook-next.yaml | 22 +++++++++++++++ .../openshift-pipelines-core/next/tests.yaml | 27 ++++++++++++++++++ .../1-22/release-tests.yaml | 20 +++++++++++++ .../next/application.yaml | 8 ++++++ .../operator/component-index-4.16-next.yaml | 18 ++++++++++++ .../next/operator/image-index-4.16-next.yaml | 22 +++++++++++++++ .../next/release-plan.yaml | 28 +++++++++++++++++++ .../next/release-tests.yaml | 20 +++++++++++++ .../next/tests.yaml | 27 ++++++++++++++++++ .../1-22/release-tests.yaml | 20 +++++++++++++ .../next/application.yaml | 8 ++++++ .../operator/component-index-4.17-next.yaml | 18 ++++++++++++ .../next/operator/image-index-4.17-next.yaml | 22 +++++++++++++++ .../next/release-plan.yaml | 28 +++++++++++++++++++ .../next/release-tests.yaml | 20 +++++++++++++ .../next/tests.yaml | 27 ++++++++++++++++++ .../1-22/release-tests.yaml | 20 +++++++++++++ .../next/application.yaml | 8 ++++++ .../operator/component-index-4.18-next.yaml | 18 ++++++++++++ .../next/operator/image-index-4.18-next.yaml | 22 +++++++++++++++ .../next/release-plan.yaml | 28 +++++++++++++++++++ .../next/release-tests.yaml | 20 +++++++++++++ .../next/tests.yaml | 27 ++++++++++++++++++ .../1-22/release-tests.yaml | 20 +++++++++++++ .../next/application.yaml | 8 ++++++ .../operator/component-index-4.19-next.yaml | 18 ++++++++++++ .../next/operator/image-index-4.19-next.yaml | 22 +++++++++++++++ .../next/release-plan.yaml | 28 +++++++++++++++++++ .../next/release-tests.yaml | 20 +++++++++++++ .../next/tests.yaml | 27 ++++++++++++++++++ .../1-22/release-tests.yaml | 20 +++++++++++++ .../next/application.yaml | 8 ++++++ .../operator/component-index-4.20-next.yaml | 18 ++++++++++++ .../next/operator/image-index-4.20-next.yaml | 22 +++++++++++++++ .../next/release-plan.yaml | 28 +++++++++++++++++++ .../next/release-tests.yaml | 20 +++++++++++++ .../next/tests.yaml | 27 ++++++++++++++++++ .../1-22/application.yaml | 8 ++++++ .../operator/component-index-4.21-1.22.yaml | 18 ++++++++++++ .../1-22/operator/image-index-4.21-1.22.yaml | 22 +++++++++++++++ .../1-22/release-plan.yaml | 28 +++++++++++++++++++ .../1-22/release-tests.yaml | 20 +++++++++++++ .../1-22/tests.yaml | 27 ++++++++++++++++++ .../next/application.yaml | 8 ++++++ .../operator/component-index-4.21-next.yaml | 18 ++++++++++++ .../next/operator/image-index-4.21-next.yaml | 22 +++++++++++++++ .../next/release-plan.yaml | 28 +++++++++++++++++++ .../next/release-tests.yaml | 20 +++++++++++++ .../next/tests.yaml | 27 ++++++++++++++++++ .../openshift-pipelines-index-4.21/role.yaml | 14 ++++++++++ .../service-account.yaml | 10 +++++++ .../next/application.yaml | 8 ++++++ .../next/operator/component-bundle-next.yaml | 18 ++++++++++++ .../operator/component-operator-next.yaml | 18 ++++++++++++ .../next/operator/component-proxy-next.yaml | 18 ++++++++++++ .../next/operator/component-webhook-next.yaml | 18 ++++++++++++ .../next/operator/image-bundle-next.yaml | 22 +++++++++++++++ .../next/operator/image-operator-next.yaml | 22 +++++++++++++++ .../next/operator/image-proxy-next.yaml | 22 +++++++++++++++ .../next/operator/image-webhook-next.yaml | 22 +++++++++++++++ .../next/release-plan.yaml | 28 +++++++++++++++++++ .../next/tests.yaml | 27 ++++++++++++++++++ 169 files changed, 3383 insertions(+) create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-cli/1-22/application.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-cli/1-22/p12n-opc/component-opc-1.22.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-cli/1-22/p12n-opc/image-opc-1.22.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-cli/1-22/release-plan.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-cli/1-22/serve-tkn-cli/component-serve-tkn-cli-1.22.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-cli/1-22/serve-tkn-cli/image-serve-tkn-cli-1.22.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-cli/1-22/tektoncd-cli/component-tkn-1.22.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-cli/1-22/tektoncd-cli/image-tkn-1.22.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-cli/1-22/tests.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-cli/next/application.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-cli/next/p12n-opc/component-opc-next.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-cli/next/p12n-opc/image-opc-next.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-cli/next/release-plan.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-cli/next/serve-tkn-cli/component-serve-tkn-cli-next.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-cli/next/serve-tkn-cli/image-serve-tkn-cli-next.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-cli/next/tektoncd-cli/component-tkn-next.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-cli/next/tektoncd-cli/image-tkn-next.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-cli/next/tests.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-cli/role.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-cli/service-account.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/1-22/console-plugin/component-console-plugin-1.22.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/1-22/console-plugin/image-console-plugin-1.22.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/1-22/p12n-manual-approval-gate/component-controller-1.22.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/1-22/p12n-manual-approval-gate/component-webhook-1.22.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/1-22/p12n-manual-approval-gate/image-controller-1.22.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/1-22/p12n-manual-approval-gate/image-webhook-1.22.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/1-22/p12n-tekton-assist/component-tekton-assist-1.22.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/1-22/p12n-tekton-assist/image-tekton-assist-1.22.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/1-22/p12n-tekton-caches/component-cache-1.22.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/1-22/p12n-tekton-caches/image-cache-1.22.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/1-22/pac-downstream/component-cli-1.22.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/1-22/pac-downstream/component-controller-1.22.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/1-22/pac-downstream/component-watcher-1.22.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/1-22/pac-downstream/component-webhook-1.22.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/1-22/pac-downstream/image-cli-1.22.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/1-22/pac-downstream/image-controller-1.22.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/1-22/pac-downstream/image-watcher-1.22.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/1-22/pac-downstream/image-webhook-1.22.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-git-clone/component-git-init-1.22.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-git-clone/image-git-init-1.22.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/next/application.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/next/console-plugin/component-console-plugin-next.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/next/console-plugin/image-console-plugin-next.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/next/p12n-manual-approval-gate/component-controller-next.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/next/p12n-manual-approval-gate/component-webhook-next.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/next/p12n-manual-approval-gate/image-controller-next.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/next/p12n-manual-approval-gate/image-webhook-next.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/next/p12n-multicluster-proxy-aae/component-proxy-server-next.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/next/p12n-multicluster-proxy-aae/image-proxy-server-next.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/next/p12n-syncer-service/component-controller-next.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/next/p12n-syncer-service/image-controller-next.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/next/p12n-tekton-assist/component-tekton-assist-next.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/next/p12n-tekton-assist/image-tekton-assist-next.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/next/p12n-tekton-caches/component-cache-next.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/next/p12n-tekton-caches/image-cache-next.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/next/pac-downstream/component-cli-next.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/next/pac-downstream/component-controller-next.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/next/pac-downstream/component-watcher-next.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/next/pac-downstream/component-webhook-next.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/next/pac-downstream/image-cli-next.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/next/pac-downstream/image-controller-next.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/next/pac-downstream/image-watcher-next.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/next/pac-downstream/image-webhook-next.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/next/release-plan.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/next/tekton-kueue/component-scheduler-next.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/next/tekton-kueue/image-scheduler-next.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-chains/component-controller-next.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-chains/image-controller-next.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-git-clone/component-git-init-next.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-git-clone/image-git-init-next.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-hub/component-api-next.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-hub/component-db-migration-next.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-hub/component-ui-next.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-hub/image-api-next.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-hub/image-db-migration-next.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-hub/image-ui-next.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-pipeline/component-controller-next.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-pipeline/component-entrypoint-next.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-pipeline/component-events-next.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-pipeline/component-nop-next.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-pipeline/component-resolvers-next.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-pipeline/component-sidecarlogresults-next.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-pipeline/component-webhook-next.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-pipeline/component-workingdirinit-next.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-pipeline/image-controller-next.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-pipeline/image-entrypoint-next.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-pipeline/image-events-next.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-pipeline/image-nop-next.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-pipeline/image-resolvers-next.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-pipeline/image-sidecarlogresults-next.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-pipeline/image-webhook-next.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-pipeline/image-workingdirinit-next.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-pruner/component-controller-next.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-pruner/image-controller-next.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-results/component-api-next.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-results/component-retention-policy-agent-next.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-results/component-watcher-next.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-results/image-api-next.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-results/image-retention-policy-agent-next.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-results/image-watcher-next.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-triggers/component-controller-next.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-triggers/component-core-interceptors-next.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-triggers/component-eventlistenersink-next.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-triggers/component-webhook-next.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-triggers/image-controller-next.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-triggers/image-core-interceptors-next.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-triggers/image-eventlistenersink-next.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-triggers/image-webhook-next.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-core/next/tests.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-index-4.16/1-22/release-tests.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-index-4.16/next/application.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-index-4.16/next/operator/component-index-4.16-next.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-index-4.16/next/operator/image-index-4.16-next.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-index-4.16/next/release-plan.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-index-4.16/next/release-tests.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-index-4.16/next/tests.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-index-4.17/1-22/release-tests.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-index-4.17/next/application.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-index-4.17/next/operator/component-index-4.17-next.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-index-4.17/next/operator/image-index-4.17-next.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-index-4.17/next/release-plan.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-index-4.17/next/release-tests.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-index-4.17/next/tests.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-index-4.18/1-22/release-tests.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-index-4.18/next/application.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-index-4.18/next/operator/component-index-4.18-next.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-index-4.18/next/operator/image-index-4.18-next.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-index-4.18/next/release-plan.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-index-4.18/next/release-tests.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-index-4.18/next/tests.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-index-4.19/1-22/release-tests.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-index-4.19/next/application.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-index-4.19/next/operator/component-index-4.19-next.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-index-4.19/next/operator/image-index-4.19-next.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-index-4.19/next/release-plan.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-index-4.19/next/release-tests.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-index-4.19/next/tests.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-index-4.20/1-22/release-tests.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-index-4.20/next/application.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-index-4.20/next/operator/component-index-4.20-next.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-index-4.20/next/operator/image-index-4.20-next.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-index-4.20/next/release-plan.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-index-4.20/next/release-tests.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-index-4.20/next/tests.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-index-4.21/1-22/application.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-index-4.21/1-22/operator/component-index-4.21-1.22.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-index-4.21/1-22/operator/image-index-4.21-1.22.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-index-4.21/1-22/release-plan.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-index-4.21/1-22/release-tests.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-index-4.21/1-22/tests.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-index-4.21/next/application.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-index-4.21/next/operator/component-index-4.21-next.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-index-4.21/next/operator/image-index-4.21-next.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-index-4.21/next/release-plan.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-index-4.21/next/release-tests.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-index-4.21/next/tests.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-index-4.21/role.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-index-4.21/service-account.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-operator/next/application.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-operator/next/operator/component-bundle-next.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-operator/next/operator/component-operator-next.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-operator/next/operator/component-proxy-next.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-operator/next/operator/component-webhook-next.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-operator/next/operator/image-bundle-next.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-operator/next/operator/image-operator-next.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-operator/next/operator/image-proxy-next.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-operator/next/operator/image-webhook-next.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-operator/next/release-plan.yaml create mode 100644 .konflux/openshift-pipelines/openshift-pipelines-operator/next/tests.yaml diff --git a/.konflux/openshift-pipelines/openshift-pipelines-cli/1-22/application.yaml b/.konflux/openshift-pipelines/openshift-pipelines-cli/1-22/application.yaml new file mode 100644 index 00000000..180d1429 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-cli/1-22/application.yaml @@ -0,0 +1,8 @@ +# Generated for Konflux Application openshift-pipelines-cli by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Application +metadata: + name: openshift-pipelines-cli-1-22 +spec: + displayName: openshift-pipelines-cli-1-22 diff --git a/.konflux/openshift-pipelines/openshift-pipelines-cli/1-22/p12n-opc/component-opc-1.22.yaml b/.konflux/openshift-pipelines/openshift-pipelines-cli/1-22/p12n-opc/component-opc-1.22.yaml new file mode 100644 index 00000000..5e8eba91 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-cli/1-22/p12n-opc/component-opc-1.22.yaml @@ -0,0 +1,18 @@ +# Generated for Konflux Application openshift-pipelines-cli by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Component +metadata: + annotations: + build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' + name: p12n-opc-1-22-opc +spec: + componentName: opc + application: openshift-pipelines-cli-1-22 + build-nudges-ref: + - operator-1-22-bundle + source: + git: + url: https://github.com/openshift-pipelines/p12n-opc.git + dockerfileUrl: .konflux/dockerfiles/opc.Dockerfile + revision: release-v1.22.x diff --git a/.konflux/openshift-pipelines/openshift-pipelines-cli/1-22/p12n-opc/image-opc-1.22.yaml b/.konflux/openshift-pipelines/openshift-pipelines-cli/1-22/p12n-opc/image-opc-1.22.yaml new file mode 100644 index 00000000..2bdc5e79 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-cli/1-22/p12n-opc/image-opc-1.22.yaml @@ -0,0 +1,22 @@ +# Generated for Konflux Application openshift-pipelines-cli by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ImageRepository +metadata: + name: p12n-opc-1-22-opc + annotations: + image-controller.appstudio.redhat.com/update-component-image: "true" + image-controller.appstudio.redhat.com/skip-repository-deletion: "true" + labels: + appstudio.redhat.com/component: p12n-opc-1-22-opc + appstudio.redhat.com/application: openshift-pipelines-cli-1-22 +spec: + image: + name: pipelines-opc-rhel9 + visibility: public + notifications: + - config: + url: https://bombino.api.redhat.com/v1/sbom/quay/push + event: repo_push + method: webhook + title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-cli/1-22/release-plan.yaml b/.konflux/openshift-pipelines/openshift-pipelines-cli/1-22/release-plan.yaml new file mode 100644 index 00000000..d547bb0e --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-cli/1-22/release-plan.yaml @@ -0,0 +1,28 @@ +# Generated for Konflux Application openshift-pipelines-cli by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ReleasePlan +metadata: + labels: + release.appstudio.openshift.io/auto-release: "true" + release.appstudio.openshift.io/standing-attribution: 'true' + name: openshift-pipelines-cli-1-22-rp +spec: + application: openshift-pipelines-cli-1-22 + tenantPipeline: + serviceAccountName: release-registry-openshift-pipelines-cli + pipelineRef: + resolver: git + params: + - name: url + value: https://github.com/openshift-pipelines/hack.git + - name: revision + # value: release-v1.22.x + value: main + - name: pathInRepo + value: pipelines/release-pipeline.yaml + params: + - name: release_version + value: "v1.22.0" + - name: release_to_github + value: "false" diff --git a/.konflux/openshift-pipelines/openshift-pipelines-cli/1-22/serve-tkn-cli/component-serve-tkn-cli-1.22.yaml b/.konflux/openshift-pipelines/openshift-pipelines-cli/1-22/serve-tkn-cli/component-serve-tkn-cli-1.22.yaml new file mode 100644 index 00000000..31b4e842 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-cli/1-22/serve-tkn-cli/component-serve-tkn-cli-1.22.yaml @@ -0,0 +1,18 @@ +# Generated for Konflux Application openshift-pipelines-cli by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Component +metadata: + annotations: + build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' + name: serve-tkn-cli-1-22-serve-tkn-cli +spec: + componentName: serve-tkn-cli + application: openshift-pipelines-cli-1-22 + build-nudges-ref: + - operator-1-22-bundle + source: + git: + url: https://github.com/openshift-pipelines/serve-tkn-cli.git + dockerfileUrl: .konflux/dockerfiles/serve-tkn-cli.Dockerfile + revision: release-v1.22.x diff --git a/.konflux/openshift-pipelines/openshift-pipelines-cli/1-22/serve-tkn-cli/image-serve-tkn-cli-1.22.yaml b/.konflux/openshift-pipelines/openshift-pipelines-cli/1-22/serve-tkn-cli/image-serve-tkn-cli-1.22.yaml new file mode 100644 index 00000000..9be6d5b7 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-cli/1-22/serve-tkn-cli/image-serve-tkn-cli-1.22.yaml @@ -0,0 +1,22 @@ +# Generated for Konflux Application openshift-pipelines-cli by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ImageRepository +metadata: + name: serve-tkn-cli-1-22-serve-tkn-cli + annotations: + image-controller.appstudio.redhat.com/update-component-image: "true" + image-controller.appstudio.redhat.com/skip-repository-deletion: "true" + labels: + appstudio.redhat.com/component: serve-tkn-cli-1-22-serve-tkn-cli + appstudio.redhat.com/application: openshift-pipelines-cli-1-22 +spec: + image: + name: serve-tkn-cli/pipelines-serve-tkn-cli-rhel9 + visibility: public + notifications: + - config: + url: https://bombino.api.redhat.com/v1/sbom/quay/push + event: repo_push + method: webhook + title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-cli/1-22/tektoncd-cli/component-tkn-1.22.yaml b/.konflux/openshift-pipelines/openshift-pipelines-cli/1-22/tektoncd-cli/component-tkn-1.22.yaml new file mode 100644 index 00000000..6e0cc5a7 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-cli/1-22/tektoncd-cli/component-tkn-1.22.yaml @@ -0,0 +1,18 @@ +# Generated for Konflux Application openshift-pipelines-cli by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Component +metadata: + annotations: + build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' + name: tektoncd-cli-1-22-tkn +spec: + componentName: tkn + application: openshift-pipelines-cli-1-22 + build-nudges-ref: + - operator-1-22-bundle + source: + git: + url: https://github.com/openshift-pipelines/tektoncd-cli.git + dockerfileUrl: .konflux/dockerfiles/tkn.Dockerfile + revision: release-v1.22.x diff --git a/.konflux/openshift-pipelines/openshift-pipelines-cli/1-22/tektoncd-cli/image-tkn-1.22.yaml b/.konflux/openshift-pipelines/openshift-pipelines-cli/1-22/tektoncd-cli/image-tkn-1.22.yaml new file mode 100644 index 00000000..59f88563 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-cli/1-22/tektoncd-cli/image-tkn-1.22.yaml @@ -0,0 +1,22 @@ +# Generated for Konflux Application openshift-pipelines-cli by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ImageRepository +metadata: + name: tektoncd-cli-1-22-tkn + annotations: + image-controller.appstudio.redhat.com/update-component-image: "true" + image-controller.appstudio.redhat.com/skip-repository-deletion: "true" + labels: + appstudio.redhat.com/component: tektoncd-cli-1-22-tkn + appstudio.redhat.com/application: openshift-pipelines-cli-1-22 +spec: + image: + name: pipelines-cli-tkn-rhel9 + visibility: public + notifications: + - config: + url: https://bombino.api.redhat.com/v1/sbom/quay/push + event: repo_push + method: webhook + title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-cli/1-22/tests.yaml b/.konflux/openshift-pipelines/openshift-pipelines-cli/1-22/tests.yaml new file mode 100644 index 00000000..f3930364 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-cli/1-22/tests.yaml @@ -0,0 +1,27 @@ +# Generated for Konflux Application openshift-pipelines-cli by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1beta2 +kind: IntegrationTestScenario +metadata: + name: openshift-pipelines-cli-1-22-enterprise-contract +spec: + application: openshift-pipelines-cli-1-22 + contexts: + - description: execute the integration test for a component + name: component + params: + - name: POLICY_CONFIGURATION + value: tekton-ecosystem-tenant/tekton-ecosystem-tenant-containers + - name: TIMEOUT + value: "15m0s" + - name: SINGLE_COMPONENT + value: "true" + resolverRef: + params: + - name: url + value: "https://github.com/konflux-ci/build-definitions" + - name: revision + value: main + - name: pathInRepo + value: pipelines/enterprise-contract.yaml + resolver: git diff --git a/.konflux/openshift-pipelines/openshift-pipelines-cli/next/application.yaml b/.konflux/openshift-pipelines/openshift-pipelines-cli/next/application.yaml new file mode 100644 index 00000000..1945e306 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-cli/next/application.yaml @@ -0,0 +1,8 @@ +# Generated for Konflux Application openshift-pipelines-cli by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Application +metadata: + name: openshift-pipelines-cli-next +spec: + displayName: openshift-pipelines-cli-next diff --git a/.konflux/openshift-pipelines/openshift-pipelines-cli/next/p12n-opc/component-opc-next.yaml b/.konflux/openshift-pipelines/openshift-pipelines-cli/next/p12n-opc/component-opc-next.yaml new file mode 100644 index 00000000..08a6146c --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-cli/next/p12n-opc/component-opc-next.yaml @@ -0,0 +1,18 @@ +# Generated for Konflux Application openshift-pipelines-cli by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Component +metadata: + annotations: + build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' + name: p12n-opc-next-opc +spec: + componentName: opc + application: openshift-pipelines-cli-next + build-nudges-ref: + - operator-next-bundle + source: + git: + url: https://github.com/openshift-pipelines/p12n-opc.git + dockerfileUrl: .konflux/dockerfiles/opc.Dockerfile + revision: next diff --git a/.konflux/openshift-pipelines/openshift-pipelines-cli/next/p12n-opc/image-opc-next.yaml b/.konflux/openshift-pipelines/openshift-pipelines-cli/next/p12n-opc/image-opc-next.yaml new file mode 100644 index 00000000..d138e707 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-cli/next/p12n-opc/image-opc-next.yaml @@ -0,0 +1,22 @@ +# Generated for Konflux Application openshift-pipelines-cli by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ImageRepository +metadata: + name: p12n-opc-next-opc + annotations: + image-controller.appstudio.redhat.com/update-component-image: "true" + image-controller.appstudio.redhat.com/skip-repository-deletion: "true" + labels: + appstudio.redhat.com/component: p12n-opc-next-opc + appstudio.redhat.com/application: openshift-pipelines-cli-next +spec: + image: + name: pipelines-opc-rhel9 + visibility: public + notifications: + - config: + url: https://bombino.api.redhat.com/v1/sbom/quay/push + event: repo_push + method: webhook + title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-cli/next/release-plan.yaml b/.konflux/openshift-pipelines/openshift-pipelines-cli/next/release-plan.yaml new file mode 100644 index 00000000..3d3347e8 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-cli/next/release-plan.yaml @@ -0,0 +1,28 @@ +# Generated for Konflux Application openshift-pipelines-cli by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ReleasePlan +metadata: + labels: + release.appstudio.openshift.io/auto-release: "true" + release.appstudio.openshift.io/standing-attribution: 'true' + name: openshift-pipelines-cli-next-rp +spec: + application: openshift-pipelines-cli-next + tenantPipeline: + serviceAccountName: release-registry-openshift-pipelines-cli + pipelineRef: + resolver: git + params: + - name: url + value: https://github.com/openshift-pipelines/hack.git + - name: revision + # value: next + value: main + - name: pathInRepo + value: pipelines/release-pipeline.yaml + params: + - name: release_version + value: "next" + - name: release_to_github + value: "false" diff --git a/.konflux/openshift-pipelines/openshift-pipelines-cli/next/serve-tkn-cli/component-serve-tkn-cli-next.yaml b/.konflux/openshift-pipelines/openshift-pipelines-cli/next/serve-tkn-cli/component-serve-tkn-cli-next.yaml new file mode 100644 index 00000000..02c700b0 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-cli/next/serve-tkn-cli/component-serve-tkn-cli-next.yaml @@ -0,0 +1,18 @@ +# Generated for Konflux Application openshift-pipelines-cli by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Component +metadata: + annotations: + build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' + name: serve-tkn-cli-next-serve-tkn-cli +spec: + componentName: serve-tkn-cli + application: openshift-pipelines-cli-next + build-nudges-ref: + - operator-next-bundle + source: + git: + url: https://github.com/openshift-pipelines/serve-tkn-cli.git + dockerfileUrl: .konflux/dockerfiles/serve-tkn-cli.Dockerfile + revision: next diff --git a/.konflux/openshift-pipelines/openshift-pipelines-cli/next/serve-tkn-cli/image-serve-tkn-cli-next.yaml b/.konflux/openshift-pipelines/openshift-pipelines-cli/next/serve-tkn-cli/image-serve-tkn-cli-next.yaml new file mode 100644 index 00000000..fa1cf5a4 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-cli/next/serve-tkn-cli/image-serve-tkn-cli-next.yaml @@ -0,0 +1,22 @@ +# Generated for Konflux Application openshift-pipelines-cli by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ImageRepository +metadata: + name: serve-tkn-cli-next-serve-tkn-cli + annotations: + image-controller.appstudio.redhat.com/update-component-image: "true" + image-controller.appstudio.redhat.com/skip-repository-deletion: "true" + labels: + appstudio.redhat.com/component: serve-tkn-cli-next-serve-tkn-cli + appstudio.redhat.com/application: openshift-pipelines-cli-next +spec: + image: + name: serve-tkn-cli/pipelines-serve-tkn-cli-rhel9 + visibility: public + notifications: + - config: + url: https://bombino.api.redhat.com/v1/sbom/quay/push + event: repo_push + method: webhook + title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-cli/next/tektoncd-cli/component-tkn-next.yaml b/.konflux/openshift-pipelines/openshift-pipelines-cli/next/tektoncd-cli/component-tkn-next.yaml new file mode 100644 index 00000000..1d579862 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-cli/next/tektoncd-cli/component-tkn-next.yaml @@ -0,0 +1,18 @@ +# Generated for Konflux Application openshift-pipelines-cli by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Component +metadata: + annotations: + build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' + name: tektoncd-cli-next-tkn +spec: + componentName: tkn + application: openshift-pipelines-cli-next + build-nudges-ref: + - operator-next-bundle + source: + git: + url: https://github.com/openshift-pipelines/tektoncd-cli.git + dockerfileUrl: .konflux/dockerfiles/tkn.Dockerfile + revision: next diff --git a/.konflux/openshift-pipelines/openshift-pipelines-cli/next/tektoncd-cli/image-tkn-next.yaml b/.konflux/openshift-pipelines/openshift-pipelines-cli/next/tektoncd-cli/image-tkn-next.yaml new file mode 100644 index 00000000..2c2619da --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-cli/next/tektoncd-cli/image-tkn-next.yaml @@ -0,0 +1,22 @@ +# Generated for Konflux Application openshift-pipelines-cli by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ImageRepository +metadata: + name: tektoncd-cli-next-tkn + annotations: + image-controller.appstudio.redhat.com/update-component-image: "true" + image-controller.appstudio.redhat.com/skip-repository-deletion: "true" + labels: + appstudio.redhat.com/component: tektoncd-cli-next-tkn + appstudio.redhat.com/application: openshift-pipelines-cli-next +spec: + image: + name: pipelines-cli-tkn-rhel9 + visibility: public + notifications: + - config: + url: https://bombino.api.redhat.com/v1/sbom/quay/push + event: repo_push + method: webhook + title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-cli/next/tests.yaml b/.konflux/openshift-pipelines/openshift-pipelines-cli/next/tests.yaml new file mode 100644 index 00000000..773709a8 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-cli/next/tests.yaml @@ -0,0 +1,27 @@ +# Generated for Konflux Application openshift-pipelines-cli by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1beta2 +kind: IntegrationTestScenario +metadata: + name: openshift-pipelines-cli-next-enterprise-contract +spec: + application: openshift-pipelines-cli-next + contexts: + - description: execute the integration test for a component + name: component + params: + - name: POLICY_CONFIGURATION + value: tekton-ecosystem-tenant/tekton-ecosystem-tenant-containers + - name: TIMEOUT + value: "15m0s" + - name: SINGLE_COMPONENT + value: "true" + resolverRef: + params: + - name: url + value: "https://github.com/konflux-ci/build-definitions" + - name: revision + value: main + - name: pathInRepo + value: pipelines/enterprise-contract.yaml + resolver: git diff --git a/.konflux/openshift-pipelines/openshift-pipelines-cli/role.yaml b/.konflux/openshift-pipelines/openshift-pipelines-cli/role.yaml new file mode 100644 index 00000000..641db9e8 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-cli/role.yaml @@ -0,0 +1,14 @@ +# Generated for Konflux Application openshift-pipelines-cli by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: RoleBinding +metadata: + name: release-plan-rolebinding-openshift-pipelines-cli +subjects: + - kind: ServiceAccount + name: release-registry-openshift-pipelines-cli + apiGroup: "" +roleRef: + kind: ClusterRole + name: konflux-releaser-bot-actions + apiGroup: rbac.authorization.k8s.io \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-cli/service-account.yaml b/.konflux/openshift-pipelines/openshift-pipelines-cli/service-account.yaml new file mode 100644 index 00000000..3258493c --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-cli/service-account.yaml @@ -0,0 +1,10 @@ +# Generated for Konflux Application openshift-pipelines-cli by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: v1 +imagePullSecrets: + - name: release-registry-openshift-pipelines-quay +kind: ServiceAccount +metadata: + name: release-registry-openshift-pipelines-cli +secrets: + - name: release-registry-openshift-pipelines-quay \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/console-plugin/component-console-plugin-1.22.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/console-plugin/component-console-plugin-1.22.yaml new file mode 100644 index 00000000..21162e18 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/console-plugin/component-console-plugin-1.22.yaml @@ -0,0 +1,18 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Component +metadata: + annotations: + build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' + name: console-plugin-1-22-console-plugin +spec: + componentName: console-plugin + application: openshift-pipelines-core-1-22 + build-nudges-ref: + - operator-1-22-bundle + source: + git: + url: https://github.com/openshift-pipelines/console-plugin.git + dockerfileUrl: .konflux/dockerfiles/console-plugin.Dockerfile + revision: release-v1.22.x diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/console-plugin/image-console-plugin-1.22.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/console-plugin/image-console-plugin-1.22.yaml new file mode 100644 index 00000000..31c1223b --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/console-plugin/image-console-plugin-1.22.yaml @@ -0,0 +1,22 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ImageRepository +metadata: + name: console-plugin-1-22-console-plugin + annotations: + image-controller.appstudio.redhat.com/update-component-image: "true" + image-controller.appstudio.redhat.com/skip-repository-deletion: "true" + labels: + appstudio.redhat.com/component: console-plugin-1-22-console-plugin + appstudio.redhat.com/application: openshift-pipelines-core-1-22 +spec: + image: + name: console-plugin/pipelines-console-plugin-rhel9 + visibility: public + notifications: + - config: + url: https://bombino.api.redhat.com/v1/sbom/quay/push + event: repo_push + method: webhook + title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/p12n-manual-approval-gate/component-controller-1.22.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/p12n-manual-approval-gate/component-controller-1.22.yaml new file mode 100644 index 00000000..c31b6974 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/p12n-manual-approval-gate/component-controller-1.22.yaml @@ -0,0 +1,18 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Component +metadata: + annotations: + build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' + name: p12n-manual-approval-gate-1-22-controller +spec: + componentName: controller + application: openshift-pipelines-core-1-22 + build-nudges-ref: + - operator-1-22-bundle + source: + git: + url: https://github.com/openshift-pipelines/p12n-manual-approval-gate.git + dockerfileUrl: .konflux/dockerfiles/controller.Dockerfile + revision: release-v1.22.x diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/p12n-manual-approval-gate/component-webhook-1.22.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/p12n-manual-approval-gate/component-webhook-1.22.yaml new file mode 100644 index 00000000..80556fac --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/p12n-manual-approval-gate/component-webhook-1.22.yaml @@ -0,0 +1,18 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Component +metadata: + annotations: + build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' + name: p12n-manual-approval-gate-1-22-webhook +spec: + componentName: webhook + application: openshift-pipelines-core-1-22 + build-nudges-ref: + - operator-1-22-bundle + source: + git: + url: https://github.com/openshift-pipelines/p12n-manual-approval-gate.git + dockerfileUrl: .konflux/dockerfiles/webhook.Dockerfile + revision: release-v1.22.x diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/p12n-manual-approval-gate/image-controller-1.22.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/p12n-manual-approval-gate/image-controller-1.22.yaml new file mode 100644 index 00000000..a7ebc424 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/p12n-manual-approval-gate/image-controller-1.22.yaml @@ -0,0 +1,22 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ImageRepository +metadata: + name: p12n-manual-approval-gate-1-22-controller + annotations: + image-controller.appstudio.redhat.com/update-component-image: "true" + image-controller.appstudio.redhat.com/skip-repository-deletion: "true" + labels: + appstudio.redhat.com/component: p12n-manual-approval-gate-1-22-controller + appstudio.redhat.com/application: openshift-pipelines-core-1-22 +spec: + image: + name: pipelines-manual-approval-gate-controller-rhel9 + visibility: public + notifications: + - config: + url: https://bombino.api.redhat.com/v1/sbom/quay/push + event: repo_push + method: webhook + title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/p12n-manual-approval-gate/image-webhook-1.22.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/p12n-manual-approval-gate/image-webhook-1.22.yaml new file mode 100644 index 00000000..c130a2ad --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/p12n-manual-approval-gate/image-webhook-1.22.yaml @@ -0,0 +1,22 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ImageRepository +metadata: + name: p12n-manual-approval-gate-1-22-webhook + annotations: + image-controller.appstudio.redhat.com/update-component-image: "true" + image-controller.appstudio.redhat.com/skip-repository-deletion: "true" + labels: + appstudio.redhat.com/component: p12n-manual-approval-gate-1-22-webhook + appstudio.redhat.com/application: openshift-pipelines-core-1-22 +spec: + image: + name: pipelines-manual-approval-gate-webhook-rhel9 + visibility: public + notifications: + - config: + url: https://bombino.api.redhat.com/v1/sbom/quay/push + event: repo_push + method: webhook + title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/p12n-tekton-assist/component-tekton-assist-1.22.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/p12n-tekton-assist/component-tekton-assist-1.22.yaml new file mode 100644 index 00000000..f3d8bbc1 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/p12n-tekton-assist/component-tekton-assist-1.22.yaml @@ -0,0 +1,18 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Component +metadata: + annotations: + build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' + name: p12n-tekton-assist-1-22-tekton-assist +spec: + componentName: tekton-assist + application: openshift-pipelines-core-1-22 + build-nudges-ref: + - operator-1-22-bundle + source: + git: + url: https://github.com/openshift-pipelines/p12n-tekton-assist.git + dockerfileUrl: .konflux/dockerfiles/tekton-assist.Dockerfile + revision: release-v1.22.x diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/p12n-tekton-assist/image-tekton-assist-1.22.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/p12n-tekton-assist/image-tekton-assist-1.22.yaml new file mode 100644 index 00000000..f43928ff --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/p12n-tekton-assist/image-tekton-assist-1.22.yaml @@ -0,0 +1,22 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ImageRepository +metadata: + name: p12n-tekton-assist-1-22-tekton-assist + annotations: + image-controller.appstudio.redhat.com/update-component-image: "true" + image-controller.appstudio.redhat.com/skip-repository-deletion: "true" + labels: + appstudio.redhat.com/component: p12n-tekton-assist-1-22-tekton-assist + appstudio.redhat.com/application: openshift-pipelines-core-1-22 +spec: + image: + name: pipelines-tekton-assist-rhel9 + visibility: public + notifications: + - config: + url: https://bombino.api.redhat.com/v1/sbom/quay/push + event: repo_push + method: webhook + title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/p12n-tekton-caches/component-cache-1.22.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/p12n-tekton-caches/component-cache-1.22.yaml new file mode 100644 index 00000000..0a29142b --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/p12n-tekton-caches/component-cache-1.22.yaml @@ -0,0 +1,18 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Component +metadata: + annotations: + build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' + name: p12n-tekton-caches-1-22-cache +spec: + componentName: cache + application: openshift-pipelines-core-1-22 + build-nudges-ref: + - operator-1-22-bundle + source: + git: + url: https://github.com/openshift-pipelines/p12n-tekton-caches.git + dockerfileUrl: .konflux/dockerfiles/cache.Dockerfile + revision: release-v1.22.x diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/p12n-tekton-caches/image-cache-1.22.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/p12n-tekton-caches/image-cache-1.22.yaml new file mode 100644 index 00000000..15fa889f --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/p12n-tekton-caches/image-cache-1.22.yaml @@ -0,0 +1,22 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ImageRepository +metadata: + name: p12n-tekton-caches-1-22-cache + annotations: + image-controller.appstudio.redhat.com/update-component-image: "true" + image-controller.appstudio.redhat.com/skip-repository-deletion: "true" + labels: + appstudio.redhat.com/component: p12n-tekton-caches-1-22-cache + appstudio.redhat.com/application: openshift-pipelines-core-1-22 +spec: + image: + name: pipelines-cache-rhel9 + visibility: public + notifications: + - config: + url: https://bombino.api.redhat.com/v1/sbom/quay/push + event: repo_push + method: webhook + title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/pac-downstream/component-cli-1.22.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/pac-downstream/component-cli-1.22.yaml new file mode 100644 index 00000000..b7636a04 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/pac-downstream/component-cli-1.22.yaml @@ -0,0 +1,19 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Component +metadata: + annotations: + build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' + name: pac-downstream-1-22-cli +spec: + componentName: cli + application: openshift-pipelines-core-1-22 + build-nudges-ref: + - operator-1-22-bundle + - tektoncd-cli-1-22-tkn + source: + git: + url: https://github.com/openshift-pipelines/pac-downstream.git + dockerfileUrl: .konflux/dockerfiles/cli.Dockerfile + revision: release-v1.22.x diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/pac-downstream/component-controller-1.22.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/pac-downstream/component-controller-1.22.yaml new file mode 100644 index 00000000..a6586722 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/pac-downstream/component-controller-1.22.yaml @@ -0,0 +1,18 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Component +metadata: + annotations: + build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' + name: pac-downstream-1-22-controller +spec: + componentName: controller + application: openshift-pipelines-core-1-22 + build-nudges-ref: + - operator-1-22-bundle + source: + git: + url: https://github.com/openshift-pipelines/pac-downstream.git + dockerfileUrl: .konflux/dockerfiles/controller.Dockerfile + revision: release-v1.22.x diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/pac-downstream/component-watcher-1.22.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/pac-downstream/component-watcher-1.22.yaml new file mode 100644 index 00000000..878561fb --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/pac-downstream/component-watcher-1.22.yaml @@ -0,0 +1,18 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Component +metadata: + annotations: + build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' + name: pac-downstream-1-22-watcher +spec: + componentName: watcher + application: openshift-pipelines-core-1-22 + build-nudges-ref: + - operator-1-22-bundle + source: + git: + url: https://github.com/openshift-pipelines/pac-downstream.git + dockerfileUrl: .konflux/dockerfiles/watcher.Dockerfile + revision: release-v1.22.x diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/pac-downstream/component-webhook-1.22.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/pac-downstream/component-webhook-1.22.yaml new file mode 100644 index 00000000..24166273 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/pac-downstream/component-webhook-1.22.yaml @@ -0,0 +1,18 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Component +metadata: + annotations: + build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' + name: pac-downstream-1-22-webhook +spec: + componentName: webhook + application: openshift-pipelines-core-1-22 + build-nudges-ref: + - operator-1-22-bundle + source: + git: + url: https://github.com/openshift-pipelines/pac-downstream.git + dockerfileUrl: .konflux/dockerfiles/webhook.Dockerfile + revision: release-v1.22.x diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/pac-downstream/image-cli-1.22.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/pac-downstream/image-cli-1.22.yaml new file mode 100644 index 00000000..177df891 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/pac-downstream/image-cli-1.22.yaml @@ -0,0 +1,22 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ImageRepository +metadata: + name: pac-downstream-1-22-cli + annotations: + image-controller.appstudio.redhat.com/update-component-image: "true" + image-controller.appstudio.redhat.com/skip-repository-deletion: "true" + labels: + appstudio.redhat.com/component: pac-downstream-1-22-cli + appstudio.redhat.com/application: openshift-pipelines-core-1-22 +spec: + image: + name: pipelines-pipelines-as-code-cli-rhel9 + visibility: public + notifications: + - config: + url: https://bombino.api.redhat.com/v1/sbom/quay/push + event: repo_push + method: webhook + title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/pac-downstream/image-controller-1.22.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/pac-downstream/image-controller-1.22.yaml new file mode 100644 index 00000000..db4855c8 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/pac-downstream/image-controller-1.22.yaml @@ -0,0 +1,22 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ImageRepository +metadata: + name: pac-downstream-1-22-controller + annotations: + image-controller.appstudio.redhat.com/update-component-image: "true" + image-controller.appstudio.redhat.com/skip-repository-deletion: "true" + labels: + appstudio.redhat.com/component: pac-downstream-1-22-controller + appstudio.redhat.com/application: openshift-pipelines-core-1-22 +spec: + image: + name: pipelines-pipelines-as-code-controller-rhel9 + visibility: public + notifications: + - config: + url: https://bombino.api.redhat.com/v1/sbom/quay/push + event: repo_push + method: webhook + title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/pac-downstream/image-watcher-1.22.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/pac-downstream/image-watcher-1.22.yaml new file mode 100644 index 00000000..24644751 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/pac-downstream/image-watcher-1.22.yaml @@ -0,0 +1,22 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ImageRepository +metadata: + name: pac-downstream-1-22-watcher + annotations: + image-controller.appstudio.redhat.com/update-component-image: "true" + image-controller.appstudio.redhat.com/skip-repository-deletion: "true" + labels: + appstudio.redhat.com/component: pac-downstream-1-22-watcher + appstudio.redhat.com/application: openshift-pipelines-core-1-22 +spec: + image: + name: pipelines-pipelines-as-code-watcher-rhel9 + visibility: public + notifications: + - config: + url: https://bombino.api.redhat.com/v1/sbom/quay/push + event: repo_push + method: webhook + title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/pac-downstream/image-webhook-1.22.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/pac-downstream/image-webhook-1.22.yaml new file mode 100644 index 00000000..98bf878c --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/pac-downstream/image-webhook-1.22.yaml @@ -0,0 +1,22 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ImageRepository +metadata: + name: pac-downstream-1-22-webhook + annotations: + image-controller.appstudio.redhat.com/update-component-image: "true" + image-controller.appstudio.redhat.com/skip-repository-deletion: "true" + labels: + appstudio.redhat.com/component: pac-downstream-1-22-webhook + appstudio.redhat.com/application: openshift-pipelines-core-1-22 +spec: + image: + name: pipelines-pipelines-as-code-webhook-rhel9 + visibility: public + notifications: + - config: + url: https://bombino.api.redhat.com/v1/sbom/quay/push + event: repo_push + method: webhook + title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-git-clone/component-git-init-1.22.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-git-clone/component-git-init-1.22.yaml new file mode 100644 index 00000000..9a385bf3 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-git-clone/component-git-init-1.22.yaml @@ -0,0 +1,18 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Component +metadata: + annotations: + build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' + name: tektoncd-git-clone-1-22-git-init +spec: + componentName: git-init + application: openshift-pipelines-core-1-22 + build-nudges-ref: + - operator-1-22-bundle + source: + git: + url: https://github.com/openshift-pipelines/tektoncd-git-clone.git + dockerfileUrl: .konflux/dockerfiles/git-init.Dockerfile + revision: release-v1.22.x diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-git-clone/image-git-init-1.22.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-git-clone/image-git-init-1.22.yaml new file mode 100644 index 00000000..f82aec2f --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/1-22/tektoncd-git-clone/image-git-init-1.22.yaml @@ -0,0 +1,22 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ImageRepository +metadata: + name: tektoncd-git-clone-1-22-git-init + annotations: + image-controller.appstudio.redhat.com/update-component-image: "true" + image-controller.appstudio.redhat.com/skip-repository-deletion: "true" + labels: + appstudio.redhat.com/component: tektoncd-git-clone-1-22-git-init + appstudio.redhat.com/application: openshift-pipelines-core-1-22 +spec: + image: + name: git-init-rhel9 + visibility: public + notifications: + - config: + url: https://bombino.api.redhat.com/v1/sbom/quay/push + event: repo_push + method: webhook + title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/next/application.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/next/application.yaml new file mode 100644 index 00000000..2a2ff4d5 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/next/application.yaml @@ -0,0 +1,8 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Application +metadata: + name: openshift-pipelines-core-next +spec: + displayName: openshift-pipelines-core-next diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/next/console-plugin/component-console-plugin-next.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/next/console-plugin/component-console-plugin-next.yaml new file mode 100644 index 00000000..ff18e2c6 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/next/console-plugin/component-console-plugin-next.yaml @@ -0,0 +1,18 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Component +metadata: + annotations: + build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' + name: console-plugin-next-console-plugin +spec: + componentName: console-plugin + application: openshift-pipelines-core-next + build-nudges-ref: + - operator-next-bundle + source: + git: + url: https://github.com/openshift-pipelines/console-plugin.git + dockerfileUrl: .konflux/dockerfiles/console-plugin.Dockerfile + revision: next diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/next/console-plugin/image-console-plugin-next.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/next/console-plugin/image-console-plugin-next.yaml new file mode 100644 index 00000000..578c39ea --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/next/console-plugin/image-console-plugin-next.yaml @@ -0,0 +1,22 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ImageRepository +metadata: + name: console-plugin-next-console-plugin + annotations: + image-controller.appstudio.redhat.com/update-component-image: "true" + image-controller.appstudio.redhat.com/skip-repository-deletion: "true" + labels: + appstudio.redhat.com/component: console-plugin-next-console-plugin + appstudio.redhat.com/application: openshift-pipelines-core-next +spec: + image: + name: console-plugin/pipelines-console-plugin-rhel9 + visibility: public + notifications: + - config: + url: https://bombino.api.redhat.com/v1/sbom/quay/push + event: repo_push + method: webhook + title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/next/p12n-manual-approval-gate/component-controller-next.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/next/p12n-manual-approval-gate/component-controller-next.yaml new file mode 100644 index 00000000..a145de39 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/next/p12n-manual-approval-gate/component-controller-next.yaml @@ -0,0 +1,18 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Component +metadata: + annotations: + build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' + name: p12n-manual-approval-gate-next-controller +spec: + componentName: controller + application: openshift-pipelines-core-next + build-nudges-ref: + - operator-next-bundle + source: + git: + url: https://github.com/openshift-pipelines/p12n-manual-approval-gate.git + dockerfileUrl: .konflux/dockerfiles/controller.Dockerfile + revision: next diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/next/p12n-manual-approval-gate/component-webhook-next.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/next/p12n-manual-approval-gate/component-webhook-next.yaml new file mode 100644 index 00000000..b7a4861b --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/next/p12n-manual-approval-gate/component-webhook-next.yaml @@ -0,0 +1,18 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Component +metadata: + annotations: + build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' + name: p12n-manual-approval-gate-next-webhook +spec: + componentName: webhook + application: openshift-pipelines-core-next + build-nudges-ref: + - operator-next-bundle + source: + git: + url: https://github.com/openshift-pipelines/p12n-manual-approval-gate.git + dockerfileUrl: .konflux/dockerfiles/webhook.Dockerfile + revision: next diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/next/p12n-manual-approval-gate/image-controller-next.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/next/p12n-manual-approval-gate/image-controller-next.yaml new file mode 100644 index 00000000..5cc0aa7d --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/next/p12n-manual-approval-gate/image-controller-next.yaml @@ -0,0 +1,22 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ImageRepository +metadata: + name: p12n-manual-approval-gate-next-controller + annotations: + image-controller.appstudio.redhat.com/update-component-image: "true" + image-controller.appstudio.redhat.com/skip-repository-deletion: "true" + labels: + appstudio.redhat.com/component: p12n-manual-approval-gate-next-controller + appstudio.redhat.com/application: openshift-pipelines-core-next +spec: + image: + name: pipelines-manual-approval-gate-controller-rhel9 + visibility: public + notifications: + - config: + url: https://bombino.api.redhat.com/v1/sbom/quay/push + event: repo_push + method: webhook + title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/next/p12n-manual-approval-gate/image-webhook-next.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/next/p12n-manual-approval-gate/image-webhook-next.yaml new file mode 100644 index 00000000..413bc126 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/next/p12n-manual-approval-gate/image-webhook-next.yaml @@ -0,0 +1,22 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ImageRepository +metadata: + name: p12n-manual-approval-gate-next-webhook + annotations: + image-controller.appstudio.redhat.com/update-component-image: "true" + image-controller.appstudio.redhat.com/skip-repository-deletion: "true" + labels: + appstudio.redhat.com/component: p12n-manual-approval-gate-next-webhook + appstudio.redhat.com/application: openshift-pipelines-core-next +spec: + image: + name: pipelines-manual-approval-gate-webhook-rhel9 + visibility: public + notifications: + - config: + url: https://bombino.api.redhat.com/v1/sbom/quay/push + event: repo_push + method: webhook + title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/next/p12n-multicluster-proxy-aae/component-proxy-server-next.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/next/p12n-multicluster-proxy-aae/component-proxy-server-next.yaml new file mode 100644 index 00000000..3d7533c7 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/next/p12n-multicluster-proxy-aae/component-proxy-server-next.yaml @@ -0,0 +1,18 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Component +metadata: + annotations: + build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' + name: p12n-multicluster-proxy-aae-next-proxy-server +spec: + componentName: proxy-server + application: openshift-pipelines-core-next + build-nudges-ref: + - operator-next-bundle + source: + git: + url: https://github.com/openshift-pipelines/p12n-multicluster-proxy-aae.git + dockerfileUrl: .konflux/dockerfiles/proxy-server.Dockerfile + revision: next diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/next/p12n-multicluster-proxy-aae/image-proxy-server-next.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/next/p12n-multicluster-proxy-aae/image-proxy-server-next.yaml new file mode 100644 index 00000000..485c01f7 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/next/p12n-multicluster-proxy-aae/image-proxy-server-next.yaml @@ -0,0 +1,22 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ImageRepository +metadata: + name: p12n-multicluster-proxy-aae-next-proxy-server + annotations: + image-controller.appstudio.redhat.com/update-component-image: "true" + image-controller.appstudio.redhat.com/skip-repository-deletion: "true" + labels: + appstudio.redhat.com/component: p12n-multicluster-proxy-aae-next-proxy-server + appstudio.redhat.com/application: openshift-pipelines-core-next +spec: + image: + name: pipelines-multicluster-proxy-aae-proxy-server-rhel9 + visibility: public + notifications: + - config: + url: https://bombino.api.redhat.com/v1/sbom/quay/push + event: repo_push + method: webhook + title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/next/p12n-syncer-service/component-controller-next.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/next/p12n-syncer-service/component-controller-next.yaml new file mode 100644 index 00000000..a9f526f2 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/next/p12n-syncer-service/component-controller-next.yaml @@ -0,0 +1,18 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Component +metadata: + annotations: + build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' + name: p12n-syncer-service-next-controller +spec: + componentName: controller + application: openshift-pipelines-core-next + build-nudges-ref: + - operator-next-bundle + source: + git: + url: https://github.com/openshift-pipelines/p12n-syncer-service.git + dockerfileUrl: .konflux/dockerfiles/controller.Dockerfile + revision: next diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/next/p12n-syncer-service/image-controller-next.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/next/p12n-syncer-service/image-controller-next.yaml new file mode 100644 index 00000000..33b0922b --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/next/p12n-syncer-service/image-controller-next.yaml @@ -0,0 +1,22 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ImageRepository +metadata: + name: p12n-syncer-service-next-controller + annotations: + image-controller.appstudio.redhat.com/update-component-image: "true" + image-controller.appstudio.redhat.com/skip-repository-deletion: "true" + labels: + appstudio.redhat.com/component: p12n-syncer-service-next-controller + appstudio.redhat.com/application: openshift-pipelines-core-next +spec: + image: + name: pipelines-syncer-service-controller-rhel9 + visibility: public + notifications: + - config: + url: https://bombino.api.redhat.com/v1/sbom/quay/push + event: repo_push + method: webhook + title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/next/p12n-tekton-assist/component-tekton-assist-next.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/next/p12n-tekton-assist/component-tekton-assist-next.yaml new file mode 100644 index 00000000..3f6214f1 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/next/p12n-tekton-assist/component-tekton-assist-next.yaml @@ -0,0 +1,18 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Component +metadata: + annotations: + build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' + name: p12n-tekton-assist-next-tekton-assist +spec: + componentName: tekton-assist + application: openshift-pipelines-core-next + build-nudges-ref: + - operator-next-bundle + source: + git: + url: https://github.com/openshift-pipelines/p12n-tekton-assist.git + dockerfileUrl: .konflux/dockerfiles/tekton-assist.Dockerfile + revision: next diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/next/p12n-tekton-assist/image-tekton-assist-next.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/next/p12n-tekton-assist/image-tekton-assist-next.yaml new file mode 100644 index 00000000..683e8ce4 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/next/p12n-tekton-assist/image-tekton-assist-next.yaml @@ -0,0 +1,22 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ImageRepository +metadata: + name: p12n-tekton-assist-next-tekton-assist + annotations: + image-controller.appstudio.redhat.com/update-component-image: "true" + image-controller.appstudio.redhat.com/skip-repository-deletion: "true" + labels: + appstudio.redhat.com/component: p12n-tekton-assist-next-tekton-assist + appstudio.redhat.com/application: openshift-pipelines-core-next +spec: + image: + name: pipelines-tekton-assist-rhel9 + visibility: public + notifications: + - config: + url: https://bombino.api.redhat.com/v1/sbom/quay/push + event: repo_push + method: webhook + title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/next/p12n-tekton-caches/component-cache-next.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/next/p12n-tekton-caches/component-cache-next.yaml new file mode 100644 index 00000000..6849bd18 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/next/p12n-tekton-caches/component-cache-next.yaml @@ -0,0 +1,18 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Component +metadata: + annotations: + build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' + name: p12n-tekton-caches-next-cache +spec: + componentName: cache + application: openshift-pipelines-core-next + build-nudges-ref: + - operator-next-bundle + source: + git: + url: https://github.com/openshift-pipelines/p12n-tekton-caches.git + dockerfileUrl: .konflux/dockerfiles/cache.Dockerfile + revision: next diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/next/p12n-tekton-caches/image-cache-next.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/next/p12n-tekton-caches/image-cache-next.yaml new file mode 100644 index 00000000..93ade833 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/next/p12n-tekton-caches/image-cache-next.yaml @@ -0,0 +1,22 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ImageRepository +metadata: + name: p12n-tekton-caches-next-cache + annotations: + image-controller.appstudio.redhat.com/update-component-image: "true" + image-controller.appstudio.redhat.com/skip-repository-deletion: "true" + labels: + appstudio.redhat.com/component: p12n-tekton-caches-next-cache + appstudio.redhat.com/application: openshift-pipelines-core-next +spec: + image: + name: pipelines-cache-rhel9 + visibility: public + notifications: + - config: + url: https://bombino.api.redhat.com/v1/sbom/quay/push + event: repo_push + method: webhook + title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/next/pac-downstream/component-cli-next.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/next/pac-downstream/component-cli-next.yaml new file mode 100644 index 00000000..f6ef4808 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/next/pac-downstream/component-cli-next.yaml @@ -0,0 +1,19 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Component +metadata: + annotations: + build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' + name: pac-downstream-next-cli +spec: + componentName: cli + application: openshift-pipelines-core-next + build-nudges-ref: + - operator-next-bundle + - tektoncd-cli-next-tkn + source: + git: + url: https://github.com/openshift-pipelines/pac-downstream.git + dockerfileUrl: .konflux/dockerfiles/cli.Dockerfile + revision: next diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/next/pac-downstream/component-controller-next.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/next/pac-downstream/component-controller-next.yaml new file mode 100644 index 00000000..2e14f65b --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/next/pac-downstream/component-controller-next.yaml @@ -0,0 +1,18 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Component +metadata: + annotations: + build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' + name: pac-downstream-next-controller +spec: + componentName: controller + application: openshift-pipelines-core-next + build-nudges-ref: + - operator-next-bundle + source: + git: + url: https://github.com/openshift-pipelines/pac-downstream.git + dockerfileUrl: .konflux/dockerfiles/controller.Dockerfile + revision: next diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/next/pac-downstream/component-watcher-next.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/next/pac-downstream/component-watcher-next.yaml new file mode 100644 index 00000000..5ccdbd0c --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/next/pac-downstream/component-watcher-next.yaml @@ -0,0 +1,18 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Component +metadata: + annotations: + build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' + name: pac-downstream-next-watcher +spec: + componentName: watcher + application: openshift-pipelines-core-next + build-nudges-ref: + - operator-next-bundle + source: + git: + url: https://github.com/openshift-pipelines/pac-downstream.git + dockerfileUrl: .konflux/dockerfiles/watcher.Dockerfile + revision: next diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/next/pac-downstream/component-webhook-next.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/next/pac-downstream/component-webhook-next.yaml new file mode 100644 index 00000000..86e700ca --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/next/pac-downstream/component-webhook-next.yaml @@ -0,0 +1,18 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Component +metadata: + annotations: + build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' + name: pac-downstream-next-webhook +spec: + componentName: webhook + application: openshift-pipelines-core-next + build-nudges-ref: + - operator-next-bundle + source: + git: + url: https://github.com/openshift-pipelines/pac-downstream.git + dockerfileUrl: .konflux/dockerfiles/webhook.Dockerfile + revision: next diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/next/pac-downstream/image-cli-next.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/next/pac-downstream/image-cli-next.yaml new file mode 100644 index 00000000..b87f49e7 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/next/pac-downstream/image-cli-next.yaml @@ -0,0 +1,22 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ImageRepository +metadata: + name: pac-downstream-next-cli + annotations: + image-controller.appstudio.redhat.com/update-component-image: "true" + image-controller.appstudio.redhat.com/skip-repository-deletion: "true" + labels: + appstudio.redhat.com/component: pac-downstream-next-cli + appstudio.redhat.com/application: openshift-pipelines-core-next +spec: + image: + name: pipelines-pipelines-as-code-cli-rhel9 + visibility: public + notifications: + - config: + url: https://bombino.api.redhat.com/v1/sbom/quay/push + event: repo_push + method: webhook + title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/next/pac-downstream/image-controller-next.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/next/pac-downstream/image-controller-next.yaml new file mode 100644 index 00000000..75fba2c7 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/next/pac-downstream/image-controller-next.yaml @@ -0,0 +1,22 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ImageRepository +metadata: + name: pac-downstream-next-controller + annotations: + image-controller.appstudio.redhat.com/update-component-image: "true" + image-controller.appstudio.redhat.com/skip-repository-deletion: "true" + labels: + appstudio.redhat.com/component: pac-downstream-next-controller + appstudio.redhat.com/application: openshift-pipelines-core-next +spec: + image: + name: pipelines-pipelines-as-code-controller-rhel9 + visibility: public + notifications: + - config: + url: https://bombino.api.redhat.com/v1/sbom/quay/push + event: repo_push + method: webhook + title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/next/pac-downstream/image-watcher-next.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/next/pac-downstream/image-watcher-next.yaml new file mode 100644 index 00000000..f0134ee4 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/next/pac-downstream/image-watcher-next.yaml @@ -0,0 +1,22 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ImageRepository +metadata: + name: pac-downstream-next-watcher + annotations: + image-controller.appstudio.redhat.com/update-component-image: "true" + image-controller.appstudio.redhat.com/skip-repository-deletion: "true" + labels: + appstudio.redhat.com/component: pac-downstream-next-watcher + appstudio.redhat.com/application: openshift-pipelines-core-next +spec: + image: + name: pipelines-pipelines-as-code-watcher-rhel9 + visibility: public + notifications: + - config: + url: https://bombino.api.redhat.com/v1/sbom/quay/push + event: repo_push + method: webhook + title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/next/pac-downstream/image-webhook-next.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/next/pac-downstream/image-webhook-next.yaml new file mode 100644 index 00000000..a9136579 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/next/pac-downstream/image-webhook-next.yaml @@ -0,0 +1,22 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ImageRepository +metadata: + name: pac-downstream-next-webhook + annotations: + image-controller.appstudio.redhat.com/update-component-image: "true" + image-controller.appstudio.redhat.com/skip-repository-deletion: "true" + labels: + appstudio.redhat.com/component: pac-downstream-next-webhook + appstudio.redhat.com/application: openshift-pipelines-core-next +spec: + image: + name: pipelines-pipelines-as-code-webhook-rhel9 + visibility: public + notifications: + - config: + url: https://bombino.api.redhat.com/v1/sbom/quay/push + event: repo_push + method: webhook + title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/next/release-plan.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/next/release-plan.yaml new file mode 100644 index 00000000..c85c4731 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/next/release-plan.yaml @@ -0,0 +1,28 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ReleasePlan +metadata: + labels: + release.appstudio.openshift.io/auto-release: "true" + release.appstudio.openshift.io/standing-attribution: 'true' + name: openshift-pipelines-core-next-rp +spec: + application: openshift-pipelines-core-next + tenantPipeline: + serviceAccountName: release-registry-openshift-pipelines-core + pipelineRef: + resolver: git + params: + - name: url + value: https://github.com/openshift-pipelines/hack.git + - name: revision + # value: next + value: main + - name: pathInRepo + value: pipelines/release-pipeline.yaml + params: + - name: release_version + value: "next" + - name: release_to_github + value: "false" diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/next/tekton-kueue/component-scheduler-next.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/next/tekton-kueue/component-scheduler-next.yaml new file mode 100644 index 00000000..c5b56d8a --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/next/tekton-kueue/component-scheduler-next.yaml @@ -0,0 +1,18 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Component +metadata: + annotations: + build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' + name: tekton-kueue-next-scheduler +spec: + componentName: scheduler + application: openshift-pipelines-core-next + build-nudges-ref: + - operator-next-bundle + source: + git: + url: https://github.com/openshift-pipelines/tekton-kueue.git + dockerfileUrl: .konflux/dockerfiles/scheduler.Dockerfile + revision: next diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/next/tekton-kueue/image-scheduler-next.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/next/tekton-kueue/image-scheduler-next.yaml new file mode 100644 index 00000000..4a17464e --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/next/tekton-kueue/image-scheduler-next.yaml @@ -0,0 +1,22 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ImageRepository +metadata: + name: tekton-kueue-next-scheduler + annotations: + image-controller.appstudio.redhat.com/update-component-image: "true" + image-controller.appstudio.redhat.com/skip-repository-deletion: "true" + labels: + appstudio.redhat.com/component: tekton-kueue-next-scheduler + appstudio.redhat.com/application: openshift-pipelines-core-next +spec: + image: + name: pipelines-scheduler-rhel9 + visibility: public + notifications: + - config: + url: https://bombino.api.redhat.com/v1/sbom/quay/push + event: repo_push + method: webhook + title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-chains/component-controller-next.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-chains/component-controller-next.yaml new file mode 100644 index 00000000..acfda9b9 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-chains/component-controller-next.yaml @@ -0,0 +1,18 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Component +metadata: + annotations: + build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' + name: tektoncd-chains-next-controller +spec: + componentName: controller + application: openshift-pipelines-core-next + build-nudges-ref: + - operator-next-bundle + source: + git: + url: https://github.com/openshift-pipelines/tektoncd-chains.git + dockerfileUrl: .konflux/dockerfiles/controller.Dockerfile + revision: next diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-chains/image-controller-next.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-chains/image-controller-next.yaml new file mode 100644 index 00000000..79b8f2e2 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-chains/image-controller-next.yaml @@ -0,0 +1,22 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ImageRepository +metadata: + name: tektoncd-chains-next-controller + annotations: + image-controller.appstudio.redhat.com/update-component-image: "true" + image-controller.appstudio.redhat.com/skip-repository-deletion: "true" + labels: + appstudio.redhat.com/component: tektoncd-chains-next-controller + appstudio.redhat.com/application: openshift-pipelines-core-next +spec: + image: + name: pipelines-chains-controller-rhel9 + visibility: public + notifications: + - config: + url: https://bombino.api.redhat.com/v1/sbom/quay/push + event: repo_push + method: webhook + title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-git-clone/component-git-init-next.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-git-clone/component-git-init-next.yaml new file mode 100644 index 00000000..c011bbec --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-git-clone/component-git-init-next.yaml @@ -0,0 +1,18 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Component +metadata: + annotations: + build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' + name: tektoncd-git-clone-next-git-init +spec: + componentName: git-init + application: openshift-pipelines-core-next + build-nudges-ref: + - operator-next-bundle + source: + git: + url: https://github.com/openshift-pipelines/tektoncd-git-clone.git + dockerfileUrl: .konflux/dockerfiles/git-init.Dockerfile + revision: next diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-git-clone/image-git-init-next.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-git-clone/image-git-init-next.yaml new file mode 100644 index 00000000..d82ccef7 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-git-clone/image-git-init-next.yaml @@ -0,0 +1,22 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ImageRepository +metadata: + name: tektoncd-git-clone-next-git-init + annotations: + image-controller.appstudio.redhat.com/update-component-image: "true" + image-controller.appstudio.redhat.com/skip-repository-deletion: "true" + labels: + appstudio.redhat.com/component: tektoncd-git-clone-next-git-init + appstudio.redhat.com/application: openshift-pipelines-core-next +spec: + image: + name: git-init-rhel9 + visibility: public + notifications: + - config: + url: https://bombino.api.redhat.com/v1/sbom/quay/push + event: repo_push + method: webhook + title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-hub/component-api-next.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-hub/component-api-next.yaml new file mode 100644 index 00000000..e5b2c15b --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-hub/component-api-next.yaml @@ -0,0 +1,18 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Component +metadata: + annotations: + build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' + name: tektoncd-hub-next-api +spec: + componentName: api + application: openshift-pipelines-core-next + build-nudges-ref: + - operator-next-bundle + source: + git: + url: https://github.com/openshift-pipelines/tektoncd-hub.git + dockerfileUrl: .konflux/dockerfiles/api.Dockerfile + revision: next diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-hub/component-db-migration-next.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-hub/component-db-migration-next.yaml new file mode 100644 index 00000000..6ff849fb --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-hub/component-db-migration-next.yaml @@ -0,0 +1,18 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Component +metadata: + annotations: + build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' + name: tektoncd-hub-next-db-migration +spec: + componentName: db-migration + application: openshift-pipelines-core-next + build-nudges-ref: + - operator-next-bundle + source: + git: + url: https://github.com/openshift-pipelines/tektoncd-hub.git + dockerfileUrl: .konflux/dockerfiles/db-migration.Dockerfile + revision: next diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-hub/component-ui-next.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-hub/component-ui-next.yaml new file mode 100644 index 00000000..54898d35 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-hub/component-ui-next.yaml @@ -0,0 +1,18 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Component +metadata: + annotations: + build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' + name: tektoncd-hub-next-ui +spec: + componentName: ui + application: openshift-pipelines-core-next + build-nudges-ref: + - operator-next-bundle + source: + git: + url: https://github.com/openshift-pipelines/tektoncd-hub.git + dockerfileUrl: .konflux/dockerfiles/ui.Dockerfile + revision: next diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-hub/image-api-next.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-hub/image-api-next.yaml new file mode 100644 index 00000000..c1b275e1 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-hub/image-api-next.yaml @@ -0,0 +1,22 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ImageRepository +metadata: + name: tektoncd-hub-next-api + annotations: + image-controller.appstudio.redhat.com/update-component-image: "true" + image-controller.appstudio.redhat.com/skip-repository-deletion: "true" + labels: + appstudio.redhat.com/component: tektoncd-hub-next-api + appstudio.redhat.com/application: openshift-pipelines-core-next +spec: + image: + name: pipelines-hub-api-rhel9 + visibility: public + notifications: + - config: + url: https://bombino.api.redhat.com/v1/sbom/quay/push + event: repo_push + method: webhook + title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-hub/image-db-migration-next.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-hub/image-db-migration-next.yaml new file mode 100644 index 00000000..8288ee4f --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-hub/image-db-migration-next.yaml @@ -0,0 +1,22 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ImageRepository +metadata: + name: tektoncd-hub-next-db-migration + annotations: + image-controller.appstudio.redhat.com/update-component-image: "true" + image-controller.appstudio.redhat.com/skip-repository-deletion: "true" + labels: + appstudio.redhat.com/component: tektoncd-hub-next-db-migration + appstudio.redhat.com/application: openshift-pipelines-core-next +spec: + image: + name: pipelines-hub-db-migration-rhel9 + visibility: public + notifications: + - config: + url: https://bombino.api.redhat.com/v1/sbom/quay/push + event: repo_push + method: webhook + title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-hub/image-ui-next.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-hub/image-ui-next.yaml new file mode 100644 index 00000000..7d76672a --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-hub/image-ui-next.yaml @@ -0,0 +1,22 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ImageRepository +metadata: + name: tektoncd-hub-next-ui + annotations: + image-controller.appstudio.redhat.com/update-component-image: "true" + image-controller.appstudio.redhat.com/skip-repository-deletion: "true" + labels: + appstudio.redhat.com/component: tektoncd-hub-next-ui + appstudio.redhat.com/application: openshift-pipelines-core-next +spec: + image: + name: pipelines-hub-ui-rhel9 + visibility: public + notifications: + - config: + url: https://bombino.api.redhat.com/v1/sbom/quay/push + event: repo_push + method: webhook + title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-pipeline/component-controller-next.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-pipeline/component-controller-next.yaml new file mode 100644 index 00000000..9ddc09e9 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-pipeline/component-controller-next.yaml @@ -0,0 +1,18 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Component +metadata: + annotations: + build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' + name: tektoncd-pipeline-next-controller +spec: + componentName: controller + application: openshift-pipelines-core-next + build-nudges-ref: + - operator-next-bundle + source: + git: + url: https://github.com/openshift-pipelines/tektoncd-pipeline.git + dockerfileUrl: .konflux/dockerfiles/controller.Dockerfile + revision: next diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-pipeline/component-entrypoint-next.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-pipeline/component-entrypoint-next.yaml new file mode 100644 index 00000000..fcc6919d --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-pipeline/component-entrypoint-next.yaml @@ -0,0 +1,18 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Component +metadata: + annotations: + build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' + name: tektoncd-pipeline-next-entrypoint +spec: + componentName: entrypoint + application: openshift-pipelines-core-next + build-nudges-ref: + - operator-next-bundle + source: + git: + url: https://github.com/openshift-pipelines/tektoncd-pipeline.git + dockerfileUrl: .konflux/dockerfiles/entrypoint.Dockerfile + revision: next diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-pipeline/component-events-next.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-pipeline/component-events-next.yaml new file mode 100644 index 00000000..c964c593 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-pipeline/component-events-next.yaml @@ -0,0 +1,18 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Component +metadata: + annotations: + build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' + name: tektoncd-pipeline-next-events +spec: + componentName: events + application: openshift-pipelines-core-next + build-nudges-ref: + - operator-next-bundle + source: + git: + url: https://github.com/openshift-pipelines/tektoncd-pipeline.git + dockerfileUrl: .konflux/dockerfiles/events.Dockerfile + revision: next diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-pipeline/component-nop-next.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-pipeline/component-nop-next.yaml new file mode 100644 index 00000000..5671e990 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-pipeline/component-nop-next.yaml @@ -0,0 +1,18 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Component +metadata: + annotations: + build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' + name: tektoncd-pipeline-next-nop +spec: + componentName: nop + application: openshift-pipelines-core-next + build-nudges-ref: + - operator-next-bundle + source: + git: + url: https://github.com/openshift-pipelines/tektoncd-pipeline.git + dockerfileUrl: .konflux/dockerfiles/nop.Dockerfile + revision: next diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-pipeline/component-resolvers-next.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-pipeline/component-resolvers-next.yaml new file mode 100644 index 00000000..49f50816 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-pipeline/component-resolvers-next.yaml @@ -0,0 +1,18 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Component +metadata: + annotations: + build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' + name: tektoncd-pipeline-next-resolvers +spec: + componentName: resolvers + application: openshift-pipelines-core-next + build-nudges-ref: + - operator-next-bundle + source: + git: + url: https://github.com/openshift-pipelines/tektoncd-pipeline.git + dockerfileUrl: .konflux/dockerfiles/resolvers.Dockerfile + revision: next diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-pipeline/component-sidecarlogresults-next.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-pipeline/component-sidecarlogresults-next.yaml new file mode 100644 index 00000000..bb69817f --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-pipeline/component-sidecarlogresults-next.yaml @@ -0,0 +1,18 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Component +metadata: + annotations: + build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' + name: tektoncd-pipeline-next-sidecarlogresults +spec: + componentName: sidecarlogresults + application: openshift-pipelines-core-next + build-nudges-ref: + - operator-next-bundle + source: + git: + url: https://github.com/openshift-pipelines/tektoncd-pipeline.git + dockerfileUrl: .konflux/dockerfiles/sidecarlogresults.Dockerfile + revision: next diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-pipeline/component-webhook-next.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-pipeline/component-webhook-next.yaml new file mode 100644 index 00000000..41aa3c3d --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-pipeline/component-webhook-next.yaml @@ -0,0 +1,18 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Component +metadata: + annotations: + build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' + name: tektoncd-pipeline-next-webhook +spec: + componentName: webhook + application: openshift-pipelines-core-next + build-nudges-ref: + - operator-next-bundle + source: + git: + url: https://github.com/openshift-pipelines/tektoncd-pipeline.git + dockerfileUrl: .konflux/dockerfiles/webhook.Dockerfile + revision: next diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-pipeline/component-workingdirinit-next.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-pipeline/component-workingdirinit-next.yaml new file mode 100644 index 00000000..699bd547 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-pipeline/component-workingdirinit-next.yaml @@ -0,0 +1,18 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Component +metadata: + annotations: + build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' + name: tektoncd-pipeline-next-workingdirinit +spec: + componentName: workingdirinit + application: openshift-pipelines-core-next + build-nudges-ref: + - operator-next-bundle + source: + git: + url: https://github.com/openshift-pipelines/tektoncd-pipeline.git + dockerfileUrl: .konflux/dockerfiles/workingdirinit.Dockerfile + revision: next diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-pipeline/image-controller-next.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-pipeline/image-controller-next.yaml new file mode 100644 index 00000000..df626f67 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-pipeline/image-controller-next.yaml @@ -0,0 +1,22 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ImageRepository +metadata: + name: tektoncd-pipeline-next-controller + annotations: + image-controller.appstudio.redhat.com/update-component-image: "true" + image-controller.appstudio.redhat.com/skip-repository-deletion: "true" + labels: + appstudio.redhat.com/component: tektoncd-pipeline-next-controller + appstudio.redhat.com/application: openshift-pipelines-core-next +spec: + image: + name: pipelines-controller-rhel9 + visibility: public + notifications: + - config: + url: https://bombino.api.redhat.com/v1/sbom/quay/push + event: repo_push + method: webhook + title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-pipeline/image-entrypoint-next.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-pipeline/image-entrypoint-next.yaml new file mode 100644 index 00000000..9e6cbdd0 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-pipeline/image-entrypoint-next.yaml @@ -0,0 +1,22 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ImageRepository +metadata: + name: tektoncd-pipeline-next-entrypoint + annotations: + image-controller.appstudio.redhat.com/update-component-image: "true" + image-controller.appstudio.redhat.com/skip-repository-deletion: "true" + labels: + appstudio.redhat.com/component: tektoncd-pipeline-next-entrypoint + appstudio.redhat.com/application: openshift-pipelines-core-next +spec: + image: + name: pipelines-entrypoint-rhel9 + visibility: public + notifications: + - config: + url: https://bombino.api.redhat.com/v1/sbom/quay/push + event: repo_push + method: webhook + title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-pipeline/image-events-next.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-pipeline/image-events-next.yaml new file mode 100644 index 00000000..0bea0692 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-pipeline/image-events-next.yaml @@ -0,0 +1,22 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ImageRepository +metadata: + name: tektoncd-pipeline-next-events + annotations: + image-controller.appstudio.redhat.com/update-component-image: "true" + image-controller.appstudio.redhat.com/skip-repository-deletion: "true" + labels: + appstudio.redhat.com/component: tektoncd-pipeline-next-events + appstudio.redhat.com/application: openshift-pipelines-core-next +spec: + image: + name: pipelines-events-rhel9 + visibility: public + notifications: + - config: + url: https://bombino.api.redhat.com/v1/sbom/quay/push + event: repo_push + method: webhook + title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-pipeline/image-nop-next.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-pipeline/image-nop-next.yaml new file mode 100644 index 00000000..204eeeaf --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-pipeline/image-nop-next.yaml @@ -0,0 +1,22 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ImageRepository +metadata: + name: tektoncd-pipeline-next-nop + annotations: + image-controller.appstudio.redhat.com/update-component-image: "true" + image-controller.appstudio.redhat.com/skip-repository-deletion: "true" + labels: + appstudio.redhat.com/component: tektoncd-pipeline-next-nop + appstudio.redhat.com/application: openshift-pipelines-core-next +spec: + image: + name: pipelines-nop-rhel9 + visibility: public + notifications: + - config: + url: https://bombino.api.redhat.com/v1/sbom/quay/push + event: repo_push + method: webhook + title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-pipeline/image-resolvers-next.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-pipeline/image-resolvers-next.yaml new file mode 100644 index 00000000..571ad8e5 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-pipeline/image-resolvers-next.yaml @@ -0,0 +1,22 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ImageRepository +metadata: + name: tektoncd-pipeline-next-resolvers + annotations: + image-controller.appstudio.redhat.com/update-component-image: "true" + image-controller.appstudio.redhat.com/skip-repository-deletion: "true" + labels: + appstudio.redhat.com/component: tektoncd-pipeline-next-resolvers + appstudio.redhat.com/application: openshift-pipelines-core-next +spec: + image: + name: pipelines-resolvers-rhel9 + visibility: public + notifications: + - config: + url: https://bombino.api.redhat.com/v1/sbom/quay/push + event: repo_push + method: webhook + title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-pipeline/image-sidecarlogresults-next.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-pipeline/image-sidecarlogresults-next.yaml new file mode 100644 index 00000000..a14debc9 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-pipeline/image-sidecarlogresults-next.yaml @@ -0,0 +1,22 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ImageRepository +metadata: + name: tektoncd-pipeline-next-sidecarlogresults + annotations: + image-controller.appstudio.redhat.com/update-component-image: "true" + image-controller.appstudio.redhat.com/skip-repository-deletion: "true" + labels: + appstudio.redhat.com/component: tektoncd-pipeline-next-sidecarlogresults + appstudio.redhat.com/application: openshift-pipelines-core-next +spec: + image: + name: pipelines-sidecarlogresults-rhel9 + visibility: public + notifications: + - config: + url: https://bombino.api.redhat.com/v1/sbom/quay/push + event: repo_push + method: webhook + title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-pipeline/image-webhook-next.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-pipeline/image-webhook-next.yaml new file mode 100644 index 00000000..ca2ac25e --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-pipeline/image-webhook-next.yaml @@ -0,0 +1,22 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ImageRepository +metadata: + name: tektoncd-pipeline-next-webhook + annotations: + image-controller.appstudio.redhat.com/update-component-image: "true" + image-controller.appstudio.redhat.com/skip-repository-deletion: "true" + labels: + appstudio.redhat.com/component: tektoncd-pipeline-next-webhook + appstudio.redhat.com/application: openshift-pipelines-core-next +spec: + image: + name: pipelines-webhook-rhel9 + visibility: public + notifications: + - config: + url: https://bombino.api.redhat.com/v1/sbom/quay/push + event: repo_push + method: webhook + title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-pipeline/image-workingdirinit-next.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-pipeline/image-workingdirinit-next.yaml new file mode 100644 index 00000000..34c2c9f1 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-pipeline/image-workingdirinit-next.yaml @@ -0,0 +1,22 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ImageRepository +metadata: + name: tektoncd-pipeline-next-workingdirinit + annotations: + image-controller.appstudio.redhat.com/update-component-image: "true" + image-controller.appstudio.redhat.com/skip-repository-deletion: "true" + labels: + appstudio.redhat.com/component: tektoncd-pipeline-next-workingdirinit + appstudio.redhat.com/application: openshift-pipelines-core-next +spec: + image: + name: pipelines-workingdirinit-rhel9 + visibility: public + notifications: + - config: + url: https://bombino.api.redhat.com/v1/sbom/quay/push + event: repo_push + method: webhook + title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-pruner/component-controller-next.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-pruner/component-controller-next.yaml new file mode 100644 index 00000000..59d3458c --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-pruner/component-controller-next.yaml @@ -0,0 +1,18 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Component +metadata: + annotations: + build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' + name: tektoncd-pruner-next-controller +spec: + componentName: controller + application: openshift-pipelines-core-next + build-nudges-ref: + - operator-next-bundle + source: + git: + url: https://github.com/openshift-pipelines/tektoncd-pruner.git + dockerfileUrl: .konflux/dockerfiles/controller.Dockerfile + revision: next diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-pruner/image-controller-next.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-pruner/image-controller-next.yaml new file mode 100644 index 00000000..d1e44d8c --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-pruner/image-controller-next.yaml @@ -0,0 +1,22 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ImageRepository +metadata: + name: tektoncd-pruner-next-controller + annotations: + image-controller.appstudio.redhat.com/update-component-image: "true" + image-controller.appstudio.redhat.com/skip-repository-deletion: "true" + labels: + appstudio.redhat.com/component: tektoncd-pruner-next-controller + appstudio.redhat.com/application: openshift-pipelines-core-next +spec: + image: + name: pipelines-pruner-controller-rhel9 + visibility: public + notifications: + - config: + url: https://bombino.api.redhat.com/v1/sbom/quay/push + event: repo_push + method: webhook + title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-results/component-api-next.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-results/component-api-next.yaml new file mode 100644 index 00000000..e707515d --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-results/component-api-next.yaml @@ -0,0 +1,18 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Component +metadata: + annotations: + build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' + name: tektoncd-results-next-api +spec: + componentName: api + application: openshift-pipelines-core-next + build-nudges-ref: + - operator-next-bundle + source: + git: + url: https://github.com/openshift-pipelines/tektoncd-results.git + dockerfileUrl: .konflux/dockerfiles/api.Dockerfile + revision: next diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-results/component-retention-policy-agent-next.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-results/component-retention-policy-agent-next.yaml new file mode 100644 index 00000000..5d196bb1 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-results/component-retention-policy-agent-next.yaml @@ -0,0 +1,18 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Component +metadata: + annotations: + build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' + name: tektoncd-results-next-retention-policy-agent +spec: + componentName: retention-policy-agent + application: openshift-pipelines-core-next + build-nudges-ref: + - operator-next-bundle + source: + git: + url: https://github.com/openshift-pipelines/tektoncd-results.git + dockerfileUrl: .konflux/dockerfiles/retention-policy-agent.Dockerfile + revision: next diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-results/component-watcher-next.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-results/component-watcher-next.yaml new file mode 100644 index 00000000..fa2c5f7f --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-results/component-watcher-next.yaml @@ -0,0 +1,18 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Component +metadata: + annotations: + build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' + name: tektoncd-results-next-watcher +spec: + componentName: watcher + application: openshift-pipelines-core-next + build-nudges-ref: + - operator-next-bundle + source: + git: + url: https://github.com/openshift-pipelines/tektoncd-results.git + dockerfileUrl: .konflux/dockerfiles/watcher.Dockerfile + revision: next diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-results/image-api-next.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-results/image-api-next.yaml new file mode 100644 index 00000000..d7244c72 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-results/image-api-next.yaml @@ -0,0 +1,22 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ImageRepository +metadata: + name: tektoncd-results-next-api + annotations: + image-controller.appstudio.redhat.com/update-component-image: "true" + image-controller.appstudio.redhat.com/skip-repository-deletion: "true" + labels: + appstudio.redhat.com/component: tektoncd-results-next-api + appstudio.redhat.com/application: openshift-pipelines-core-next +spec: + image: + name: pipelines-results-api-rhel9 + visibility: public + notifications: + - config: + url: https://bombino.api.redhat.com/v1/sbom/quay/push + event: repo_push + method: webhook + title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-results/image-retention-policy-agent-next.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-results/image-retention-policy-agent-next.yaml new file mode 100644 index 00000000..c2fe59e1 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-results/image-retention-policy-agent-next.yaml @@ -0,0 +1,22 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ImageRepository +metadata: + name: tektoncd-results-next-retention-policy-agent + annotations: + image-controller.appstudio.redhat.com/update-component-image: "true" + image-controller.appstudio.redhat.com/skip-repository-deletion: "true" + labels: + appstudio.redhat.com/component: tektoncd-results-next-retention-policy-agent + appstudio.redhat.com/application: openshift-pipelines-core-next +spec: + image: + name: pipelines-results-retention-policy-agent-rhel9 + visibility: public + notifications: + - config: + url: https://bombino.api.redhat.com/v1/sbom/quay/push + event: repo_push + method: webhook + title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-results/image-watcher-next.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-results/image-watcher-next.yaml new file mode 100644 index 00000000..a5155b79 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-results/image-watcher-next.yaml @@ -0,0 +1,22 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ImageRepository +metadata: + name: tektoncd-results-next-watcher + annotations: + image-controller.appstudio.redhat.com/update-component-image: "true" + image-controller.appstudio.redhat.com/skip-repository-deletion: "true" + labels: + appstudio.redhat.com/component: tektoncd-results-next-watcher + appstudio.redhat.com/application: openshift-pipelines-core-next +spec: + image: + name: pipelines-results-watcher-rhel9 + visibility: public + notifications: + - config: + url: https://bombino.api.redhat.com/v1/sbom/quay/push + event: repo_push + method: webhook + title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-triggers/component-controller-next.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-triggers/component-controller-next.yaml new file mode 100644 index 00000000..1b077bd0 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-triggers/component-controller-next.yaml @@ -0,0 +1,18 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Component +metadata: + annotations: + build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' + name: tektoncd-triggers-next-controller +spec: + componentName: controller + application: openshift-pipelines-core-next + build-nudges-ref: + - operator-next-bundle + source: + git: + url: https://github.com/openshift-pipelines/tektoncd-triggers.git + dockerfileUrl: .konflux/dockerfiles/controller.Dockerfile + revision: next diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-triggers/component-core-interceptors-next.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-triggers/component-core-interceptors-next.yaml new file mode 100644 index 00000000..e9fc6dd6 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-triggers/component-core-interceptors-next.yaml @@ -0,0 +1,18 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Component +metadata: + annotations: + build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' + name: tektoncd-triggers-next-core-interceptors +spec: + componentName: core-interceptors + application: openshift-pipelines-core-next + build-nudges-ref: + - operator-next-bundle + source: + git: + url: https://github.com/openshift-pipelines/tektoncd-triggers.git + dockerfileUrl: .konflux/dockerfiles/core-interceptors.Dockerfile + revision: next diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-triggers/component-eventlistenersink-next.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-triggers/component-eventlistenersink-next.yaml new file mode 100644 index 00000000..f5516fc8 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-triggers/component-eventlistenersink-next.yaml @@ -0,0 +1,18 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Component +metadata: + annotations: + build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' + name: tektoncd-triggers-next-eventlistenersink +spec: + componentName: eventlistenersink + application: openshift-pipelines-core-next + build-nudges-ref: + - operator-next-bundle + source: + git: + url: https://github.com/openshift-pipelines/tektoncd-triggers.git + dockerfileUrl: .konflux/dockerfiles/eventlistenersink.Dockerfile + revision: next diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-triggers/component-webhook-next.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-triggers/component-webhook-next.yaml new file mode 100644 index 00000000..ed920f8f --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-triggers/component-webhook-next.yaml @@ -0,0 +1,18 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Component +metadata: + annotations: + build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' + name: tektoncd-triggers-next-webhook +spec: + componentName: webhook + application: openshift-pipelines-core-next + build-nudges-ref: + - operator-next-bundle + source: + git: + url: https://github.com/openshift-pipelines/tektoncd-triggers.git + dockerfileUrl: .konflux/dockerfiles/webhook.Dockerfile + revision: next diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-triggers/image-controller-next.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-triggers/image-controller-next.yaml new file mode 100644 index 00000000..632fcf69 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-triggers/image-controller-next.yaml @@ -0,0 +1,22 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ImageRepository +metadata: + name: tektoncd-triggers-next-controller + annotations: + image-controller.appstudio.redhat.com/update-component-image: "true" + image-controller.appstudio.redhat.com/skip-repository-deletion: "true" + labels: + appstudio.redhat.com/component: tektoncd-triggers-next-controller + appstudio.redhat.com/application: openshift-pipelines-core-next +spec: + image: + name: pipelines-triggers-controller-rhel9 + visibility: public + notifications: + - config: + url: https://bombino.api.redhat.com/v1/sbom/quay/push + event: repo_push + method: webhook + title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-triggers/image-core-interceptors-next.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-triggers/image-core-interceptors-next.yaml new file mode 100644 index 00000000..06677b98 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-triggers/image-core-interceptors-next.yaml @@ -0,0 +1,22 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ImageRepository +metadata: + name: tektoncd-triggers-next-core-interceptors + annotations: + image-controller.appstudio.redhat.com/update-component-image: "true" + image-controller.appstudio.redhat.com/skip-repository-deletion: "true" + labels: + appstudio.redhat.com/component: tektoncd-triggers-next-core-interceptors + appstudio.redhat.com/application: openshift-pipelines-core-next +spec: + image: + name: pipelines-triggers-core-interceptors-rhel9 + visibility: public + notifications: + - config: + url: https://bombino.api.redhat.com/v1/sbom/quay/push + event: repo_push + method: webhook + title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-triggers/image-eventlistenersink-next.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-triggers/image-eventlistenersink-next.yaml new file mode 100644 index 00000000..1ae76f65 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-triggers/image-eventlistenersink-next.yaml @@ -0,0 +1,22 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ImageRepository +metadata: + name: tektoncd-triggers-next-eventlistenersink + annotations: + image-controller.appstudio.redhat.com/update-component-image: "true" + image-controller.appstudio.redhat.com/skip-repository-deletion: "true" + labels: + appstudio.redhat.com/component: tektoncd-triggers-next-eventlistenersink + appstudio.redhat.com/application: openshift-pipelines-core-next +spec: + image: + name: pipelines-triggers-eventlistenersink-rhel9 + visibility: public + notifications: + - config: + url: https://bombino.api.redhat.com/v1/sbom/quay/push + event: repo_push + method: webhook + title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-triggers/image-webhook-next.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-triggers/image-webhook-next.yaml new file mode 100644 index 00000000..f304210d --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/next/tektoncd-triggers/image-webhook-next.yaml @@ -0,0 +1,22 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ImageRepository +metadata: + name: tektoncd-triggers-next-webhook + annotations: + image-controller.appstudio.redhat.com/update-component-image: "true" + image-controller.appstudio.redhat.com/skip-repository-deletion: "true" + labels: + appstudio.redhat.com/component: tektoncd-triggers-next-webhook + appstudio.redhat.com/application: openshift-pipelines-core-next +spec: + image: + name: pipelines-triggers-webhook-rhel9 + visibility: public + notifications: + - config: + url: https://bombino.api.redhat.com/v1/sbom/quay/push + event: repo_push + method: webhook + title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-core/next/tests.yaml b/.konflux/openshift-pipelines/openshift-pipelines-core/next/tests.yaml new file mode 100644 index 00000000..787eae2d --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-core/next/tests.yaml @@ -0,0 +1,27 @@ +# Generated for Konflux Application openshift-pipelines-core by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1beta2 +kind: IntegrationTestScenario +metadata: + name: openshift-pipelines-core-next-enterprise-contract +spec: + application: openshift-pipelines-core-next + contexts: + - description: execute the integration test for a component + name: component + params: + - name: POLICY_CONFIGURATION + value: tekton-ecosystem-tenant/tekton-ecosystem-tenant-containers + - name: TIMEOUT + value: "15m0s" + - name: SINGLE_COMPONENT + value: "true" + resolverRef: + params: + - name: url + value: "https://github.com/konflux-ci/build-definitions" + - name: revision + value: main + - name: pathInRepo + value: pipelines/enterprise-contract.yaml + resolver: git diff --git a/.konflux/openshift-pipelines/openshift-pipelines-index-4.16/1-22/release-tests.yaml b/.konflux/openshift-pipelines/openshift-pipelines-index-4.16/1-22/release-tests.yaml new file mode 100644 index 00000000..5ee38dbc --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-index-4.16/1-22/release-tests.yaml @@ -0,0 +1,20 @@ +# Generated for Konflux Application openshift-pipelines-index-4.16 by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1beta2 +kind: IntegrationTestScenario +metadata: + name: openshift-pipelines-index-4-16-1-22-release-tests +spec: + application: openshift-pipelines-index-4-16-1-22 + contexts: + - description: execute the integration test for a Snapshot created for a `push` event + name: push + resolverRef: + params: + - name: url + value: https://github.com/openshift-pipelines/operator + - name: revision + value: main + - name: pathInRepo + value: .konflux/tekton/release-test-pipeline.yaml + resolver: git diff --git a/.konflux/openshift-pipelines/openshift-pipelines-index-4.16/next/application.yaml b/.konflux/openshift-pipelines/openshift-pipelines-index-4.16/next/application.yaml new file mode 100644 index 00000000..c8cc3f91 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-index-4.16/next/application.yaml @@ -0,0 +1,8 @@ +# Generated for Konflux Application openshift-pipelines-index-4.16 by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Application +metadata: + name: openshift-pipelines-index-4-16-next +spec: + displayName: openshift-pipelines-index-4-16-next diff --git a/.konflux/openshift-pipelines/openshift-pipelines-index-4.16/next/operator/component-index-4.16-next.yaml b/.konflux/openshift-pipelines/openshift-pipelines-index-4.16/next/operator/component-index-4.16-next.yaml new file mode 100644 index 00000000..8057e161 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-index-4.16/next/operator/component-index-4.16-next.yaml @@ -0,0 +1,18 @@ +# Generated for Konflux Application openshift-pipelines-index-4.16 by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Component +metadata: + annotations: + build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' + name: operator-next-index-4-16 +spec: + componentName: index-4-16 + application: openshift-pipelines-index-4-16-next + build-nudges-ref: + - + source: + git: + url: https://github.com/openshift-pipelines/operator.git + dockerfileUrl: .konflux/dockerfiles/index-4.16.Dockerfile + revision: next diff --git a/.konflux/openshift-pipelines/openshift-pipelines-index-4.16/next/operator/image-index-4.16-next.yaml b/.konflux/openshift-pipelines/openshift-pipelines-index-4.16/next/operator/image-index-4.16-next.yaml new file mode 100644 index 00000000..f7cecb88 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-index-4.16/next/operator/image-index-4.16-next.yaml @@ -0,0 +1,22 @@ +# Generated for Konflux Application openshift-pipelines-index-4.16 by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ImageRepository +metadata: + name: operator-next-index-4-16 + annotations: + image-controller.appstudio.redhat.com/update-component-image: "true" + image-controller.appstudio.redhat.com/skip-repository-deletion: "true" + labels: + appstudio.redhat.com/component: operator-next-index-4-16 + appstudio.redhat.com/application: openshift-pipelines-index-4-16-next +spec: + image: + name: operator/pipelines-index-4.16 + visibility: public + notifications: + - config: + url: https://bombino.api.redhat.com/v1/sbom/quay/push + event: repo_push + method: webhook + title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-index-4.16/next/release-plan.yaml b/.konflux/openshift-pipelines/openshift-pipelines-index-4.16/next/release-plan.yaml new file mode 100644 index 00000000..69bc7879 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-index-4.16/next/release-plan.yaml @@ -0,0 +1,28 @@ +# Generated for Konflux Application openshift-pipelines-index-4.16 by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ReleasePlan +metadata: + labels: + release.appstudio.openshift.io/auto-release: "true" + release.appstudio.openshift.io/standing-attribution: 'true' + name: openshift-pipelines-index-4-16-next-rp +spec: + application: openshift-pipelines-index-4-16-next + tenantPipeline: + serviceAccountName: release-registry-openshift-pipelines-index-4-16 + pipelineRef: + resolver: git + params: + - name: url + value: https://github.com/openshift-pipelines/hack.git + - name: revision + # value: next + value: main + - name: pathInRepo + value: pipelines/release-pipeline.yaml + params: + - name: release_version + value: "next" + - name: release_to_github + value: "false" diff --git a/.konflux/openshift-pipelines/openshift-pipelines-index-4.16/next/release-tests.yaml b/.konflux/openshift-pipelines/openshift-pipelines-index-4.16/next/release-tests.yaml new file mode 100644 index 00000000..d6cf000f --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-index-4.16/next/release-tests.yaml @@ -0,0 +1,20 @@ +# Generated for Konflux Application openshift-pipelines-index-4.16 by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1beta2 +kind: IntegrationTestScenario +metadata: + name: openshift-pipelines-index-4-16-next-release-tests +spec: + application: openshift-pipelines-index-4-16-next + contexts: + - description: execute the integration test for a Snapshot created for a `push` event + name: push + resolverRef: + params: + - name: url + value: https://github.com/openshift-pipelines/operator + - name: revision + value: main + - name: pathInRepo + value: .konflux/tekton/release-test-pipeline.yaml + resolver: git diff --git a/.konflux/openshift-pipelines/openshift-pipelines-index-4.16/next/tests.yaml b/.konflux/openshift-pipelines/openshift-pipelines-index-4.16/next/tests.yaml new file mode 100644 index 00000000..22d498c5 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-index-4.16/next/tests.yaml @@ -0,0 +1,27 @@ +# Generated for Konflux Application openshift-pipelines-index-4.16 by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1beta2 +kind: IntegrationTestScenario +metadata: + name: openshift-pipelines-index-4-16-next-enterprise-contract +spec: + application: openshift-pipelines-index-4-16-next + contexts: + - description: execute the integration test for a component + name: component + params: + - name: POLICY_CONFIGURATION + value: tekton-ecosystem-tenant/tekton-ecosystem-tenant-indexes + - name: TIMEOUT + value: "15m0s" + - name: SINGLE_COMPONENT + value: "true" + resolverRef: + params: + - name: url + value: "https://github.com/konflux-ci/build-definitions" + - name: revision + value: main + - name: pathInRepo + value: pipelines/enterprise-contract.yaml + resolver: git diff --git a/.konflux/openshift-pipelines/openshift-pipelines-index-4.17/1-22/release-tests.yaml b/.konflux/openshift-pipelines/openshift-pipelines-index-4.17/1-22/release-tests.yaml new file mode 100644 index 00000000..79aa9bdc --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-index-4.17/1-22/release-tests.yaml @@ -0,0 +1,20 @@ +# Generated for Konflux Application openshift-pipelines-index-4.17 by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1beta2 +kind: IntegrationTestScenario +metadata: + name: openshift-pipelines-index-4-17-1-22-release-tests +spec: + application: openshift-pipelines-index-4-17-1-22 + contexts: + - description: execute the integration test for a Snapshot created for a `push` event + name: push + resolverRef: + params: + - name: url + value: https://github.com/openshift-pipelines/operator + - name: revision + value: main + - name: pathInRepo + value: .konflux/tekton/release-test-pipeline.yaml + resolver: git diff --git a/.konflux/openshift-pipelines/openshift-pipelines-index-4.17/next/application.yaml b/.konflux/openshift-pipelines/openshift-pipelines-index-4.17/next/application.yaml new file mode 100644 index 00000000..804c242e --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-index-4.17/next/application.yaml @@ -0,0 +1,8 @@ +# Generated for Konflux Application openshift-pipelines-index-4.17 by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Application +metadata: + name: openshift-pipelines-index-4-17-next +spec: + displayName: openshift-pipelines-index-4-17-next diff --git a/.konflux/openshift-pipelines/openshift-pipelines-index-4.17/next/operator/component-index-4.17-next.yaml b/.konflux/openshift-pipelines/openshift-pipelines-index-4.17/next/operator/component-index-4.17-next.yaml new file mode 100644 index 00000000..16eb1a66 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-index-4.17/next/operator/component-index-4.17-next.yaml @@ -0,0 +1,18 @@ +# Generated for Konflux Application openshift-pipelines-index-4.17 by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Component +metadata: + annotations: + build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' + name: operator-next-index-4-17 +spec: + componentName: index-4-17 + application: openshift-pipelines-index-4-17-next + build-nudges-ref: + - + source: + git: + url: https://github.com/openshift-pipelines/operator.git + dockerfileUrl: .konflux/dockerfiles/index-4.17.Dockerfile + revision: next diff --git a/.konflux/openshift-pipelines/openshift-pipelines-index-4.17/next/operator/image-index-4.17-next.yaml b/.konflux/openshift-pipelines/openshift-pipelines-index-4.17/next/operator/image-index-4.17-next.yaml new file mode 100644 index 00000000..2110e2dd --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-index-4.17/next/operator/image-index-4.17-next.yaml @@ -0,0 +1,22 @@ +# Generated for Konflux Application openshift-pipelines-index-4.17 by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ImageRepository +metadata: + name: operator-next-index-4-17 + annotations: + image-controller.appstudio.redhat.com/update-component-image: "true" + image-controller.appstudio.redhat.com/skip-repository-deletion: "true" + labels: + appstudio.redhat.com/component: operator-next-index-4-17 + appstudio.redhat.com/application: openshift-pipelines-index-4-17-next +spec: + image: + name: operator/pipelines-index-4.17 + visibility: public + notifications: + - config: + url: https://bombino.api.redhat.com/v1/sbom/quay/push + event: repo_push + method: webhook + title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-index-4.17/next/release-plan.yaml b/.konflux/openshift-pipelines/openshift-pipelines-index-4.17/next/release-plan.yaml new file mode 100644 index 00000000..30a9d49f --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-index-4.17/next/release-plan.yaml @@ -0,0 +1,28 @@ +# Generated for Konflux Application openshift-pipelines-index-4.17 by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ReleasePlan +metadata: + labels: + release.appstudio.openshift.io/auto-release: "true" + release.appstudio.openshift.io/standing-attribution: 'true' + name: openshift-pipelines-index-4-17-next-rp +spec: + application: openshift-pipelines-index-4-17-next + tenantPipeline: + serviceAccountName: release-registry-openshift-pipelines-index-4-17 + pipelineRef: + resolver: git + params: + - name: url + value: https://github.com/openshift-pipelines/hack.git + - name: revision + # value: next + value: main + - name: pathInRepo + value: pipelines/release-pipeline.yaml + params: + - name: release_version + value: "next" + - name: release_to_github + value: "false" diff --git a/.konflux/openshift-pipelines/openshift-pipelines-index-4.17/next/release-tests.yaml b/.konflux/openshift-pipelines/openshift-pipelines-index-4.17/next/release-tests.yaml new file mode 100644 index 00000000..613978bd --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-index-4.17/next/release-tests.yaml @@ -0,0 +1,20 @@ +# Generated for Konflux Application openshift-pipelines-index-4.17 by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1beta2 +kind: IntegrationTestScenario +metadata: + name: openshift-pipelines-index-4-17-next-release-tests +spec: + application: openshift-pipelines-index-4-17-next + contexts: + - description: execute the integration test for a Snapshot created for a `push` event + name: push + resolverRef: + params: + - name: url + value: https://github.com/openshift-pipelines/operator + - name: revision + value: main + - name: pathInRepo + value: .konflux/tekton/release-test-pipeline.yaml + resolver: git diff --git a/.konflux/openshift-pipelines/openshift-pipelines-index-4.17/next/tests.yaml b/.konflux/openshift-pipelines/openshift-pipelines-index-4.17/next/tests.yaml new file mode 100644 index 00000000..dedc8076 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-index-4.17/next/tests.yaml @@ -0,0 +1,27 @@ +# Generated for Konflux Application openshift-pipelines-index-4.17 by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1beta2 +kind: IntegrationTestScenario +metadata: + name: openshift-pipelines-index-4-17-next-enterprise-contract +spec: + application: openshift-pipelines-index-4-17-next + contexts: + - description: execute the integration test for a component + name: component + params: + - name: POLICY_CONFIGURATION + value: tekton-ecosystem-tenant/tekton-ecosystem-tenant-indexes + - name: TIMEOUT + value: "15m0s" + - name: SINGLE_COMPONENT + value: "true" + resolverRef: + params: + - name: url + value: "https://github.com/konflux-ci/build-definitions" + - name: revision + value: main + - name: pathInRepo + value: pipelines/enterprise-contract.yaml + resolver: git diff --git a/.konflux/openshift-pipelines/openshift-pipelines-index-4.18/1-22/release-tests.yaml b/.konflux/openshift-pipelines/openshift-pipelines-index-4.18/1-22/release-tests.yaml new file mode 100644 index 00000000..f187d9e8 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-index-4.18/1-22/release-tests.yaml @@ -0,0 +1,20 @@ +# Generated for Konflux Application openshift-pipelines-index-4.18 by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1beta2 +kind: IntegrationTestScenario +metadata: + name: openshift-pipelines-index-4-18-1-22-release-tests +spec: + application: openshift-pipelines-index-4-18-1-22 + contexts: + - description: execute the integration test for a Snapshot created for a `push` event + name: push + resolverRef: + params: + - name: url + value: https://github.com/openshift-pipelines/operator + - name: revision + value: main + - name: pathInRepo + value: .konflux/tekton/release-test-pipeline.yaml + resolver: git diff --git a/.konflux/openshift-pipelines/openshift-pipelines-index-4.18/next/application.yaml b/.konflux/openshift-pipelines/openshift-pipelines-index-4.18/next/application.yaml new file mode 100644 index 00000000..83473b1f --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-index-4.18/next/application.yaml @@ -0,0 +1,8 @@ +# Generated for Konflux Application openshift-pipelines-index-4.18 by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Application +metadata: + name: openshift-pipelines-index-4-18-next +spec: + displayName: openshift-pipelines-index-4-18-next diff --git a/.konflux/openshift-pipelines/openshift-pipelines-index-4.18/next/operator/component-index-4.18-next.yaml b/.konflux/openshift-pipelines/openshift-pipelines-index-4.18/next/operator/component-index-4.18-next.yaml new file mode 100644 index 00000000..a2bf6434 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-index-4.18/next/operator/component-index-4.18-next.yaml @@ -0,0 +1,18 @@ +# Generated for Konflux Application openshift-pipelines-index-4.18 by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Component +metadata: + annotations: + build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' + name: operator-next-index-4-18 +spec: + componentName: index-4-18 + application: openshift-pipelines-index-4-18-next + build-nudges-ref: + - + source: + git: + url: https://github.com/openshift-pipelines/operator.git + dockerfileUrl: .konflux/dockerfiles/index-4.18.Dockerfile + revision: next diff --git a/.konflux/openshift-pipelines/openshift-pipelines-index-4.18/next/operator/image-index-4.18-next.yaml b/.konflux/openshift-pipelines/openshift-pipelines-index-4.18/next/operator/image-index-4.18-next.yaml new file mode 100644 index 00000000..7cb01b3c --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-index-4.18/next/operator/image-index-4.18-next.yaml @@ -0,0 +1,22 @@ +# Generated for Konflux Application openshift-pipelines-index-4.18 by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ImageRepository +metadata: + name: operator-next-index-4-18 + annotations: + image-controller.appstudio.redhat.com/update-component-image: "true" + image-controller.appstudio.redhat.com/skip-repository-deletion: "true" + labels: + appstudio.redhat.com/component: operator-next-index-4-18 + appstudio.redhat.com/application: openshift-pipelines-index-4-18-next +spec: + image: + name: operator/pipelines-index-4.18 + visibility: public + notifications: + - config: + url: https://bombino.api.redhat.com/v1/sbom/quay/push + event: repo_push + method: webhook + title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-index-4.18/next/release-plan.yaml b/.konflux/openshift-pipelines/openshift-pipelines-index-4.18/next/release-plan.yaml new file mode 100644 index 00000000..1448e937 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-index-4.18/next/release-plan.yaml @@ -0,0 +1,28 @@ +# Generated for Konflux Application openshift-pipelines-index-4.18 by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ReleasePlan +metadata: + labels: + release.appstudio.openshift.io/auto-release: "true" + release.appstudio.openshift.io/standing-attribution: 'true' + name: openshift-pipelines-index-4-18-next-rp +spec: + application: openshift-pipelines-index-4-18-next + tenantPipeline: + serviceAccountName: release-registry-openshift-pipelines-index-4-18 + pipelineRef: + resolver: git + params: + - name: url + value: https://github.com/openshift-pipelines/hack.git + - name: revision + # value: next + value: main + - name: pathInRepo + value: pipelines/release-pipeline.yaml + params: + - name: release_version + value: "next" + - name: release_to_github + value: "false" diff --git a/.konflux/openshift-pipelines/openshift-pipelines-index-4.18/next/release-tests.yaml b/.konflux/openshift-pipelines/openshift-pipelines-index-4.18/next/release-tests.yaml new file mode 100644 index 00000000..84e70a42 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-index-4.18/next/release-tests.yaml @@ -0,0 +1,20 @@ +# Generated for Konflux Application openshift-pipelines-index-4.18 by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1beta2 +kind: IntegrationTestScenario +metadata: + name: openshift-pipelines-index-4-18-next-release-tests +spec: + application: openshift-pipelines-index-4-18-next + contexts: + - description: execute the integration test for a Snapshot created for a `push` event + name: push + resolverRef: + params: + - name: url + value: https://github.com/openshift-pipelines/operator + - name: revision + value: main + - name: pathInRepo + value: .konflux/tekton/release-test-pipeline.yaml + resolver: git diff --git a/.konflux/openshift-pipelines/openshift-pipelines-index-4.18/next/tests.yaml b/.konflux/openshift-pipelines/openshift-pipelines-index-4.18/next/tests.yaml new file mode 100644 index 00000000..48e19fa4 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-index-4.18/next/tests.yaml @@ -0,0 +1,27 @@ +# Generated for Konflux Application openshift-pipelines-index-4.18 by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1beta2 +kind: IntegrationTestScenario +metadata: + name: openshift-pipelines-index-4-18-next-enterprise-contract +spec: + application: openshift-pipelines-index-4-18-next + contexts: + - description: execute the integration test for a component + name: component + params: + - name: POLICY_CONFIGURATION + value: tekton-ecosystem-tenant/tekton-ecosystem-tenant-indexes + - name: TIMEOUT + value: "15m0s" + - name: SINGLE_COMPONENT + value: "true" + resolverRef: + params: + - name: url + value: "https://github.com/konflux-ci/build-definitions" + - name: revision + value: main + - name: pathInRepo + value: pipelines/enterprise-contract.yaml + resolver: git diff --git a/.konflux/openshift-pipelines/openshift-pipelines-index-4.19/1-22/release-tests.yaml b/.konflux/openshift-pipelines/openshift-pipelines-index-4.19/1-22/release-tests.yaml new file mode 100644 index 00000000..c1b35031 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-index-4.19/1-22/release-tests.yaml @@ -0,0 +1,20 @@ +# Generated for Konflux Application openshift-pipelines-index-4.19 by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1beta2 +kind: IntegrationTestScenario +metadata: + name: openshift-pipelines-index-4-19-1-22-release-tests +spec: + application: openshift-pipelines-index-4-19-1-22 + contexts: + - description: execute the integration test for a Snapshot created for a `push` event + name: push + resolverRef: + params: + - name: url + value: https://github.com/openshift-pipelines/operator + - name: revision + value: main + - name: pathInRepo + value: .konflux/tekton/release-test-pipeline.yaml + resolver: git diff --git a/.konflux/openshift-pipelines/openshift-pipelines-index-4.19/next/application.yaml b/.konflux/openshift-pipelines/openshift-pipelines-index-4.19/next/application.yaml new file mode 100644 index 00000000..d36f00ca --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-index-4.19/next/application.yaml @@ -0,0 +1,8 @@ +# Generated for Konflux Application openshift-pipelines-index-4.19 by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Application +metadata: + name: openshift-pipelines-index-4-19-next +spec: + displayName: openshift-pipelines-index-4-19-next diff --git a/.konflux/openshift-pipelines/openshift-pipelines-index-4.19/next/operator/component-index-4.19-next.yaml b/.konflux/openshift-pipelines/openshift-pipelines-index-4.19/next/operator/component-index-4.19-next.yaml new file mode 100644 index 00000000..f9bc0ab6 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-index-4.19/next/operator/component-index-4.19-next.yaml @@ -0,0 +1,18 @@ +# Generated for Konflux Application openshift-pipelines-index-4.19 by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Component +metadata: + annotations: + build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' + name: operator-next-index-4-19 +spec: + componentName: index-4-19 + application: openshift-pipelines-index-4-19-next + build-nudges-ref: + - + source: + git: + url: https://github.com/openshift-pipelines/operator.git + dockerfileUrl: .konflux/dockerfiles/index-4.19.Dockerfile + revision: next diff --git a/.konflux/openshift-pipelines/openshift-pipelines-index-4.19/next/operator/image-index-4.19-next.yaml b/.konflux/openshift-pipelines/openshift-pipelines-index-4.19/next/operator/image-index-4.19-next.yaml new file mode 100644 index 00000000..93b28a26 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-index-4.19/next/operator/image-index-4.19-next.yaml @@ -0,0 +1,22 @@ +# Generated for Konflux Application openshift-pipelines-index-4.19 by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ImageRepository +metadata: + name: operator-next-index-4-19 + annotations: + image-controller.appstudio.redhat.com/update-component-image: "true" + image-controller.appstudio.redhat.com/skip-repository-deletion: "true" + labels: + appstudio.redhat.com/component: operator-next-index-4-19 + appstudio.redhat.com/application: openshift-pipelines-index-4-19-next +spec: + image: + name: operator/pipelines-index-4.19 + visibility: public + notifications: + - config: + url: https://bombino.api.redhat.com/v1/sbom/quay/push + event: repo_push + method: webhook + title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-index-4.19/next/release-plan.yaml b/.konflux/openshift-pipelines/openshift-pipelines-index-4.19/next/release-plan.yaml new file mode 100644 index 00000000..c1e47daf --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-index-4.19/next/release-plan.yaml @@ -0,0 +1,28 @@ +# Generated for Konflux Application openshift-pipelines-index-4.19 by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ReleasePlan +metadata: + labels: + release.appstudio.openshift.io/auto-release: "true" + release.appstudio.openshift.io/standing-attribution: 'true' + name: openshift-pipelines-index-4-19-next-rp +spec: + application: openshift-pipelines-index-4-19-next + tenantPipeline: + serviceAccountName: release-registry-openshift-pipelines-index-4-19 + pipelineRef: + resolver: git + params: + - name: url + value: https://github.com/openshift-pipelines/hack.git + - name: revision + # value: next + value: main + - name: pathInRepo + value: pipelines/release-pipeline.yaml + params: + - name: release_version + value: "next" + - name: release_to_github + value: "false" diff --git a/.konflux/openshift-pipelines/openshift-pipelines-index-4.19/next/release-tests.yaml b/.konflux/openshift-pipelines/openshift-pipelines-index-4.19/next/release-tests.yaml new file mode 100644 index 00000000..742383e1 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-index-4.19/next/release-tests.yaml @@ -0,0 +1,20 @@ +# Generated for Konflux Application openshift-pipelines-index-4.19 by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1beta2 +kind: IntegrationTestScenario +metadata: + name: openshift-pipelines-index-4-19-next-release-tests +spec: + application: openshift-pipelines-index-4-19-next + contexts: + - description: execute the integration test for a Snapshot created for a `push` event + name: push + resolverRef: + params: + - name: url + value: https://github.com/openshift-pipelines/operator + - name: revision + value: main + - name: pathInRepo + value: .konflux/tekton/release-test-pipeline.yaml + resolver: git diff --git a/.konflux/openshift-pipelines/openshift-pipelines-index-4.19/next/tests.yaml b/.konflux/openshift-pipelines/openshift-pipelines-index-4.19/next/tests.yaml new file mode 100644 index 00000000..8fc4c239 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-index-4.19/next/tests.yaml @@ -0,0 +1,27 @@ +# Generated for Konflux Application openshift-pipelines-index-4.19 by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1beta2 +kind: IntegrationTestScenario +metadata: + name: openshift-pipelines-index-4-19-next-enterprise-contract +spec: + application: openshift-pipelines-index-4-19-next + contexts: + - description: execute the integration test for a component + name: component + params: + - name: POLICY_CONFIGURATION + value: tekton-ecosystem-tenant/tekton-ecosystem-tenant-indexes + - name: TIMEOUT + value: "15m0s" + - name: SINGLE_COMPONENT + value: "true" + resolverRef: + params: + - name: url + value: "https://github.com/konflux-ci/build-definitions" + - name: revision + value: main + - name: pathInRepo + value: pipelines/enterprise-contract.yaml + resolver: git diff --git a/.konflux/openshift-pipelines/openshift-pipelines-index-4.20/1-22/release-tests.yaml b/.konflux/openshift-pipelines/openshift-pipelines-index-4.20/1-22/release-tests.yaml new file mode 100644 index 00000000..b34b770e --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-index-4.20/1-22/release-tests.yaml @@ -0,0 +1,20 @@ +# Generated for Konflux Application openshift-pipelines-index-4.20 by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1beta2 +kind: IntegrationTestScenario +metadata: + name: openshift-pipelines-index-4-20-1-22-release-tests +spec: + application: openshift-pipelines-index-4-20-1-22 + contexts: + - description: execute the integration test for a Snapshot created for a `push` event + name: push + resolverRef: + params: + - name: url + value: https://github.com/openshift-pipelines/operator + - name: revision + value: main + - name: pathInRepo + value: .konflux/tekton/release-test-pipeline.yaml + resolver: git diff --git a/.konflux/openshift-pipelines/openshift-pipelines-index-4.20/next/application.yaml b/.konflux/openshift-pipelines/openshift-pipelines-index-4.20/next/application.yaml new file mode 100644 index 00000000..b685bb96 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-index-4.20/next/application.yaml @@ -0,0 +1,8 @@ +# Generated for Konflux Application openshift-pipelines-index-4.20 by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Application +metadata: + name: openshift-pipelines-index-4-20-next +spec: + displayName: openshift-pipelines-index-4-20-next diff --git a/.konflux/openshift-pipelines/openshift-pipelines-index-4.20/next/operator/component-index-4.20-next.yaml b/.konflux/openshift-pipelines/openshift-pipelines-index-4.20/next/operator/component-index-4.20-next.yaml new file mode 100644 index 00000000..f7b5ddca --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-index-4.20/next/operator/component-index-4.20-next.yaml @@ -0,0 +1,18 @@ +# Generated for Konflux Application openshift-pipelines-index-4.20 by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Component +metadata: + annotations: + build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' + name: operator-next-index-4-20 +spec: + componentName: index-4-20 + application: openshift-pipelines-index-4-20-next + build-nudges-ref: + - + source: + git: + url: https://github.com/openshift-pipelines/operator.git + dockerfileUrl: .konflux/dockerfiles/index-4.20.Dockerfile + revision: next diff --git a/.konflux/openshift-pipelines/openshift-pipelines-index-4.20/next/operator/image-index-4.20-next.yaml b/.konflux/openshift-pipelines/openshift-pipelines-index-4.20/next/operator/image-index-4.20-next.yaml new file mode 100644 index 00000000..25a8209e --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-index-4.20/next/operator/image-index-4.20-next.yaml @@ -0,0 +1,22 @@ +# Generated for Konflux Application openshift-pipelines-index-4.20 by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ImageRepository +metadata: + name: operator-next-index-4-20 + annotations: + image-controller.appstudio.redhat.com/update-component-image: "true" + image-controller.appstudio.redhat.com/skip-repository-deletion: "true" + labels: + appstudio.redhat.com/component: operator-next-index-4-20 + appstudio.redhat.com/application: openshift-pipelines-index-4-20-next +spec: + image: + name: operator/pipelines-index-4.20 + visibility: public + notifications: + - config: + url: https://bombino.api.redhat.com/v1/sbom/quay/push + event: repo_push + method: webhook + title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-index-4.20/next/release-plan.yaml b/.konflux/openshift-pipelines/openshift-pipelines-index-4.20/next/release-plan.yaml new file mode 100644 index 00000000..6f918cb4 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-index-4.20/next/release-plan.yaml @@ -0,0 +1,28 @@ +# Generated for Konflux Application openshift-pipelines-index-4.20 by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ReleasePlan +metadata: + labels: + release.appstudio.openshift.io/auto-release: "true" + release.appstudio.openshift.io/standing-attribution: 'true' + name: openshift-pipelines-index-4-20-next-rp +spec: + application: openshift-pipelines-index-4-20-next + tenantPipeline: + serviceAccountName: release-registry-openshift-pipelines-index-4-20 + pipelineRef: + resolver: git + params: + - name: url + value: https://github.com/openshift-pipelines/hack.git + - name: revision + # value: next + value: main + - name: pathInRepo + value: pipelines/release-pipeline.yaml + params: + - name: release_version + value: "next" + - name: release_to_github + value: "false" diff --git a/.konflux/openshift-pipelines/openshift-pipelines-index-4.20/next/release-tests.yaml b/.konflux/openshift-pipelines/openshift-pipelines-index-4.20/next/release-tests.yaml new file mode 100644 index 00000000..0f96c46c --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-index-4.20/next/release-tests.yaml @@ -0,0 +1,20 @@ +# Generated for Konflux Application openshift-pipelines-index-4.20 by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1beta2 +kind: IntegrationTestScenario +metadata: + name: openshift-pipelines-index-4-20-next-release-tests +spec: + application: openshift-pipelines-index-4-20-next + contexts: + - description: execute the integration test for a Snapshot created for a `push` event + name: push + resolverRef: + params: + - name: url + value: https://github.com/openshift-pipelines/operator + - name: revision + value: main + - name: pathInRepo + value: .konflux/tekton/release-test-pipeline.yaml + resolver: git diff --git a/.konflux/openshift-pipelines/openshift-pipelines-index-4.20/next/tests.yaml b/.konflux/openshift-pipelines/openshift-pipelines-index-4.20/next/tests.yaml new file mode 100644 index 00000000..0a954dd6 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-index-4.20/next/tests.yaml @@ -0,0 +1,27 @@ +# Generated for Konflux Application openshift-pipelines-index-4.20 by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1beta2 +kind: IntegrationTestScenario +metadata: + name: openshift-pipelines-index-4-20-next-enterprise-contract +spec: + application: openshift-pipelines-index-4-20-next + contexts: + - description: execute the integration test for a component + name: component + params: + - name: POLICY_CONFIGURATION + value: tekton-ecosystem-tenant/tekton-ecosystem-tenant-indexes + - name: TIMEOUT + value: "15m0s" + - name: SINGLE_COMPONENT + value: "true" + resolverRef: + params: + - name: url + value: "https://github.com/konflux-ci/build-definitions" + - name: revision + value: main + - name: pathInRepo + value: pipelines/enterprise-contract.yaml + resolver: git diff --git a/.konflux/openshift-pipelines/openshift-pipelines-index-4.21/1-22/application.yaml b/.konflux/openshift-pipelines/openshift-pipelines-index-4.21/1-22/application.yaml new file mode 100644 index 00000000..babda23b --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-index-4.21/1-22/application.yaml @@ -0,0 +1,8 @@ +# Generated for Konflux Application openshift-pipelines-index-4.21 by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Application +metadata: + name: openshift-pipelines-index-4-21-1-22 +spec: + displayName: openshift-pipelines-index-4-21-1-22 diff --git a/.konflux/openshift-pipelines/openshift-pipelines-index-4.21/1-22/operator/component-index-4.21-1.22.yaml b/.konflux/openshift-pipelines/openshift-pipelines-index-4.21/1-22/operator/component-index-4.21-1.22.yaml new file mode 100644 index 00000000..76f37bac --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-index-4.21/1-22/operator/component-index-4.21-1.22.yaml @@ -0,0 +1,18 @@ +# Generated for Konflux Application openshift-pipelines-index-4.21 by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Component +metadata: + annotations: + build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' + name: operator-1-22-index-4-21 +spec: + componentName: index-4-21 + application: openshift-pipelines-index-4-21-1-22 + build-nudges-ref: + - + source: + git: + url: https://github.com/openshift-pipelines/operator.git + dockerfileUrl: .konflux/dockerfiles/index-4.21.Dockerfile + revision: release-v1.22.x diff --git a/.konflux/openshift-pipelines/openshift-pipelines-index-4.21/1-22/operator/image-index-4.21-1.22.yaml b/.konflux/openshift-pipelines/openshift-pipelines-index-4.21/1-22/operator/image-index-4.21-1.22.yaml new file mode 100644 index 00000000..5871f548 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-index-4.21/1-22/operator/image-index-4.21-1.22.yaml @@ -0,0 +1,22 @@ +# Generated for Konflux Application openshift-pipelines-index-4.21 by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ImageRepository +metadata: + name: operator-1-22-index-4-21 + annotations: + image-controller.appstudio.redhat.com/update-component-image: "true" + image-controller.appstudio.redhat.com/skip-repository-deletion: "true" + labels: + appstudio.redhat.com/component: operator-1-22-index-4-21 + appstudio.redhat.com/application: openshift-pipelines-index-4-21-1-22 +spec: + image: + name: operator/pipelines-index-4.21 + visibility: public + notifications: + - config: + url: https://bombino.api.redhat.com/v1/sbom/quay/push + event: repo_push + method: webhook + title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-index-4.21/1-22/release-plan.yaml b/.konflux/openshift-pipelines/openshift-pipelines-index-4.21/1-22/release-plan.yaml new file mode 100644 index 00000000..7f072dbe --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-index-4.21/1-22/release-plan.yaml @@ -0,0 +1,28 @@ +# Generated for Konflux Application openshift-pipelines-index-4.21 by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ReleasePlan +metadata: + labels: + release.appstudio.openshift.io/auto-release: "true" + release.appstudio.openshift.io/standing-attribution: 'true' + name: openshift-pipelines-index-4-21-1-22-rp +spec: + application: openshift-pipelines-index-4-21-1-22 + tenantPipeline: + serviceAccountName: release-registry-openshift-pipelines-index-4-21 + pipelineRef: + resolver: git + params: + - name: url + value: https://github.com/openshift-pipelines/hack.git + - name: revision + # value: release-v1.22.x + value: main + - name: pathInRepo + value: pipelines/release-pipeline.yaml + params: + - name: release_version + value: "v1.22.0" + - name: release_to_github + value: "false" diff --git a/.konflux/openshift-pipelines/openshift-pipelines-index-4.21/1-22/release-tests.yaml b/.konflux/openshift-pipelines/openshift-pipelines-index-4.21/1-22/release-tests.yaml new file mode 100644 index 00000000..aaa2ff6c --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-index-4.21/1-22/release-tests.yaml @@ -0,0 +1,20 @@ +# Generated for Konflux Application openshift-pipelines-index-4.21 by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1beta2 +kind: IntegrationTestScenario +metadata: + name: openshift-pipelines-index-4-21-1-22-release-tests +spec: + application: openshift-pipelines-index-4-21-1-22 + contexts: + - description: execute the integration test for a Snapshot created for a `push` event + name: push + resolverRef: + params: + - name: url + value: https://github.com/openshift-pipelines/operator + - name: revision + value: main + - name: pathInRepo + value: .konflux/tekton/release-test-pipeline.yaml + resolver: git diff --git a/.konflux/openshift-pipelines/openshift-pipelines-index-4.21/1-22/tests.yaml b/.konflux/openshift-pipelines/openshift-pipelines-index-4.21/1-22/tests.yaml new file mode 100644 index 00000000..31f11e52 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-index-4.21/1-22/tests.yaml @@ -0,0 +1,27 @@ +# Generated for Konflux Application openshift-pipelines-index-4.21 by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1beta2 +kind: IntegrationTestScenario +metadata: + name: openshift-pipelines-index-4-21-1-22-enterprise-contract +spec: + application: openshift-pipelines-index-4-21-1-22 + contexts: + - description: execute the integration test for a component + name: component + params: + - name: POLICY_CONFIGURATION + value: tekton-ecosystem-tenant/tekton-ecosystem-tenant-indexes + - name: TIMEOUT + value: "15m0s" + - name: SINGLE_COMPONENT + value: "true" + resolverRef: + params: + - name: url + value: "https://github.com/konflux-ci/build-definitions" + - name: revision + value: main + - name: pathInRepo + value: pipelines/enterprise-contract.yaml + resolver: git diff --git a/.konflux/openshift-pipelines/openshift-pipelines-index-4.21/next/application.yaml b/.konflux/openshift-pipelines/openshift-pipelines-index-4.21/next/application.yaml new file mode 100644 index 00000000..4e97cfc1 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-index-4.21/next/application.yaml @@ -0,0 +1,8 @@ +# Generated for Konflux Application openshift-pipelines-index-4.21 by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Application +metadata: + name: openshift-pipelines-index-4-21-next +spec: + displayName: openshift-pipelines-index-4-21-next diff --git a/.konflux/openshift-pipelines/openshift-pipelines-index-4.21/next/operator/component-index-4.21-next.yaml b/.konflux/openshift-pipelines/openshift-pipelines-index-4.21/next/operator/component-index-4.21-next.yaml new file mode 100644 index 00000000..e66ce288 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-index-4.21/next/operator/component-index-4.21-next.yaml @@ -0,0 +1,18 @@ +# Generated for Konflux Application openshift-pipelines-index-4.21 by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Component +metadata: + annotations: + build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' + name: operator-next-index-4-21 +spec: + componentName: index-4-21 + application: openshift-pipelines-index-4-21-next + build-nudges-ref: + - + source: + git: + url: https://github.com/openshift-pipelines/operator.git + dockerfileUrl: .konflux/dockerfiles/index-4.21.Dockerfile + revision: next diff --git a/.konflux/openshift-pipelines/openshift-pipelines-index-4.21/next/operator/image-index-4.21-next.yaml b/.konflux/openshift-pipelines/openshift-pipelines-index-4.21/next/operator/image-index-4.21-next.yaml new file mode 100644 index 00000000..47cf7de1 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-index-4.21/next/operator/image-index-4.21-next.yaml @@ -0,0 +1,22 @@ +# Generated for Konflux Application openshift-pipelines-index-4.21 by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ImageRepository +metadata: + name: operator-next-index-4-21 + annotations: + image-controller.appstudio.redhat.com/update-component-image: "true" + image-controller.appstudio.redhat.com/skip-repository-deletion: "true" + labels: + appstudio.redhat.com/component: operator-next-index-4-21 + appstudio.redhat.com/application: openshift-pipelines-index-4-21-next +spec: + image: + name: operator/pipelines-index-4.21 + visibility: public + notifications: + - config: + url: https://bombino.api.redhat.com/v1/sbom/quay/push + event: repo_push + method: webhook + title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-index-4.21/next/release-plan.yaml b/.konflux/openshift-pipelines/openshift-pipelines-index-4.21/next/release-plan.yaml new file mode 100644 index 00000000..0427aa57 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-index-4.21/next/release-plan.yaml @@ -0,0 +1,28 @@ +# Generated for Konflux Application openshift-pipelines-index-4.21 by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ReleasePlan +metadata: + labels: + release.appstudio.openshift.io/auto-release: "true" + release.appstudio.openshift.io/standing-attribution: 'true' + name: openshift-pipelines-index-4-21-next-rp +spec: + application: openshift-pipelines-index-4-21-next + tenantPipeline: + serviceAccountName: release-registry-openshift-pipelines-index-4-21 + pipelineRef: + resolver: git + params: + - name: url + value: https://github.com/openshift-pipelines/hack.git + - name: revision + # value: next + value: main + - name: pathInRepo + value: pipelines/release-pipeline.yaml + params: + - name: release_version + value: "next" + - name: release_to_github + value: "false" diff --git a/.konflux/openshift-pipelines/openshift-pipelines-index-4.21/next/release-tests.yaml b/.konflux/openshift-pipelines/openshift-pipelines-index-4.21/next/release-tests.yaml new file mode 100644 index 00000000..effbcd49 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-index-4.21/next/release-tests.yaml @@ -0,0 +1,20 @@ +# Generated for Konflux Application openshift-pipelines-index-4.21 by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1beta2 +kind: IntegrationTestScenario +metadata: + name: openshift-pipelines-index-4-21-next-release-tests +spec: + application: openshift-pipelines-index-4-21-next + contexts: + - description: execute the integration test for a Snapshot created for a `push` event + name: push + resolverRef: + params: + - name: url + value: https://github.com/openshift-pipelines/operator + - name: revision + value: main + - name: pathInRepo + value: .konflux/tekton/release-test-pipeline.yaml + resolver: git diff --git a/.konflux/openshift-pipelines/openshift-pipelines-index-4.21/next/tests.yaml b/.konflux/openshift-pipelines/openshift-pipelines-index-4.21/next/tests.yaml new file mode 100644 index 00000000..8d0495a5 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-index-4.21/next/tests.yaml @@ -0,0 +1,27 @@ +# Generated for Konflux Application openshift-pipelines-index-4.21 by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1beta2 +kind: IntegrationTestScenario +metadata: + name: openshift-pipelines-index-4-21-next-enterprise-contract +spec: + application: openshift-pipelines-index-4-21-next + contexts: + - description: execute the integration test for a component + name: component + params: + - name: POLICY_CONFIGURATION + value: tekton-ecosystem-tenant/tekton-ecosystem-tenant-indexes + - name: TIMEOUT + value: "15m0s" + - name: SINGLE_COMPONENT + value: "true" + resolverRef: + params: + - name: url + value: "https://github.com/konflux-ci/build-definitions" + - name: revision + value: main + - name: pathInRepo + value: pipelines/enterprise-contract.yaml + resolver: git diff --git a/.konflux/openshift-pipelines/openshift-pipelines-index-4.21/role.yaml b/.konflux/openshift-pipelines/openshift-pipelines-index-4.21/role.yaml new file mode 100644 index 00000000..ec37d4d2 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-index-4.21/role.yaml @@ -0,0 +1,14 @@ +# Generated for Konflux Application openshift-pipelines-index-4.21 by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: RoleBinding +metadata: + name: release-plan-rolebinding-openshift-pipelines-index-4-21 +subjects: + - kind: ServiceAccount + name: release-registry-openshift-pipelines-index-4-21 + apiGroup: "" +roleRef: + kind: ClusterRole + name: konflux-releaser-bot-actions + apiGroup: rbac.authorization.k8s.io \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-index-4.21/service-account.yaml b/.konflux/openshift-pipelines/openshift-pipelines-index-4.21/service-account.yaml new file mode 100644 index 00000000..10665c3c --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-index-4.21/service-account.yaml @@ -0,0 +1,10 @@ +# Generated for Konflux Application openshift-pipelines-index-4.21 by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: v1 +imagePullSecrets: + - name: release-registry-openshift-pipelines-quay +kind: ServiceAccount +metadata: + name: release-registry-openshift-pipelines-index-4-21 +secrets: + - name: release-registry-openshift-pipelines-quay \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-operator/next/application.yaml b/.konflux/openshift-pipelines/openshift-pipelines-operator/next/application.yaml new file mode 100644 index 00000000..cccd7676 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-operator/next/application.yaml @@ -0,0 +1,8 @@ +# Generated for Konflux Application openshift-pipelines-operator by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Application +metadata: + name: openshift-pipelines-operator-next +spec: + displayName: openshift-pipelines-operator-next diff --git a/.konflux/openshift-pipelines/openshift-pipelines-operator/next/operator/component-bundle-next.yaml b/.konflux/openshift-pipelines/openshift-pipelines-operator/next/operator/component-bundle-next.yaml new file mode 100644 index 00000000..edd88ef8 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-operator/next/operator/component-bundle-next.yaml @@ -0,0 +1,18 @@ +# Generated for Konflux Application openshift-pipelines-operator by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Component +metadata: + annotations: + build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' + name: operator-next-bundle +spec: + componentName: bundle + application: openshift-pipelines-operator-next + build-nudges-ref: + - operator-next-index-4-20 + source: + git: + url: https://github.com/openshift-pipelines/operator.git + dockerfileUrl: .konflux/dockerfiles/bundle.Dockerfile + revision: next diff --git a/.konflux/openshift-pipelines/openshift-pipelines-operator/next/operator/component-operator-next.yaml b/.konflux/openshift-pipelines/openshift-pipelines-operator/next/operator/component-operator-next.yaml new file mode 100644 index 00000000..fcf3c147 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-operator/next/operator/component-operator-next.yaml @@ -0,0 +1,18 @@ +# Generated for Konflux Application openshift-pipelines-operator by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Component +metadata: + annotations: + build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' + name: operator-next-operator +spec: + componentName: operator + application: openshift-pipelines-operator-next + build-nudges-ref: + - operator-next-bundle + source: + git: + url: https://github.com/openshift-pipelines/operator.git + dockerfileUrl: .konflux/dockerfiles/operator.Dockerfile + revision: next diff --git a/.konflux/openshift-pipelines/openshift-pipelines-operator/next/operator/component-proxy-next.yaml b/.konflux/openshift-pipelines/openshift-pipelines-operator/next/operator/component-proxy-next.yaml new file mode 100644 index 00000000..e867e66f --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-operator/next/operator/component-proxy-next.yaml @@ -0,0 +1,18 @@ +# Generated for Konflux Application openshift-pipelines-operator by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Component +metadata: + annotations: + build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' + name: operator-next-proxy +spec: + componentName: proxy + application: openshift-pipelines-operator-next + build-nudges-ref: + - operator-next-bundle + source: + git: + url: https://github.com/openshift-pipelines/operator.git + dockerfileUrl: .konflux/dockerfiles/proxy.Dockerfile + revision: next diff --git a/.konflux/openshift-pipelines/openshift-pipelines-operator/next/operator/component-webhook-next.yaml b/.konflux/openshift-pipelines/openshift-pipelines-operator/next/operator/component-webhook-next.yaml new file mode 100644 index 00000000..ecac7cff --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-operator/next/operator/component-webhook-next.yaml @@ -0,0 +1,18 @@ +# Generated for Konflux Application openshift-pipelines-operator by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: Component +metadata: + annotations: + build.appstudio.openshift.io/pipeline: '{"name":"docker-build-multi-platform-oci-ta","bundle":"latest"}' + name: operator-next-webhook +spec: + componentName: webhook + application: openshift-pipelines-operator-next + build-nudges-ref: + - operator-next-bundle + source: + git: + url: https://github.com/openshift-pipelines/operator.git + dockerfileUrl: .konflux/dockerfiles/webhook.Dockerfile + revision: next diff --git a/.konflux/openshift-pipelines/openshift-pipelines-operator/next/operator/image-bundle-next.yaml b/.konflux/openshift-pipelines/openshift-pipelines-operator/next/operator/image-bundle-next.yaml new file mode 100644 index 00000000..c082d056 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-operator/next/operator/image-bundle-next.yaml @@ -0,0 +1,22 @@ +# Generated for Konflux Application openshift-pipelines-operator by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ImageRepository +metadata: + name: operator-next-bundle + annotations: + image-controller.appstudio.redhat.com/update-component-image: "true" + image-controller.appstudio.redhat.com/skip-repository-deletion: "true" + labels: + appstudio.redhat.com/component: operator-next-bundle + appstudio.redhat.com/application: openshift-pipelines-operator-next +spec: + image: + name: pipelines-operator-bundle + visibility: public + notifications: + - config: + url: https://bombino.api.redhat.com/v1/sbom/quay/push + event: repo_push + method: webhook + title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-operator/next/operator/image-operator-next.yaml b/.konflux/openshift-pipelines/openshift-pipelines-operator/next/operator/image-operator-next.yaml new file mode 100644 index 00000000..cc2174b6 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-operator/next/operator/image-operator-next.yaml @@ -0,0 +1,22 @@ +# Generated for Konflux Application openshift-pipelines-operator by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ImageRepository +metadata: + name: operator-next-operator + annotations: + image-controller.appstudio.redhat.com/update-component-image: "true" + image-controller.appstudio.redhat.com/skip-repository-deletion: "true" + labels: + appstudio.redhat.com/component: operator-next-operator + appstudio.redhat.com/application: openshift-pipelines-operator-next +spec: + image: + name: pipelines-rhel9-operator + visibility: public + notifications: + - config: + url: https://bombino.api.redhat.com/v1/sbom/quay/push + event: repo_push + method: webhook + title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-operator/next/operator/image-proxy-next.yaml b/.konflux/openshift-pipelines/openshift-pipelines-operator/next/operator/image-proxy-next.yaml new file mode 100644 index 00000000..47c52bcb --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-operator/next/operator/image-proxy-next.yaml @@ -0,0 +1,22 @@ +# Generated for Konflux Application openshift-pipelines-operator by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ImageRepository +metadata: + name: operator-next-proxy + annotations: + image-controller.appstudio.redhat.com/update-component-image: "true" + image-controller.appstudio.redhat.com/skip-repository-deletion: "true" + labels: + appstudio.redhat.com/component: operator-next-proxy + appstudio.redhat.com/application: openshift-pipelines-operator-next +spec: + image: + name: pipelines-operator-proxy-rhel9 + visibility: public + notifications: + - config: + url: https://bombino.api.redhat.com/v1/sbom/quay/push + event: repo_push + method: webhook + title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-operator/next/operator/image-webhook-next.yaml b/.konflux/openshift-pipelines/openshift-pipelines-operator/next/operator/image-webhook-next.yaml new file mode 100644 index 00000000..d5d47f24 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-operator/next/operator/image-webhook-next.yaml @@ -0,0 +1,22 @@ +# Generated for Konflux Application openshift-pipelines-operator by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ImageRepository +metadata: + name: operator-next-webhook + annotations: + image-controller.appstudio.redhat.com/update-component-image: "true" + image-controller.appstudio.redhat.com/skip-repository-deletion: "true" + labels: + appstudio.redhat.com/component: operator-next-webhook + appstudio.redhat.com/application: openshift-pipelines-operator-next +spec: + image: + name: pipelines-operator-webhook-rhel9 + visibility: public + notifications: + - config: + url: https://bombino.api.redhat.com/v1/sbom/quay/push + event: repo_push + method: webhook + title: SBOM-event-to-Bombino \ No newline at end of file diff --git a/.konflux/openshift-pipelines/openshift-pipelines-operator/next/release-plan.yaml b/.konflux/openshift-pipelines/openshift-pipelines-operator/next/release-plan.yaml new file mode 100644 index 00000000..de2570ae --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-operator/next/release-plan.yaml @@ -0,0 +1,28 @@ +# Generated for Konflux Application openshift-pipelines-operator by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1alpha1 +kind: ReleasePlan +metadata: + labels: + release.appstudio.openshift.io/auto-release: "true" + release.appstudio.openshift.io/standing-attribution: 'true' + name: openshift-pipelines-operator-next-rp +spec: + application: openshift-pipelines-operator-next + tenantPipeline: + serviceAccountName: release-registry-openshift-pipelines-operator + pipelineRef: + resolver: git + params: + - name: url + value: https://github.com/openshift-pipelines/hack.git + - name: revision + # value: next + value: main + - name: pathInRepo + value: pipelines/release-pipeline.yaml + params: + - name: release_version + value: "next" + - name: release_to_github + value: "false" diff --git a/.konflux/openshift-pipelines/openshift-pipelines-operator/next/tests.yaml b/.konflux/openshift-pipelines/openshift-pipelines-operator/next/tests.yaml new file mode 100644 index 00000000..6d042d75 --- /dev/null +++ b/.konflux/openshift-pipelines/openshift-pipelines-operator/next/tests.yaml @@ -0,0 +1,27 @@ +# Generated for Konflux Application openshift-pipelines-operator by openshift-pipelines/hack. DO NOT EDIT +--- +apiVersion: appstudio.redhat.com/v1beta2 +kind: IntegrationTestScenario +metadata: + name: openshift-pipelines-operator-next-enterprise-contract +spec: + application: openshift-pipelines-operator-next + contexts: + - description: execute the integration test for a component + name: component + params: + - name: POLICY_CONFIGURATION + value: tekton-ecosystem-tenant/tekton-ecosystem-tenant-containers + - name: TIMEOUT + value: "15m0s" + - name: SINGLE_COMPONENT + value: "true" + resolverRef: + params: + - name: url + value: "https://github.com/konflux-ci/build-definitions" + - name: revision + value: main + - name: pathInRepo + value: pipelines/enterprise-contract.yaml + resolver: git