site.yml 1.0 KB

1234567891011121314151617181920212223242526272829303132
  1. ---
  2. # If you want to skip the dangerous parts (destroying filesystems, writing to disks, etc.), run with:
  3. #
  4. # --skip-tags=destroy
  5. #
  6. # Unfortunately, you must run this one separately:
  7. # - import_playbook: 00-general-pre-flight.yml
  8. # Do everything else all at once, and in correct order.
  9. #
  10. #- import_playbook: 10-lab-tmp-fixes.yml <-- nothing to do here at the moment
  11. - import_playbook: 20-general-post-tmp.yml
  12. - import_playbook: 30-quay-pre-tasks.yml
  13. - import_playbook: 31-quay-dependencies.yml
  14. - import_playbook: 32-quay-deploy.yml
  15. - import_playbook: 33-clair-deploy.yml
  16. - import_playbook: 34-clair-disable.yml
  17. - import_playbook: 40-mirror-prep.yml
  18. # This one will probably blow up, so anything beyond this point will need to be
  19. # run manually to prevent excessive time wastage.
  20. - import_playbook: 45-oc-mirror.yml
  21. - import_playbook: 50-install-prepare.yml
  22. - import_playbook: 55-coreos-installer.yml
  23. - import_playbook: 60-agent-installation.yml
  24. - import_playbook: 65-agent-ipi-multinode.yml
  25. tags:
  26. - multinode
  27. ...