Skip to content

Commit

Permalink
allow overriding the server/proxy OS
Browse files Browse the repository at this point in the history
this enables mixed-OS testing
  • Loading branch information
evgeni committed Jan 5, 2024
1 parent 7d5a7f2 commit a4dc563
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion pipelines/vars/forklift_clone.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
server_box:
box: "{{ pipeline_os }}"
box: "{{ pipeline_server_os | default(pipeline_os) }}"
memory: 8192
ansible:
variables:
Expand Down
2 changes: 1 addition & 1 deletion pipelines/vars/forklift_foreman.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
server_box:
box: "{{ pipeline_os }}"
box: "{{ pipeline_server_os | default(pipeline_os) }}"
memory: 4680
ansible:
variables:
Expand Down
4 changes: 2 additions & 2 deletions pipelines/vars/forklift_katello.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
server_box:
box: "{{ pipeline_os }}"
box: "{{ pipeline_server_os | default(pipeline_os) }}"
memory: 10240
ansible:
variables:
Expand All @@ -17,7 +17,7 @@ server_box:
- fb-katello-proxy.bats
- "{{ 'fb-test-katello-change-hostname.bats' if pipeline_action == 'install' else ''}}"
proxy_box:
box: "{{ pipeline_os }}"
box: "{{ pipeline_proxy_os | default(pipeline_os) }}"
memory: 3072
ansible:
variables:
Expand Down
4 changes: 2 additions & 2 deletions pipelines/vars/forklift_luna.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
server_box:
box: "{{ pipeline_os }}"
box: "{{ pipeline_server_os | default(pipeline_os) }}"
memory: 10240
ansible:
variables:
Expand Down Expand Up @@ -63,7 +63,7 @@ server_box:
- "fb-katello-proxy.bats"
- "{{ 'fb-test-katello-change-hostname.bats' if pipeline_action == 'install' else ''}}"
proxy_box:
box: "{{ pipeline_os }}"
box: "{{ pipeline_proxy_os | default(pipeline_os) }}"
memory: 3072
ansible:
variables:
Expand Down
2 changes: 1 addition & 1 deletion pipelines/vars/forklift_plugins.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
server_box:
box: "{{ pipeline_os }}"
box: "{{ pipeline_server_os | default(pipeline_os) }}"
memory: 8192
ansible:
variables:
Expand Down
2 changes: 1 addition & 1 deletion pipelines/vars/forklift_pulpcore.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
server_box:
box: "{{ pipeline_os }}"
box: "{{ pipeline_server_os | default(pipeline_os) }}"
memory: 4680

forklift_boxes:
Expand Down

0 comments on commit a4dc563

Please sign in to comment.