inventory.yml 591 B

123456789101112131415161718192021222324252627
  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.14"
  14. ocp_z: "4.14.12"
  15. # These are the tools we need, some also need to be downloaded.
  16. tools:
  17. oc:
  18. final_name: /usr/bin/oc
  19. completion: yes
  20. completion_file: oc
  21. # The list of OpenShift clusters check-env will try to connect to.
  22. clusters:
  23. - ocp4
  24. ...