diff --git a/ansible/fluffy.yml b/ansible/fluffy.yml index 65483e3..fe64a17 100644 --- a/ansible/fluffy.yml +++ b/ansible/fluffy.yml @@ -22,11 +22,3 @@ with_sequence: start=1 end=32 loop_control: loop_var: index - -- name: Configure Nimbus Portal Bridge - become: true - vars_files: portal-bridge.yml - hosts: - - metal-01.ih-eu-mda1.nimbus.fluffy - roles: - - { role: infra-role-portal-bridge, tags: portal-bridge } diff --git a/ansible/portal.yml b/ansible/portal.yml new file mode 100644 index 0000000..05f8f0f --- /dev/null +++ b/ansible/portal.yml @@ -0,0 +1,19 @@ +--- +- name: verify ansible versions + hosts: all + tags: always + become: false + run_once: true + gather_facts: false + tasks: + - local_action: command ./roles.py --check + changed_when: false + +- name: Configure Nimbus Portal Bridge + become: true + vars_files: portal-bridge.yml + hosts: + - metal-01.ih-eu-mda1.nimbus.fluffy + roles: + - { role: infra-role-nimbus-fluffy, tags: nimbus-fluffy } + - { role: infra-role-portal-bridge, tags: portal-bridge }