-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[zuul] Add job to test deploying a specific version of OCP
Add crc_ocp_bundle value to select OCP version Depends-On: https://review.rdoproject.org/r/c/config/+/48800
- Loading branch information
1 parent
1f6aa2c
commit 1ccac26
Showing
2 changed files
with
29 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,23 @@ | ||
--- | ||
- job: | ||
name: stf-crc-ocp410 | ||
parent: base-simple-crc | ||
run: | ||
- ci/check_ocp_version.yml | ||
vars: | ||
crc_ocp_bundle: 'https://mirror.openshift.com/pub/openshift-v4/clients/crc/bundles/openshift/4.10.9/crc_libvirt_4.10.9_amd64.crcbundle' | ||
|
||
- job: | ||
name: stf-crc-ocp412 | ||
parent: base-simple-crc | ||
run: | ||
- ci/check_ocp_version.yml | ||
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' | ||
|
||
- project: | ||
name: infrawatch/service-telemetry-operator | ||
github-check: | ||
jobs: | ||
- noop | ||
- stf-crc-ocp410 | ||
- stf-crc-ocp412 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- | ||
- hosts: controller | ||
tasks: | ||
- ansible.builtin.shell: | ||
cmd: | | ||
oc version | ||
register: oc_version | ||
|
||
- name: Show the oc version | ||
ansible.builtin.debug: | ||
var: oc_version |