Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[zuul] Add jobs to test with different versions of OCP #432

Merged
merged 28 commits into from
Nov 14, 2023
Merged
Show file tree
Hide file tree
Changes from 25 commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
c770000
[zuul] Add job to test deploying a specific version of OCP
elfiesmelfie Jun 2, 2023
3a722bf
zuul: add log collection post-task to get crc logs
elfiesmelfie Sep 26, 2023
22caefe
Add ocp v13 and a timeout to the job
elfiesmelfie Sep 26, 2023
69be262
Add an explicit check for the ocp version
elfiesmelfie Sep 26, 2023
9fa3837
Update 4.10 version and fix var name
elfiesmelfie Sep 26, 2023
bfe93ba
Merge branch 'master' into efoley_add_crc_multiversion
elfiesmelfie Sep 26, 2023
3dcf8fa
add 4.11 and use a temp base job
elfiesmelfie Sep 27, 2023
773a016
Update versions and vars
elfiesmelfie Sep 27, 2023
784e7b3
Update ocp-411 to v4.11.18
elfiesmelfie Sep 29, 2023
fe3561d
Merge remote-tracking branch 'origin/master' into efoley_add_crc_mult…
elfiesmelfie Oct 31, 2023
fc8e1fc
[zuul] Set scenario for CRC version test job
elfiesmelfie Nov 1, 2023
f62971d
Merge branch 'master' into efoley_add_crc_multiversion
elfiesmelfie Nov 1, 2023
0a42470
Merge branch 'master' into efoley_add_crc_multiversion
elfiesmelfie Nov 2, 2023
4863cfc
[zuul] Enable nightly_bundles with different ocp versions
elfiesmelfie Nov 3, 2023
5b6b66d
[zuul] Remove 4.11 jobs
elfiesmelfie Nov 3, 2023
01c8299
[zuul] update jobs
elfiesmelfie Nov 3, 2023
1fec530
Merge remote-tracking branch 'origin/master' into efoley_add_crc_mult…
elfiesmelfie Nov 6, 2023
8fe8f54
[zuul] Remove experimental microshift job
elfiesmelfie Nov 6, 2023
cdbd399
[zuul] Remove the low-op crc jobs
elfiesmelfie Nov 6, 2023
83531cf
Merge branch 'master' into efoley_add_crc_multiversion
elfiesmelfie Nov 7, 2023
016048d
[zuul] Add 4.14 jobs
elfiesmelfie Nov 7, 2023
14ddbc3
[zuul] Actually enable 4.14 jobs
elfiesmelfie Nov 7, 2023
f517985
Revert "[zuul] Actually enable 4.14 jobs"
elfiesmelfie Nov 7, 2023
f3d4001
Revert "[zuul] Add 4.14 jobs"
elfiesmelfie Nov 7, 2023
abcf67d
Merge branch 'master' into efoley_add_crc_multiversion
elfiesmelfie Nov 7, 2023
d334bd5
[zuul] Update job descriptions and mark abstract jobs
elfiesmelfie Nov 7, 2023
ebc638d
Merge branch 'master' into efoley_add_crc_multiversion
elfiesmelfie Nov 9, 2023
d0164ac
Merge branch 'master' into efoley_add_crc_multiversion
elfiesmelfie Nov 14, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 29 additions & 3 deletions .zuul.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
- name: github.com/infrawatch/sg-bridge
- name: github.com/infrawatch/sg-core
- name: github.com/infrawatch/prometheus-webhook-snmp

pre-run:
- ci/prepare.yml
run:
Expand Down Expand Up @@ -48,9 +47,36 @@
vars:
scenario: "local_build"

- job:
name: stf-crc-ocp_412-nightly_bundles
parent: stf-crc-latest-nightly_bundles
vars:
crc_ocp_bundle: 'https://mirror.openshift.com/pub/openshift-v4/clients/crc/bundles/openshift/4.12.13/crc_libvirt_4.12.13_amd64.crcbundle'

- job:
name: stf-crc-ocp_413-nightly_bundles
parent: stf-crc-latest-nightly_bundles
vars:
crc_ocp_bundle: 'https://mirror.openshift.com/pub/openshift-v4/clients/crc/bundles/openshift/4.13.14/crc_libvirt_4.13.14_amd64.crcbundle'

- job:
name: stf-crc-ocp_412-local_build
parent: stf-crc-latest-local_build
vars:
crc_ocp_bundle: 'https://mirror.openshift.com/pub/openshift-v4/clients/crc/bundles/openshift/4.12.13/crc_libvirt_4.12.13_amd64.crcbundle'

- job:
name: stf-crc-ocp_413-local_build
parent: stf-crc-latest-local_build
vars:
crc_ocp_bundle: 'https://mirror.openshift.com/pub/openshift-v4/clients/crc/bundles/openshift/4.13.14/crc_libvirt_4.13.14_amd64.crcbundle'

- project:
name: infrawatch/service-telemetry-operator
github-check:
jobs:
- stf-crc-latest-nightly_bundles
- stf-crc-latest-local_build
- stf-crc-ocp_412-nightly_bundles
- stf-crc-ocp_412-local_build
- stf-crc-ocp_413-nightly_bundles
- stf-crc-ocp_413-local_build

2 changes: 1 addition & 1 deletion ci/post-collect_logs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
ansible.builtin.shell: |
cp {{ ansible_env.HOME }}/*.log .
args:
chdir: "{{ ansible_user_dir }}/zuul-output/logs/controller"
chdir: "{{ logfile_dir }}"
changed_when: true
ignore_errors: true

Expand Down