From db0ce6eeee12914401a429b61b6d0bf54b228074 Mon Sep 17 00:00:00 2001 From: Joseph Date: Wed, 15 Jul 2026 10:00:26 -0400 Subject: [PATCH 1/6] Add Prow presubmit CI for migtools/kopia oadp-1.4 Add ci-operator config and generated presubmit jobs for the migtools/kopia repository on the oadp-1.4 branch. This adds a required `build` test (go build ./...) and an optional `vet` test (go vet ./...) to catch compilation failures before merge. The vet test is marked optional because the rebase config has GO_VET_SKIP=1 for oadp-1.4, indicating known vet issues. Uses the ubi9-v1.25 builder image since oadp-1.4 go.mod requires Go 1.25. No images section is needed as kopia is a library dependency, not a built image. --- .../kopia/migtools-kopia-oadp-1.4.yaml | 38 +++++ .../migtools-kopia-oadp-1.4-presubmits.yaml | 147 ++++++++++++++++++ 2 files changed, 185 insertions(+) create mode 100644 ci-operator/config/migtools/kopia/migtools-kopia-oadp-1.4.yaml create mode 100644 ci-operator/jobs/migtools/kopia/migtools-kopia-oadp-1.4-presubmits.yaml diff --git a/ci-operator/config/migtools/kopia/migtools-kopia-oadp-1.4.yaml b/ci-operator/config/migtools/kopia/migtools-kopia-oadp-1.4.yaml new file mode 100644 index 0000000000000..3da91ea350065 --- /dev/null +++ b/ci-operator/config/migtools/kopia/migtools-kopia-oadp-1.4.yaml @@ -0,0 +1,38 @@ +build_root: + image_stream_tag: + name: builder + namespace: konveyor + tag: ubi9-v1.25 +resources: + '*': + limits: + memory: 4Gi + requests: + cpu: 100m + memory: 200Mi +tests: +- as: build + steps: + test: + - as: build + commands: go build ./... + from: src + resources: + requests: + cpu: 100m + memory: 200Mi +- as: vet + optional: true + steps: + test: + - as: vet + commands: go vet ./... + from: src + resources: + requests: + cpu: 100m + memory: 200Mi +zz_generated_metadata: + branch: oadp-1.4 + org: migtools + repo: kopia diff --git a/ci-operator/jobs/migtools/kopia/migtools-kopia-oadp-1.4-presubmits.yaml b/ci-operator/jobs/migtools/kopia/migtools-kopia-oadp-1.4-presubmits.yaml new file mode 100644 index 0000000000000..723fa5edefb53 --- /dev/null +++ b/ci-operator/jobs/migtools/kopia/migtools-kopia-oadp-1.4-presubmits.yaml @@ -0,0 +1,147 @@ +presubmits: + migtools/kopia: + - agent: kubernetes + always_run: true + branches: + - ^oadp-1\.4$ + - ^oadp-1\.4- + context: ci/prow/build + decorate: true + decoration_config: + skip_cloning: true + labels: + ci.openshift.io/generator: prowgen + pj-rehearse.openshift.io/can-be-rehearsed: "true" + name: pull-ci-migtools-kopia-oadp-1.4-build + rerun_command: /test build + spec: + containers: + - args: + - --gcs-upload-secret=/secrets/gcs/service-account.json + - --image-import-pull-secret=/etc/pull-secret/.dockerconfigjson + - --lease-server-credentials-file=/etc/boskos/credentials + - --report-credentials-file=/etc/report/credentials + - --target=build + command: + - ci-operator + env: + - name: HTTP_SERVER_IP + valueFrom: + fieldRef: + fieldPath: status.podIP + image: quay-proxy.ci.openshift.org/openshift/ci:ci_ci-operator_latest + imagePullPolicy: Always + name: "" + ports: + - containerPort: 8080 + name: http + resources: + requests: + cpu: 10m + volumeMounts: + - mountPath: /etc/boskos + name: boskos + readOnly: true + - mountPath: /secrets/gcs + name: gcs-credentials + readOnly: true + - mountPath: /secrets/manifest-tool + name: manifest-tool-local-pusher + readOnly: true + - mountPath: /etc/pull-secret + name: pull-secret + readOnly: true + - mountPath: /etc/report + name: result-aggregator + readOnly: true + serviceAccountName: ci-operator + volumes: + - name: boskos + secret: + items: + - key: credentials + path: credentials + secretName: boskos-credentials + - name: manifest-tool-local-pusher + secret: + secretName: manifest-tool-local-pusher + - name: pull-secret + secret: + secretName: registry-pull-credentials + - name: result-aggregator + secret: + secretName: result-aggregator + trigger: (?m)^/test( | .* )build,?($|\s.*) + - agent: kubernetes + always_run: true + branches: + - ^oadp-1\.4$ + - ^oadp-1\.4- + context: ci/prow/vet + decorate: true + decoration_config: + skip_cloning: true + labels: + ci.openshift.io/generator: prowgen + pj-rehearse.openshift.io/can-be-rehearsed: "true" + name: pull-ci-migtools-kopia-oadp-1.4-vet + optional: true + rerun_command: /test vet + spec: + containers: + - args: + - --gcs-upload-secret=/secrets/gcs/service-account.json + - --image-import-pull-secret=/etc/pull-secret/.dockerconfigjson + - --lease-server-credentials-file=/etc/boskos/credentials + - --report-credentials-file=/etc/report/credentials + - --target=vet + command: + - ci-operator + env: + - name: HTTP_SERVER_IP + valueFrom: + fieldRef: + fieldPath: status.podIP + image: quay-proxy.ci.openshift.org/openshift/ci:ci_ci-operator_latest + imagePullPolicy: Always + name: "" + ports: + - containerPort: 8080 + name: http + resources: + requests: + cpu: 10m + volumeMounts: + - mountPath: /etc/boskos + name: boskos + readOnly: true + - mountPath: /secrets/gcs + name: gcs-credentials + readOnly: true + - mountPath: /secrets/manifest-tool + name: manifest-tool-local-pusher + readOnly: true + - mountPath: /etc/pull-secret + name: pull-secret + readOnly: true + - mountPath: /etc/report + name: result-aggregator + readOnly: true + serviceAccountName: ci-operator + volumes: + - name: boskos + secret: + items: + - key: credentials + path: credentials + secretName: boskos-credentials + - name: manifest-tool-local-pusher + secret: + secretName: manifest-tool-local-pusher + - name: pull-secret + secret: + secretName: registry-pull-credentials + - name: result-aggregator + secret: + secretName: result-aggregator + trigger: (?m)^/test( | .* )vet,?($|\s.*) From d72b8ff048671234ee39e1bc847792e7e69f4366 Mon Sep 17 00:00:00 2001 From: Joseph Date: Wed, 15 Jul 2026 10:32:49 -0400 Subject: [PATCH 2/6] Add Prow presubmit CI for migtools/kopia oadp-1.3, 1.5, 1.6 Add build and vet presubmit jobs for the remaining kopia release branches. Also add oadp-1.3 to the Tide branch list. Co-Authored-By: Claude Opus 4.6 (1M context) --- .../kopia/migtools-kopia-oadp-1.3.yaml | 38 +++++ .../kopia/migtools-kopia-oadp-1.5.yaml | 38 +++++ .../kopia/migtools-kopia-oadp-1.6.yaml | 38 +++++ .../migtools-kopia-oadp-1.3-presubmits.yaml | 147 ++++++++++++++++++ .../migtools-kopia-oadp-1.5-presubmits.yaml | 147 ++++++++++++++++++ .../migtools-kopia-oadp-1.6-presubmits.yaml | 147 ++++++++++++++++++ .../02_config/migtools/kopia/_prowconfig.yaml | 1 + 7 files changed, 556 insertions(+) create mode 100644 ci-operator/config/migtools/kopia/migtools-kopia-oadp-1.3.yaml create mode 100644 ci-operator/config/migtools/kopia/migtools-kopia-oadp-1.5.yaml create mode 100644 ci-operator/config/migtools/kopia/migtools-kopia-oadp-1.6.yaml create mode 100644 ci-operator/jobs/migtools/kopia/migtools-kopia-oadp-1.3-presubmits.yaml create mode 100644 ci-operator/jobs/migtools/kopia/migtools-kopia-oadp-1.5-presubmits.yaml create mode 100644 ci-operator/jobs/migtools/kopia/migtools-kopia-oadp-1.6-presubmits.yaml diff --git a/ci-operator/config/migtools/kopia/migtools-kopia-oadp-1.3.yaml b/ci-operator/config/migtools/kopia/migtools-kopia-oadp-1.3.yaml new file mode 100644 index 0000000000000..79ce0710f263d --- /dev/null +++ b/ci-operator/config/migtools/kopia/migtools-kopia-oadp-1.3.yaml @@ -0,0 +1,38 @@ +build_root: + image_stream_tag: + name: builder + namespace: konveyor + tag: ubi9-v1.25 +resources: + '*': + limits: + memory: 4Gi + requests: + cpu: 100m + memory: 200Mi +tests: +- as: build + steps: + test: + - as: build + commands: go build ./... + from: src + resources: + requests: + cpu: 100m + memory: 200Mi +- as: vet + optional: true + steps: + test: + - as: vet + commands: go vet ./... + from: src + resources: + requests: + cpu: 100m + memory: 200Mi +zz_generated_metadata: + branch: oadp-1.3 + org: migtools + repo: kopia diff --git a/ci-operator/config/migtools/kopia/migtools-kopia-oadp-1.5.yaml b/ci-operator/config/migtools/kopia/migtools-kopia-oadp-1.5.yaml new file mode 100644 index 0000000000000..0080be56d8432 --- /dev/null +++ b/ci-operator/config/migtools/kopia/migtools-kopia-oadp-1.5.yaml @@ -0,0 +1,38 @@ +build_root: + image_stream_tag: + name: builder + namespace: konveyor + tag: ubi9-v1.25 +resources: + '*': + limits: + memory: 4Gi + requests: + cpu: 100m + memory: 200Mi +tests: +- as: build + steps: + test: + - as: build + commands: go build ./... + from: src + resources: + requests: + cpu: 100m + memory: 200Mi +- as: vet + optional: true + steps: + test: + - as: vet + commands: go vet ./... + from: src + resources: + requests: + cpu: 100m + memory: 200Mi +zz_generated_metadata: + branch: oadp-1.5 + org: migtools + repo: kopia diff --git a/ci-operator/config/migtools/kopia/migtools-kopia-oadp-1.6.yaml b/ci-operator/config/migtools/kopia/migtools-kopia-oadp-1.6.yaml new file mode 100644 index 0000000000000..94de70cf11e5d --- /dev/null +++ b/ci-operator/config/migtools/kopia/migtools-kopia-oadp-1.6.yaml @@ -0,0 +1,38 @@ +build_root: + image_stream_tag: + name: builder + namespace: konveyor + tag: ubi9-v1.25 +resources: + '*': + limits: + memory: 4Gi + requests: + cpu: 100m + memory: 200Mi +tests: +- as: build + steps: + test: + - as: build + commands: go build ./... + from: src + resources: + requests: + cpu: 100m + memory: 200Mi +- as: vet + optional: true + steps: + test: + - as: vet + commands: go vet ./... + from: src + resources: + requests: + cpu: 100m + memory: 200Mi +zz_generated_metadata: + branch: oadp-1.6 + org: migtools + repo: kopia diff --git a/ci-operator/jobs/migtools/kopia/migtools-kopia-oadp-1.3-presubmits.yaml b/ci-operator/jobs/migtools/kopia/migtools-kopia-oadp-1.3-presubmits.yaml new file mode 100644 index 0000000000000..1ca3a34d4d6e3 --- /dev/null +++ b/ci-operator/jobs/migtools/kopia/migtools-kopia-oadp-1.3-presubmits.yaml @@ -0,0 +1,147 @@ +presubmits: + migtools/kopia: + - agent: kubernetes + always_run: true + branches: + - ^oadp-1\.3$ + - ^oadp-1\.3- + context: ci/prow/build + decorate: true + decoration_config: + skip_cloning: true + labels: + ci.openshift.io/generator: prowgen + pj-rehearse.openshift.io/can-be-rehearsed: "true" + name: pull-ci-migtools-kopia-oadp-1.3-build + rerun_command: /test build + spec: + containers: + - args: + - --gcs-upload-secret=/secrets/gcs/service-account.json + - --image-import-pull-secret=/etc/pull-secret/.dockerconfigjson + - --lease-server-credentials-file=/etc/boskos/credentials + - --report-credentials-file=/etc/report/credentials + - --target=build + command: + - ci-operator + env: + - name: HTTP_SERVER_IP + valueFrom: + fieldRef: + fieldPath: status.podIP + image: quay-proxy.ci.openshift.org/openshift/ci:ci_ci-operator_latest + imagePullPolicy: Always + name: "" + ports: + - containerPort: 8080 + name: http + resources: + requests: + cpu: 10m + volumeMounts: + - mountPath: /etc/boskos + name: boskos + readOnly: true + - mountPath: /secrets/gcs + name: gcs-credentials + readOnly: true + - mountPath: /secrets/manifest-tool + name: manifest-tool-local-pusher + readOnly: true + - mountPath: /etc/pull-secret + name: pull-secret + readOnly: true + - mountPath: /etc/report + name: result-aggregator + readOnly: true + serviceAccountName: ci-operator + volumes: + - name: boskos + secret: + items: + - key: credentials + path: credentials + secretName: boskos-credentials + - name: manifest-tool-local-pusher + secret: + secretName: manifest-tool-local-pusher + - name: pull-secret + secret: + secretName: registry-pull-credentials + - name: result-aggregator + secret: + secretName: result-aggregator + trigger: (?m)^/test( | .* )build,?($|\s.*) + - agent: kubernetes + always_run: true + branches: + - ^oadp-1\.3$ + - ^oadp-1\.3- + context: ci/prow/vet + decorate: true + decoration_config: + skip_cloning: true + labels: + ci.openshift.io/generator: prowgen + pj-rehearse.openshift.io/can-be-rehearsed: "true" + name: pull-ci-migtools-kopia-oadp-1.3-vet + optional: true + rerun_command: /test vet + spec: + containers: + - args: + - --gcs-upload-secret=/secrets/gcs/service-account.json + - --image-import-pull-secret=/etc/pull-secret/.dockerconfigjson + - --lease-server-credentials-file=/etc/boskos/credentials + - --report-credentials-file=/etc/report/credentials + - --target=vet + command: + - ci-operator + env: + - name: HTTP_SERVER_IP + valueFrom: + fieldRef: + fieldPath: status.podIP + image: quay-proxy.ci.openshift.org/openshift/ci:ci_ci-operator_latest + imagePullPolicy: Always + name: "" + ports: + - containerPort: 8080 + name: http + resources: + requests: + cpu: 10m + volumeMounts: + - mountPath: /etc/boskos + name: boskos + readOnly: true + - mountPath: /secrets/gcs + name: gcs-credentials + readOnly: true + - mountPath: /secrets/manifest-tool + name: manifest-tool-local-pusher + readOnly: true + - mountPath: /etc/pull-secret + name: pull-secret + readOnly: true + - mountPath: /etc/report + name: result-aggregator + readOnly: true + serviceAccountName: ci-operator + volumes: + - name: boskos + secret: + items: + - key: credentials + path: credentials + secretName: boskos-credentials + - name: manifest-tool-local-pusher + secret: + secretName: manifest-tool-local-pusher + - name: pull-secret + secret: + secretName: registry-pull-credentials + - name: result-aggregator + secret: + secretName: result-aggregator + trigger: (?m)^/test( | .* )vet,?($|\s.*) diff --git a/ci-operator/jobs/migtools/kopia/migtools-kopia-oadp-1.5-presubmits.yaml b/ci-operator/jobs/migtools/kopia/migtools-kopia-oadp-1.5-presubmits.yaml new file mode 100644 index 0000000000000..f938f19f22ae8 --- /dev/null +++ b/ci-operator/jobs/migtools/kopia/migtools-kopia-oadp-1.5-presubmits.yaml @@ -0,0 +1,147 @@ +presubmits: + migtools/kopia: + - agent: kubernetes + always_run: true + branches: + - ^oadp-1\.5$ + - ^oadp-1\.5- + context: ci/prow/build + decorate: true + decoration_config: + skip_cloning: true + labels: + ci.openshift.io/generator: prowgen + pj-rehearse.openshift.io/can-be-rehearsed: "true" + name: pull-ci-migtools-kopia-oadp-1.5-build + rerun_command: /test build + spec: + containers: + - args: + - --gcs-upload-secret=/secrets/gcs/service-account.json + - --image-import-pull-secret=/etc/pull-secret/.dockerconfigjson + - --lease-server-credentials-file=/etc/boskos/credentials + - --report-credentials-file=/etc/report/credentials + - --target=build + command: + - ci-operator + env: + - name: HTTP_SERVER_IP + valueFrom: + fieldRef: + fieldPath: status.podIP + image: quay-proxy.ci.openshift.org/openshift/ci:ci_ci-operator_latest + imagePullPolicy: Always + name: "" + ports: + - containerPort: 8080 + name: http + resources: + requests: + cpu: 10m + volumeMounts: + - mountPath: /etc/boskos + name: boskos + readOnly: true + - mountPath: /secrets/gcs + name: gcs-credentials + readOnly: true + - mountPath: /secrets/manifest-tool + name: manifest-tool-local-pusher + readOnly: true + - mountPath: /etc/pull-secret + name: pull-secret + readOnly: true + - mountPath: /etc/report + name: result-aggregator + readOnly: true + serviceAccountName: ci-operator + volumes: + - name: boskos + secret: + items: + - key: credentials + path: credentials + secretName: boskos-credentials + - name: manifest-tool-local-pusher + secret: + secretName: manifest-tool-local-pusher + - name: pull-secret + secret: + secretName: registry-pull-credentials + - name: result-aggregator + secret: + secretName: result-aggregator + trigger: (?m)^/test( | .* )build,?($|\s.*) + - agent: kubernetes + always_run: true + branches: + - ^oadp-1\.5$ + - ^oadp-1\.5- + context: ci/prow/vet + decorate: true + decoration_config: + skip_cloning: true + labels: + ci.openshift.io/generator: prowgen + pj-rehearse.openshift.io/can-be-rehearsed: "true" + name: pull-ci-migtools-kopia-oadp-1.5-vet + optional: true + rerun_command: /test vet + spec: + containers: + - args: + - --gcs-upload-secret=/secrets/gcs/service-account.json + - --image-import-pull-secret=/etc/pull-secret/.dockerconfigjson + - --lease-server-credentials-file=/etc/boskos/credentials + - --report-credentials-file=/etc/report/credentials + - --target=vet + command: + - ci-operator + env: + - name: HTTP_SERVER_IP + valueFrom: + fieldRef: + fieldPath: status.podIP + image: quay-proxy.ci.openshift.org/openshift/ci:ci_ci-operator_latest + imagePullPolicy: Always + name: "" + ports: + - containerPort: 8080 + name: http + resources: + requests: + cpu: 10m + volumeMounts: + - mountPath: /etc/boskos + name: boskos + readOnly: true + - mountPath: /secrets/gcs + name: gcs-credentials + readOnly: true + - mountPath: /secrets/manifest-tool + name: manifest-tool-local-pusher + readOnly: true + - mountPath: /etc/pull-secret + name: pull-secret + readOnly: true + - mountPath: /etc/report + name: result-aggregator + readOnly: true + serviceAccountName: ci-operator + volumes: + - name: boskos + secret: + items: + - key: credentials + path: credentials + secretName: boskos-credentials + - name: manifest-tool-local-pusher + secret: + secretName: manifest-tool-local-pusher + - name: pull-secret + secret: + secretName: registry-pull-credentials + - name: result-aggregator + secret: + secretName: result-aggregator + trigger: (?m)^/test( | .* )vet,?($|\s.*) diff --git a/ci-operator/jobs/migtools/kopia/migtools-kopia-oadp-1.6-presubmits.yaml b/ci-operator/jobs/migtools/kopia/migtools-kopia-oadp-1.6-presubmits.yaml new file mode 100644 index 0000000000000..1d4cd41c7a06b --- /dev/null +++ b/ci-operator/jobs/migtools/kopia/migtools-kopia-oadp-1.6-presubmits.yaml @@ -0,0 +1,147 @@ +presubmits: + migtools/kopia: + - agent: kubernetes + always_run: true + branches: + - ^oadp-1\.6$ + - ^oadp-1\.6- + context: ci/prow/build + decorate: true + decoration_config: + skip_cloning: true + labels: + ci.openshift.io/generator: prowgen + pj-rehearse.openshift.io/can-be-rehearsed: "true" + name: pull-ci-migtools-kopia-oadp-1.6-build + rerun_command: /test build + spec: + containers: + - args: + - --gcs-upload-secret=/secrets/gcs/service-account.json + - --image-import-pull-secret=/etc/pull-secret/.dockerconfigjson + - --lease-server-credentials-file=/etc/boskos/credentials + - --report-credentials-file=/etc/report/credentials + - --target=build + command: + - ci-operator + env: + - name: HTTP_SERVER_IP + valueFrom: + fieldRef: + fieldPath: status.podIP + image: quay-proxy.ci.openshift.org/openshift/ci:ci_ci-operator_latest + imagePullPolicy: Always + name: "" + ports: + - containerPort: 8080 + name: http + resources: + requests: + cpu: 10m + volumeMounts: + - mountPath: /etc/boskos + name: boskos + readOnly: true + - mountPath: /secrets/gcs + name: gcs-credentials + readOnly: true + - mountPath: /secrets/manifest-tool + name: manifest-tool-local-pusher + readOnly: true + - mountPath: /etc/pull-secret + name: pull-secret + readOnly: true + - mountPath: /etc/report + name: result-aggregator + readOnly: true + serviceAccountName: ci-operator + volumes: + - name: boskos + secret: + items: + - key: credentials + path: credentials + secretName: boskos-credentials + - name: manifest-tool-local-pusher + secret: + secretName: manifest-tool-local-pusher + - name: pull-secret + secret: + secretName: registry-pull-credentials + - name: result-aggregator + secret: + secretName: result-aggregator + trigger: (?m)^/test( | .* )build,?($|\s.*) + - agent: kubernetes + always_run: true + branches: + - ^oadp-1\.6$ + - ^oadp-1\.6- + context: ci/prow/vet + decorate: true + decoration_config: + skip_cloning: true + labels: + ci.openshift.io/generator: prowgen + pj-rehearse.openshift.io/can-be-rehearsed: "true" + name: pull-ci-migtools-kopia-oadp-1.6-vet + optional: true + rerun_command: /test vet + spec: + containers: + - args: + - --gcs-upload-secret=/secrets/gcs/service-account.json + - --image-import-pull-secret=/etc/pull-secret/.dockerconfigjson + - --lease-server-credentials-file=/etc/boskos/credentials + - --report-credentials-file=/etc/report/credentials + - --target=vet + command: + - ci-operator + env: + - name: HTTP_SERVER_IP + valueFrom: + fieldRef: + fieldPath: status.podIP + image: quay-proxy.ci.openshift.org/openshift/ci:ci_ci-operator_latest + imagePullPolicy: Always + name: "" + ports: + - containerPort: 8080 + name: http + resources: + requests: + cpu: 10m + volumeMounts: + - mountPath: /etc/boskos + name: boskos + readOnly: true + - mountPath: /secrets/gcs + name: gcs-credentials + readOnly: true + - mountPath: /secrets/manifest-tool + name: manifest-tool-local-pusher + readOnly: true + - mountPath: /etc/pull-secret + name: pull-secret + readOnly: true + - mountPath: /etc/report + name: result-aggregator + readOnly: true + serviceAccountName: ci-operator + volumes: + - name: boskos + secret: + items: + - key: credentials + path: credentials + secretName: boskos-credentials + - name: manifest-tool-local-pusher + secret: + secretName: manifest-tool-local-pusher + - name: pull-secret + secret: + secretName: registry-pull-credentials + - name: result-aggregator + secret: + secretName: result-aggregator + trigger: (?m)^/test( | .* )vet,?($|\s.*) diff --git a/core-services/prow/02_config/migtools/kopia/_prowconfig.yaml b/core-services/prow/02_config/migtools/kopia/_prowconfig.yaml index 3468db18a5c91..f169efa427500 100644 --- a/core-services/prow/02_config/migtools/kopia/_prowconfig.yaml +++ b/core-services/prow/02_config/migtools/kopia/_prowconfig.yaml @@ -16,6 +16,7 @@ branch-protection: tide: queries: - includedBranches: + - oadp-1.3 - oadp-1.4 - oadp-1.5 - oadp-1.6 From 0f605ec904eaeb92e4c416fcec67563b95934158 Mon Sep 17 00:00:00 2001 From: Joseph Date: Wed, 15 Jul 2026 10:46:28 -0400 Subject: [PATCH 3/6] Regenerate kopia presubmit jobs with sanitize-prow-jobs Adds cluster: build01 field required by CI formatting checks. Co-Authored-By: Claude Opus 4.6 (1M context) --- .../jobs/migtools/kopia/migtools-kopia-oadp-1.3-presubmits.yaml | 2 ++ .../jobs/migtools/kopia/migtools-kopia-oadp-1.4-presubmits.yaml | 2 ++ .../jobs/migtools/kopia/migtools-kopia-oadp-1.5-presubmits.yaml | 2 ++ .../jobs/migtools/kopia/migtools-kopia-oadp-1.6-presubmits.yaml | 2 ++ 4 files changed, 8 insertions(+) diff --git a/ci-operator/jobs/migtools/kopia/migtools-kopia-oadp-1.3-presubmits.yaml b/ci-operator/jobs/migtools/kopia/migtools-kopia-oadp-1.3-presubmits.yaml index 1ca3a34d4d6e3..868d26ecbfe97 100644 --- a/ci-operator/jobs/migtools/kopia/migtools-kopia-oadp-1.3-presubmits.yaml +++ b/ci-operator/jobs/migtools/kopia/migtools-kopia-oadp-1.3-presubmits.yaml @@ -5,6 +5,7 @@ presubmits: branches: - ^oadp-1\.3$ - ^oadp-1\.3- + cluster: build01 context: ci/prow/build decorate: true decoration_config: @@ -77,6 +78,7 @@ presubmits: branches: - ^oadp-1\.3$ - ^oadp-1\.3- + cluster: build01 context: ci/prow/vet decorate: true decoration_config: diff --git a/ci-operator/jobs/migtools/kopia/migtools-kopia-oadp-1.4-presubmits.yaml b/ci-operator/jobs/migtools/kopia/migtools-kopia-oadp-1.4-presubmits.yaml index 723fa5edefb53..470d619a81c35 100644 --- a/ci-operator/jobs/migtools/kopia/migtools-kopia-oadp-1.4-presubmits.yaml +++ b/ci-operator/jobs/migtools/kopia/migtools-kopia-oadp-1.4-presubmits.yaml @@ -5,6 +5,7 @@ presubmits: branches: - ^oadp-1\.4$ - ^oadp-1\.4- + cluster: build01 context: ci/prow/build decorate: true decoration_config: @@ -77,6 +78,7 @@ presubmits: branches: - ^oadp-1\.4$ - ^oadp-1\.4- + cluster: build01 context: ci/prow/vet decorate: true decoration_config: diff --git a/ci-operator/jobs/migtools/kopia/migtools-kopia-oadp-1.5-presubmits.yaml b/ci-operator/jobs/migtools/kopia/migtools-kopia-oadp-1.5-presubmits.yaml index f938f19f22ae8..b62370b18fbf1 100644 --- a/ci-operator/jobs/migtools/kopia/migtools-kopia-oadp-1.5-presubmits.yaml +++ b/ci-operator/jobs/migtools/kopia/migtools-kopia-oadp-1.5-presubmits.yaml @@ -5,6 +5,7 @@ presubmits: branches: - ^oadp-1\.5$ - ^oadp-1\.5- + cluster: build01 context: ci/prow/build decorate: true decoration_config: @@ -77,6 +78,7 @@ presubmits: branches: - ^oadp-1\.5$ - ^oadp-1\.5- + cluster: build01 context: ci/prow/vet decorate: true decoration_config: diff --git a/ci-operator/jobs/migtools/kopia/migtools-kopia-oadp-1.6-presubmits.yaml b/ci-operator/jobs/migtools/kopia/migtools-kopia-oadp-1.6-presubmits.yaml index 1d4cd41c7a06b..9a407add88e5e 100644 --- a/ci-operator/jobs/migtools/kopia/migtools-kopia-oadp-1.6-presubmits.yaml +++ b/ci-operator/jobs/migtools/kopia/migtools-kopia-oadp-1.6-presubmits.yaml @@ -5,6 +5,7 @@ presubmits: branches: - ^oadp-1\.6$ - ^oadp-1\.6- + cluster: build01 context: ci/prow/build decorate: true decoration_config: @@ -77,6 +78,7 @@ presubmits: branches: - ^oadp-1\.6$ - ^oadp-1\.6- + cluster: build01 context: ci/prow/vet decorate: true decoration_config: From db151bdc0971605ccd3652201cadc6a4fab59adc Mon Sep 17 00:00:00 2001 From: Joseph Date: Wed, 15 Jul 2026 11:54:17 -0400 Subject: [PATCH 4/6] Remove vet presubmit, keep only build gate Co-Authored-By: Claude Opus 4.6 (1M context) --- .../kopia/migtools-kopia-oadp-1.3.yaml | 11 --- .../kopia/migtools-kopia-oadp-1.4.yaml | 11 --- .../kopia/migtools-kopia-oadp-1.5.yaml | 11 --- .../kopia/migtools-kopia-oadp-1.6.yaml | 11 --- .../migtools-kopia-oadp-1.3-presubmits.yaml | 74 ------------------- .../migtools-kopia-oadp-1.4-presubmits.yaml | 74 ------------------- .../migtools-kopia-oadp-1.5-presubmits.yaml | 74 ------------------- .../migtools-kopia-oadp-1.6-presubmits.yaml | 74 ------------------- 8 files changed, 340 deletions(-) diff --git a/ci-operator/config/migtools/kopia/migtools-kopia-oadp-1.3.yaml b/ci-operator/config/migtools/kopia/migtools-kopia-oadp-1.3.yaml index 79ce0710f263d..f3116f8c6ed70 100644 --- a/ci-operator/config/migtools/kopia/migtools-kopia-oadp-1.3.yaml +++ b/ci-operator/config/migtools/kopia/migtools-kopia-oadp-1.3.yaml @@ -21,17 +21,6 @@ tests: requests: cpu: 100m memory: 200Mi -- as: vet - optional: true - steps: - test: - - as: vet - commands: go vet ./... - from: src - resources: - requests: - cpu: 100m - memory: 200Mi zz_generated_metadata: branch: oadp-1.3 org: migtools diff --git a/ci-operator/config/migtools/kopia/migtools-kopia-oadp-1.4.yaml b/ci-operator/config/migtools/kopia/migtools-kopia-oadp-1.4.yaml index 3da91ea350065..f5592c4675cd6 100644 --- a/ci-operator/config/migtools/kopia/migtools-kopia-oadp-1.4.yaml +++ b/ci-operator/config/migtools/kopia/migtools-kopia-oadp-1.4.yaml @@ -21,17 +21,6 @@ tests: requests: cpu: 100m memory: 200Mi -- as: vet - optional: true - steps: - test: - - as: vet - commands: go vet ./... - from: src - resources: - requests: - cpu: 100m - memory: 200Mi zz_generated_metadata: branch: oadp-1.4 org: migtools diff --git a/ci-operator/config/migtools/kopia/migtools-kopia-oadp-1.5.yaml b/ci-operator/config/migtools/kopia/migtools-kopia-oadp-1.5.yaml index 0080be56d8432..ea876dc50427c 100644 --- a/ci-operator/config/migtools/kopia/migtools-kopia-oadp-1.5.yaml +++ b/ci-operator/config/migtools/kopia/migtools-kopia-oadp-1.5.yaml @@ -21,17 +21,6 @@ tests: requests: cpu: 100m memory: 200Mi -- as: vet - optional: true - steps: - test: - - as: vet - commands: go vet ./... - from: src - resources: - requests: - cpu: 100m - memory: 200Mi zz_generated_metadata: branch: oadp-1.5 org: migtools diff --git a/ci-operator/config/migtools/kopia/migtools-kopia-oadp-1.6.yaml b/ci-operator/config/migtools/kopia/migtools-kopia-oadp-1.6.yaml index 94de70cf11e5d..2390fb4a9c443 100644 --- a/ci-operator/config/migtools/kopia/migtools-kopia-oadp-1.6.yaml +++ b/ci-operator/config/migtools/kopia/migtools-kopia-oadp-1.6.yaml @@ -21,17 +21,6 @@ tests: requests: cpu: 100m memory: 200Mi -- as: vet - optional: true - steps: - test: - - as: vet - commands: go vet ./... - from: src - resources: - requests: - cpu: 100m - memory: 200Mi zz_generated_metadata: branch: oadp-1.6 org: migtools diff --git a/ci-operator/jobs/migtools/kopia/migtools-kopia-oadp-1.3-presubmits.yaml b/ci-operator/jobs/migtools/kopia/migtools-kopia-oadp-1.3-presubmits.yaml index 868d26ecbfe97..087204b6c7d7d 100644 --- a/ci-operator/jobs/migtools/kopia/migtools-kopia-oadp-1.3-presubmits.yaml +++ b/ci-operator/jobs/migtools/kopia/migtools-kopia-oadp-1.3-presubmits.yaml @@ -73,77 +73,3 @@ presubmits: secret: secretName: result-aggregator trigger: (?m)^/test( | .* )build,?($|\s.*) - - agent: kubernetes - always_run: true - branches: - - ^oadp-1\.3$ - - ^oadp-1\.3- - cluster: build01 - context: ci/prow/vet - decorate: true - decoration_config: - skip_cloning: true - labels: - ci.openshift.io/generator: prowgen - pj-rehearse.openshift.io/can-be-rehearsed: "true" - name: pull-ci-migtools-kopia-oadp-1.3-vet - optional: true - rerun_command: /test vet - spec: - containers: - - args: - - --gcs-upload-secret=/secrets/gcs/service-account.json - - --image-import-pull-secret=/etc/pull-secret/.dockerconfigjson - - --lease-server-credentials-file=/etc/boskos/credentials - - --report-credentials-file=/etc/report/credentials - - --target=vet - command: - - ci-operator - env: - - name: HTTP_SERVER_IP - valueFrom: - fieldRef: - fieldPath: status.podIP - image: quay-proxy.ci.openshift.org/openshift/ci:ci_ci-operator_latest - imagePullPolicy: Always - name: "" - ports: - - containerPort: 8080 - name: http - resources: - requests: - cpu: 10m - volumeMounts: - - mountPath: /etc/boskos - name: boskos - readOnly: true - - mountPath: /secrets/gcs - name: gcs-credentials - readOnly: true - - mountPath: /secrets/manifest-tool - name: manifest-tool-local-pusher - readOnly: true - - mountPath: /etc/pull-secret - name: pull-secret - readOnly: true - - mountPath: /etc/report - name: result-aggregator - readOnly: true - serviceAccountName: ci-operator - volumes: - - name: boskos - secret: - items: - - key: credentials - path: credentials - secretName: boskos-credentials - - name: manifest-tool-local-pusher - secret: - secretName: manifest-tool-local-pusher - - name: pull-secret - secret: - secretName: registry-pull-credentials - - name: result-aggregator - secret: - secretName: result-aggregator - trigger: (?m)^/test( | .* )vet,?($|\s.*) diff --git a/ci-operator/jobs/migtools/kopia/migtools-kopia-oadp-1.4-presubmits.yaml b/ci-operator/jobs/migtools/kopia/migtools-kopia-oadp-1.4-presubmits.yaml index 470d619a81c35..6c1984e7ea787 100644 --- a/ci-operator/jobs/migtools/kopia/migtools-kopia-oadp-1.4-presubmits.yaml +++ b/ci-operator/jobs/migtools/kopia/migtools-kopia-oadp-1.4-presubmits.yaml @@ -73,77 +73,3 @@ presubmits: secret: secretName: result-aggregator trigger: (?m)^/test( | .* )build,?($|\s.*) - - agent: kubernetes - always_run: true - branches: - - ^oadp-1\.4$ - - ^oadp-1\.4- - cluster: build01 - context: ci/prow/vet - decorate: true - decoration_config: - skip_cloning: true - labels: - ci.openshift.io/generator: prowgen - pj-rehearse.openshift.io/can-be-rehearsed: "true" - name: pull-ci-migtools-kopia-oadp-1.4-vet - optional: true - rerun_command: /test vet - spec: - containers: - - args: - - --gcs-upload-secret=/secrets/gcs/service-account.json - - --image-import-pull-secret=/etc/pull-secret/.dockerconfigjson - - --lease-server-credentials-file=/etc/boskos/credentials - - --report-credentials-file=/etc/report/credentials - - --target=vet - command: - - ci-operator - env: - - name: HTTP_SERVER_IP - valueFrom: - fieldRef: - fieldPath: status.podIP - image: quay-proxy.ci.openshift.org/openshift/ci:ci_ci-operator_latest - imagePullPolicy: Always - name: "" - ports: - - containerPort: 8080 - name: http - resources: - requests: - cpu: 10m - volumeMounts: - - mountPath: /etc/boskos - name: boskos - readOnly: true - - mountPath: /secrets/gcs - name: gcs-credentials - readOnly: true - - mountPath: /secrets/manifest-tool - name: manifest-tool-local-pusher - readOnly: true - - mountPath: /etc/pull-secret - name: pull-secret - readOnly: true - - mountPath: /etc/report - name: result-aggregator - readOnly: true - serviceAccountName: ci-operator - volumes: - - name: boskos - secret: - items: - - key: credentials - path: credentials - secretName: boskos-credentials - - name: manifest-tool-local-pusher - secret: - secretName: manifest-tool-local-pusher - - name: pull-secret - secret: - secretName: registry-pull-credentials - - name: result-aggregator - secret: - secretName: result-aggregator - trigger: (?m)^/test( | .* )vet,?($|\s.*) diff --git a/ci-operator/jobs/migtools/kopia/migtools-kopia-oadp-1.5-presubmits.yaml b/ci-operator/jobs/migtools/kopia/migtools-kopia-oadp-1.5-presubmits.yaml index b62370b18fbf1..efeda51fdf41b 100644 --- a/ci-operator/jobs/migtools/kopia/migtools-kopia-oadp-1.5-presubmits.yaml +++ b/ci-operator/jobs/migtools/kopia/migtools-kopia-oadp-1.5-presubmits.yaml @@ -73,77 +73,3 @@ presubmits: secret: secretName: result-aggregator trigger: (?m)^/test( | .* )build,?($|\s.*) - - agent: kubernetes - always_run: true - branches: - - ^oadp-1\.5$ - - ^oadp-1\.5- - cluster: build01 - context: ci/prow/vet - decorate: true - decoration_config: - skip_cloning: true - labels: - ci.openshift.io/generator: prowgen - pj-rehearse.openshift.io/can-be-rehearsed: "true" - name: pull-ci-migtools-kopia-oadp-1.5-vet - optional: true - rerun_command: /test vet - spec: - containers: - - args: - - --gcs-upload-secret=/secrets/gcs/service-account.json - - --image-import-pull-secret=/etc/pull-secret/.dockerconfigjson - - --lease-server-credentials-file=/etc/boskos/credentials - - --report-credentials-file=/etc/report/credentials - - --target=vet - command: - - ci-operator - env: - - name: HTTP_SERVER_IP - valueFrom: - fieldRef: - fieldPath: status.podIP - image: quay-proxy.ci.openshift.org/openshift/ci:ci_ci-operator_latest - imagePullPolicy: Always - name: "" - ports: - - containerPort: 8080 - name: http - resources: - requests: - cpu: 10m - volumeMounts: - - mountPath: /etc/boskos - name: boskos - readOnly: true - - mountPath: /secrets/gcs - name: gcs-credentials - readOnly: true - - mountPath: /secrets/manifest-tool - name: manifest-tool-local-pusher - readOnly: true - - mountPath: /etc/pull-secret - name: pull-secret - readOnly: true - - mountPath: /etc/report - name: result-aggregator - readOnly: true - serviceAccountName: ci-operator - volumes: - - name: boskos - secret: - items: - - key: credentials - path: credentials - secretName: boskos-credentials - - name: manifest-tool-local-pusher - secret: - secretName: manifest-tool-local-pusher - - name: pull-secret - secret: - secretName: registry-pull-credentials - - name: result-aggregator - secret: - secretName: result-aggregator - trigger: (?m)^/test( | .* )vet,?($|\s.*) diff --git a/ci-operator/jobs/migtools/kopia/migtools-kopia-oadp-1.6-presubmits.yaml b/ci-operator/jobs/migtools/kopia/migtools-kopia-oadp-1.6-presubmits.yaml index 9a407add88e5e..feb3855887fc8 100644 --- a/ci-operator/jobs/migtools/kopia/migtools-kopia-oadp-1.6-presubmits.yaml +++ b/ci-operator/jobs/migtools/kopia/migtools-kopia-oadp-1.6-presubmits.yaml @@ -73,77 +73,3 @@ presubmits: secret: secretName: result-aggregator trigger: (?m)^/test( | .* )build,?($|\s.*) - - agent: kubernetes - always_run: true - branches: - - ^oadp-1\.6$ - - ^oadp-1\.6- - cluster: build01 - context: ci/prow/vet - decorate: true - decoration_config: - skip_cloning: true - labels: - ci.openshift.io/generator: prowgen - pj-rehearse.openshift.io/can-be-rehearsed: "true" - name: pull-ci-migtools-kopia-oadp-1.6-vet - optional: true - rerun_command: /test vet - spec: - containers: - - args: - - --gcs-upload-secret=/secrets/gcs/service-account.json - - --image-import-pull-secret=/etc/pull-secret/.dockerconfigjson - - --lease-server-credentials-file=/etc/boskos/credentials - - --report-credentials-file=/etc/report/credentials - - --target=vet - command: - - ci-operator - env: - - name: HTTP_SERVER_IP - valueFrom: - fieldRef: - fieldPath: status.podIP - image: quay-proxy.ci.openshift.org/openshift/ci:ci_ci-operator_latest - imagePullPolicy: Always - name: "" - ports: - - containerPort: 8080 - name: http - resources: - requests: - cpu: 10m - volumeMounts: - - mountPath: /etc/boskos - name: boskos - readOnly: true - - mountPath: /secrets/gcs - name: gcs-credentials - readOnly: true - - mountPath: /secrets/manifest-tool - name: manifest-tool-local-pusher - readOnly: true - - mountPath: /etc/pull-secret - name: pull-secret - readOnly: true - - mountPath: /etc/report - name: result-aggregator - readOnly: true - serviceAccountName: ci-operator - volumes: - - name: boskos - secret: - items: - - key: credentials - path: credentials - secretName: boskos-credentials - - name: manifest-tool-local-pusher - secret: - secretName: manifest-tool-local-pusher - - name: pull-secret - secret: - secretName: registry-pull-credentials - - name: result-aggregator - secret: - secretName: result-aggregator - trigger: (?m)^/test( | .* )vet,?($|\s.*) From 1b1041767b8a7e976612ce8f28253bd897578b2b Mon Sep 17 00:00:00 2001 From: Joseph Date: Wed, 15 Jul 2026 11:57:00 -0400 Subject: [PATCH 5/6] Remove kopia rebasebot periodic jobs Co-Authored-By: Claude Opus 4.6 (1M context) --- .../migtools-kopia-oadp-1.5__periodics.yaml | 50 ------------- .../migtools-kopia-oadp-dev__periodics.yaml | 50 ------------- .../migtools-kopia-oadp-1.5-periodics.yaml | 74 ------------------- .../migtools-kopia-oadp-dev-periodics.yaml | 74 ------------------- 4 files changed, 248 deletions(-) delete mode 100644 ci-operator/config/migtools/kopia/migtools-kopia-oadp-1.5__periodics.yaml delete mode 100644 ci-operator/config/migtools/kopia/migtools-kopia-oadp-dev__periodics.yaml delete mode 100644 ci-operator/jobs/migtools/kopia/migtools-kopia-oadp-1.5-periodics.yaml delete mode 100644 ci-operator/jobs/migtools/kopia/migtools-kopia-oadp-dev-periodics.yaml diff --git a/ci-operator/config/migtools/kopia/migtools-kopia-oadp-1.5__periodics.yaml b/ci-operator/config/migtools/kopia/migtools-kopia-oadp-1.5__periodics.yaml deleted file mode 100644 index 7154473c2090e..0000000000000 --- a/ci-operator/config/migtools/kopia/migtools-kopia-oadp-1.5__periodics.yaml +++ /dev/null @@ -1,50 +0,0 @@ -base_images: - rebasebot: - name: rebasebot - namespace: ci - tag: latest -resources: - '*': - limits: - memory: 4Gi - requests: - cpu: 100m - memory: 200Mi -tests: -- as: rebasebot - cron: 0 1 * * Mon - steps: - test: - - as: rebasebot - commands: | - source <(curl --silent https://raw.githubusercontent.com/oadp-rebasebot/oadp-rebase/refs/heads/oadp-dev/rebase-configs/migtools_kopia_oadp-1.5.env.sh) - rebasebot --source "$SOURCE_UPSTREAM_REPO" \ - --dest "$DESTINATION_DOWNSTREAM_REPO" \ - --rebase "$REBASE_REPO" \ - --github-app-id 1810299 \ - --github-cloner-id 1810272 \ - --github-app-key /secrets/oadp-rebase-bot/oadp-rebasebot-app-key \ - --github-cloner-key /secrets/oadp-rebase-bot/oadp-rebasebot-cloner-key \ - --git-username oadp-team-rebase-bot \ - --git-email oadp-maintainers@redhat.com \ - ${HOOK_SCRIPTS:+$HOOK_SCRIPTS} \ - ${EXTRA_REBASEBOT_ARGS:+$EXTRA_REBASEBOT_ARGS} - credentials: - - mount_path: /secrets/oadp-rebase-bot - name: oadp-team-rebasebot-credentials - namespace: test-credentials - from_image: - name: rebasebot - namespace: ci - tag: latest - resources: - limits: - memory: 4Gi - requests: - cpu: 100m - memory: 200Mi -zz_generated_metadata: - branch: oadp-1.5 - org: migtools - repo: kopia - variant: periodics diff --git a/ci-operator/config/migtools/kopia/migtools-kopia-oadp-dev__periodics.yaml b/ci-operator/config/migtools/kopia/migtools-kopia-oadp-dev__periodics.yaml deleted file mode 100644 index 63bce25de2b91..0000000000000 --- a/ci-operator/config/migtools/kopia/migtools-kopia-oadp-dev__periodics.yaml +++ /dev/null @@ -1,50 +0,0 @@ -base_images: - rebasebot: - name: rebasebot - namespace: ci - tag: latest -resources: - '*': - limits: - memory: 4Gi - requests: - cpu: 100m - memory: 200Mi -tests: -- as: rebasebot - cron: 0 1 * * Mon,Wed,Fri - steps: - test: - - as: rebasebot - commands: | - source <(curl --silent https://raw.githubusercontent.com/oadp-rebasebot/oadp-rebase/refs/heads/oadp-dev/rebase-configs/migtools_kopia_oadp-dev.env.sh) - rebasebot --source "$SOURCE_UPSTREAM_REPO" \ - --dest "$DESTINATION_DOWNSTREAM_REPO" \ - --rebase "$REBASE_REPO" \ - --github-app-id 1810299 \ - --github-cloner-id 1810272 \ - --github-app-key /secrets/oadp-rebase-bot/oadp-rebasebot-app-key \ - --github-cloner-key /secrets/oadp-rebase-bot/oadp-rebasebot-cloner-key \ - --git-username oadp-team-rebase-bot \ - --git-email oadp-maintainers@redhat.com \ - ${HOOK_SCRIPTS:+$HOOK_SCRIPTS} \ - ${EXTRA_REBASEBOT_ARGS:+$EXTRA_REBASEBOT_ARGS} - credentials: - - mount_path: /secrets/oadp-rebase-bot - name: oadp-team-rebasebot-credentials - namespace: test-credentials - from_image: - name: rebasebot - namespace: ci - tag: latest - resources: - limits: - memory: 4Gi - requests: - cpu: 100m - memory: 200Mi -zz_generated_metadata: - branch: oadp-dev - org: migtools - repo: kopia - variant: periodics diff --git a/ci-operator/jobs/migtools/kopia/migtools-kopia-oadp-1.5-periodics.yaml b/ci-operator/jobs/migtools/kopia/migtools-kopia-oadp-1.5-periodics.yaml deleted file mode 100644 index b98f54717cf65..0000000000000 --- a/ci-operator/jobs/migtools/kopia/migtools-kopia-oadp-1.5-periodics.yaml +++ /dev/null @@ -1,74 +0,0 @@ -periodics: -- agent: kubernetes - cluster: build02 - cron: 0 1 * * Mon - decorate: true - decoration_config: - skip_cloning: true - extra_refs: - - base_ref: oadp-1.5 - org: migtools - repo: kopia - labels: - ci-operator.openshift.io/variant: periodics - ci.openshift.io/generator: prowgen - pj-rehearse.openshift.io/can-be-rehearsed: "true" - name: periodic-ci-migtools-kopia-oadp-1.5-periodics-rebasebot - spec: - containers: - - args: - - --gcs-upload-secret=/secrets/gcs/service-account.json - - --image-import-pull-secret=/etc/pull-secret/.dockerconfigjson - - --lease-server-credentials-file=/etc/boskos/credentials - - --report-credentials-file=/etc/report/credentials - - --target=rebasebot - - --variant=periodics - command: - - ci-operator - env: - - name: HTTP_SERVER_IP - valueFrom: - fieldRef: - fieldPath: status.podIP - image: quay-proxy.ci.openshift.org/openshift/ci:ci_ci-operator_latest - imagePullPolicy: Always - name: "" - ports: - - containerPort: 8080 - name: http - resources: - requests: - cpu: 10m - volumeMounts: - - mountPath: /etc/boskos - name: boskos - readOnly: true - - mountPath: /secrets/gcs - name: gcs-credentials - readOnly: true - - mountPath: /secrets/manifest-tool - name: manifest-tool-local-pusher - readOnly: true - - mountPath: /etc/pull-secret - name: pull-secret - readOnly: true - - mountPath: /etc/report - name: result-aggregator - readOnly: true - serviceAccountName: ci-operator - volumes: - - name: boskos - secret: - items: - - key: credentials - path: credentials - secretName: boskos-credentials - - name: manifest-tool-local-pusher - secret: - secretName: manifest-tool-local-pusher - - name: pull-secret - secret: - secretName: registry-pull-credentials - - name: result-aggregator - secret: - secretName: result-aggregator diff --git a/ci-operator/jobs/migtools/kopia/migtools-kopia-oadp-dev-periodics.yaml b/ci-operator/jobs/migtools/kopia/migtools-kopia-oadp-dev-periodics.yaml deleted file mode 100644 index 6135abab9c8c4..0000000000000 --- a/ci-operator/jobs/migtools/kopia/migtools-kopia-oadp-dev-periodics.yaml +++ /dev/null @@ -1,74 +0,0 @@ -periodics: -- agent: kubernetes - cluster: build02 - cron: 0 1 * * Mon,Wed,Fri - decorate: true - decoration_config: - skip_cloning: true - extra_refs: - - base_ref: oadp-dev - org: migtools - repo: kopia - labels: - ci-operator.openshift.io/variant: periodics - ci.openshift.io/generator: prowgen - pj-rehearse.openshift.io/can-be-rehearsed: "true" - name: periodic-ci-migtools-kopia-oadp-dev-periodics-rebasebot - spec: - containers: - - args: - - --gcs-upload-secret=/secrets/gcs/service-account.json - - --image-import-pull-secret=/etc/pull-secret/.dockerconfigjson - - --lease-server-credentials-file=/etc/boskos/credentials - - --report-credentials-file=/etc/report/credentials - - --target=rebasebot - - --variant=periodics - command: - - ci-operator - env: - - name: HTTP_SERVER_IP - valueFrom: - fieldRef: - fieldPath: status.podIP - image: quay-proxy.ci.openshift.org/openshift/ci:ci_ci-operator_latest - imagePullPolicy: Always - name: "" - ports: - - containerPort: 8080 - name: http - resources: - requests: - cpu: 10m - volumeMounts: - - mountPath: /etc/boskos - name: boskos - readOnly: true - - mountPath: /secrets/gcs - name: gcs-credentials - readOnly: true - - mountPath: /secrets/manifest-tool - name: manifest-tool-local-pusher - readOnly: true - - mountPath: /etc/pull-secret - name: pull-secret - readOnly: true - - mountPath: /etc/report - name: result-aggregator - readOnly: true - serviceAccountName: ci-operator - volumes: - - name: boskos - secret: - items: - - key: credentials - path: credentials - secretName: boskos-credentials - - name: manifest-tool-local-pusher - secret: - secretName: manifest-tool-local-pusher - - name: pull-secret - secret: - secretName: registry-pull-credentials - - name: result-aggregator - secret: - secretName: result-aggregator From 2e046cc53af90b93cd8f7a682d9e08ae442082c6 Mon Sep 17 00:00:00 2001 From: Joseph Date: Thu, 16 Jul 2026 10:03:37 -0400 Subject: [PATCH 6/6] Update build root to ubi9-v1.26 for Go 1.26 support Co-Authored-By: Claude Opus 4.6 (1M context) --- ci-operator/config/migtools/kopia/migtools-kopia-oadp-1.3.yaml | 2 +- ci-operator/config/migtools/kopia/migtools-kopia-oadp-1.4.yaml | 2 +- ci-operator/config/migtools/kopia/migtools-kopia-oadp-1.5.yaml | 2 +- ci-operator/config/migtools/kopia/migtools-kopia-oadp-1.6.yaml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ci-operator/config/migtools/kopia/migtools-kopia-oadp-1.3.yaml b/ci-operator/config/migtools/kopia/migtools-kopia-oadp-1.3.yaml index f3116f8c6ed70..6c03a4b1e0508 100644 --- a/ci-operator/config/migtools/kopia/migtools-kopia-oadp-1.3.yaml +++ b/ci-operator/config/migtools/kopia/migtools-kopia-oadp-1.3.yaml @@ -2,7 +2,7 @@ build_root: image_stream_tag: name: builder namespace: konveyor - tag: ubi9-v1.25 + tag: ubi9-v1.26 resources: '*': limits: diff --git a/ci-operator/config/migtools/kopia/migtools-kopia-oadp-1.4.yaml b/ci-operator/config/migtools/kopia/migtools-kopia-oadp-1.4.yaml index f5592c4675cd6..4f2d9d2ed2641 100644 --- a/ci-operator/config/migtools/kopia/migtools-kopia-oadp-1.4.yaml +++ b/ci-operator/config/migtools/kopia/migtools-kopia-oadp-1.4.yaml @@ -2,7 +2,7 @@ build_root: image_stream_tag: name: builder namespace: konveyor - tag: ubi9-v1.25 + tag: ubi9-v1.26 resources: '*': limits: diff --git a/ci-operator/config/migtools/kopia/migtools-kopia-oadp-1.5.yaml b/ci-operator/config/migtools/kopia/migtools-kopia-oadp-1.5.yaml index ea876dc50427c..c7fe3c161bebf 100644 --- a/ci-operator/config/migtools/kopia/migtools-kopia-oadp-1.5.yaml +++ b/ci-operator/config/migtools/kopia/migtools-kopia-oadp-1.5.yaml @@ -2,7 +2,7 @@ build_root: image_stream_tag: name: builder namespace: konveyor - tag: ubi9-v1.25 + tag: ubi9-v1.26 resources: '*': limits: diff --git a/ci-operator/config/migtools/kopia/migtools-kopia-oadp-1.6.yaml b/ci-operator/config/migtools/kopia/migtools-kopia-oadp-1.6.yaml index 2390fb4a9c443..28fda9a5d42ca 100644 --- a/ci-operator/config/migtools/kopia/migtools-kopia-oadp-1.6.yaml +++ b/ci-operator/config/migtools/kopia/migtools-kopia-oadp-1.6.yaml @@ -2,7 +2,7 @@ build_root: image_stream_tag: name: builder namespace: konveyor - tag: ubi9-v1.25 + tag: ubi9-v1.26 resources: '*': limits: