inventory.yml 675 B

123456789101112131415161718192021222324252627282930
  1. ---
  2. # A simplistic inventory for the classroom VMs.
  3. all:
  4. hosts:
  5. workstation.lab.example.com:
  6. ansible_connection: local
  7. utility.lab.example.com:
  8. ansible_user: lab
  9. bastion.lab.example.com:
  10. ansible_user: root
  11. vars:
  12. # OpenShift versions.
  13. ocp_maj: "4.10"
  14. ocp_z: "4.10.3"
  15. # Various AMQ versions.
  16. eap_v: "7.4"
  17. eap_z: "7.4.12"
  18. eap_ch: "stable"
  19. # These are the tools we need, some also need to be downloaded.
  20. tools:
  21. oc:
  22. final_name: /usr/bin/oc
  23. completion: yes
  24. completion_file: oc
  25. # The list of OpenShift clusters check-env will try to connect to.
  26. clusters:
  27. - ocp4
  28. ...