inventory.yml 658 B

1234567891011121314151617181920212223242526272829
  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. amq_z: "7.11.0"
  17. amq_ch: "7.11.x"
  18. # These are the tools we need, some also need to be downloaded.
  19. tools:
  20. oc:
  21. final_name: /usr/bin/oc
  22. completion: yes
  23. completion_file: oc
  24. # The list of OpenShift clusters check-env will try to connect to.
  25. clusters:
  26. - ocp4
  27. ...