inventory.yml 934 B

12345678910111213141516171819202122232425262728293031323334353637
  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 and RHSSO versions.
  13. ocp_maj: "4.10"
  14. ocp_z: "4.10.3"
  15. sso_z: "7.6.0"
  16. # These are the tools we need, some also need to be downloaded.
  17. tools:
  18. oc:
  19. final_name: /usr/bin/oc
  20. completion: yes
  21. completion_file: oc
  22. opm:
  23. download: yes
  24. download_filename: opm-linux-{{ ocp_z }}.tar.gz
  25. archive_filename: opm
  26. final_name: /usr/local/bin/opm
  27. completion: yes
  28. completion_file: opm
  29. # The list of OpenShift clusters check-env will try to connect to.
  30. clusters:
  31. - ocp4
  32. # Whether we will use a standalone RHSSO ZIP or not (only used in check-env).
  33. need_sso_zip: yes
  34. ...