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

Enable content proxy testing on EL8 Katello pipelines #1285

Merged
merged 1 commit into from Feb 3, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions pipelines/vars/forklift_katello.yml
Expand Up @@ -14,7 +14,7 @@ server_box:
- "--puppet-server-jvm-min-heap-size 1G"
- "--puppet-server-jvm-max-heap-size 1G"
bats_tests_additional:
"{{ ['fb-katello-proxy.bats'] if pipeline_os != 'centos8' else [] }}"
- fb-katello-proxy.bats
proxy_box:
box: "{{ pipeline_os }}"
memory: 3072
Expand All @@ -27,4 +27,4 @@ proxy_box:
foreman_installer_additional_packages:
- foreman-proxy-content
forklift_boxes:
"{{ {forklift_server_name: server_box, forklift_smoker_name: smoker_box} | combine({forklift_proxy_name: proxy_box} if pipeline_os != 'centos8' else {}) }}"
"{{ {forklift_server_name: server_box, forklift_proxy_name: proxy_box, forklift_smoker_name: smoker_box} }}"
4 changes: 4 additions & 0 deletions roles/katello_repositories/tasks/main.yml
Expand Up @@ -7,3 +7,7 @@
when: ansible_distribution_major_version == "8"
args:
warn: false # dnf module can't handle modules

- name: enable powertools for libdb_cxx used by qpid-cpp-server-linearstore
command: dnf config-manager --set-enabled powertools
when: ansible_distribution_major_version == "8"