| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- ---
- - name: Pre-flight checks only.
- hosts: workstation.lab.example.com
- gather_subset: min
- become: no
- tasks:
- - include_role:
- name: check-env
- apply:
- tags: check
- tags: check
- - include_role:
- name: fix-operators
- apply:
- tags: fix
- tags: fix
- - include_role:
- name: remove-operators
- apply:
- tags: prep
- loop: "{{ removed_operators }}"
- loop_control:
- loop_var: role
- tags: prep
- # FIXME if an installplan has multiple owners?
- - include_role:
- name: deploy-operators
- apply:
- tags: prep
- loop: "{{ added_operators }}"
- loop_control:
- loop_var: role
- tags: prep
- - include_role:
- name: install-labs
- apply:
- tags: workstation
- tags: workstation
- - include_role:
- name: prep-workspace
- apply:
- tags: workstation
- tags: workstation
- - include_role:
- name: setup-for-ad482
- apply:
- tags:
- - workstation
- - ad482
- tags:
- - workstation
- - ad482
- - include_role:
- name: setup-for-sakbf
- apply:
- tags:
- - workstation
- - sakbf
- tags:
- - workstation
- - sakbf
- ...
|