deploy-central.yml 215 B

123456789101112
  1. ---
  2. - name: Make sure central is deployed
  3. hosts: workstation.lab.example.com
  4. gather_subset: min
  5. become: no
  6. roles:
  7. # - role: check-env
  8. # tags: check
  9. - role: deploy-central
  10. tags: deploy
  11. ...