Skip to content

Commit

Permalink
Narrow down disabling of RHUI repo to the one family that is failing (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
Molter73 authored Jun 25, 2024
1 parent d690942 commit dee2f3f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion ansible/group_vars/all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,10 @@ virtual_machines:
families:
- rhel-8-4-sap-ha
- rhel-8-6-sap-ha
container_engine: podman
# RHEL SAP 8.4 seems to have an older version of podman that
# fails with our integration tests, so we stick with docker
# for now.
container_engine: docker

rhcos:
project: rhcos-cloud
Expand Down
2 changes: 1 addition & 1 deletion ansible/roles/provision-vm/tasks/redhat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
- name: Disable troublesome repo
ansible.builtin.shell: |
dnf config-manager --disable rhui-codeready-builder-for-rhel-8-x86_64-rhui-source-rpms
when: vm_config.find('-8') != -1 and vm_arch == 'amd64'
when: vm_image_family == 'rhel-8'

- name: Install needed utilities
ansible.builtin.dnf:
Expand Down

0 comments on commit dee2f3f

Please sign in to comment.