inventory.yml 785 B

123456789101112131415161718192021222324252627282930313233
  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.20"
  15. # We need this operator CSV. TODO reflect reality
  16. op_cat: redhat-operators
  17. op_pkg: compliance-operator
  18. desired_csv: compliance-operator.v1.3.0
  19. removed_source: do380-catalog
  20. # These are the tools we need, some also need to be downloaded.
  21. tools:
  22. oc:
  23. final_name: /usr/bin/oc
  24. completion: yes
  25. completion_file: oc
  26. # The list of OpenShift clusters check-env will try to connect to.
  27. clusters:
  28. - ocp4
  29. ...