inventory.yml 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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.0"
  15. # Operator that needs to be installed.
  16. op_cat: redhat-operators
  17. op_pkg: amq-streams
  18. op_chn: stable
  19. op_nsp: openshift-operators
  20. desired_csv: amqstreams.v2.7.0-4
  21. # Some cleanup here.
  22. removed_operators:
  23. - sub_nspc: openshift-operators
  24. sub_name: openshift-pipelines-operator
  25. csv_name: foobar
  26. pre_cleanup:
  27. - kind: openshiftpipelinesascodes
  28. apiv: operator.tekton.dev/v1alpha1
  29. - kind: tektonaddons
  30. apiv: operator.tekton.dev/v1alpha1
  31. - kind: tektonchains
  32. apiv: operator.tekton.dev/v1alpha1
  33. - kind: tektonconfigs
  34. apiv: operator.tekton.dev/v1alpha1
  35. - kind: tektonhubs
  36. apiv: operator.tekton.dev/v1alpha1
  37. - kind: tektoninstallersets
  38. apiv: operator.tekton.dev/v1alpha1
  39. - kind: tektonpipelines
  40. apiv: operator.tekton.dev/v1alpha1
  41. - kind: tektonresults
  42. apiv: operator.tekton.dev/v1alpha1
  43. - kind: tektontriggers
  44. apiv: operator.tekton.dev/v1alpha1
  45. add_cleanup:
  46. - openshiftpipelinesascodes.operator.tekton.dev
  47. - tektonaddons.operator.tekton.dev
  48. - tektonchains.operator.tekton.dev
  49. - tektonconfigs.operator.tekton.dev
  50. - tektonhubs.operator.tekton.dev
  51. - tektoninstallersets.operator.tekton.dev
  52. - tektonpipelines.operator.tekton.dev
  53. - tektonresults.operator.tekton.dev
  54. - tektontriggers.operator.tekton.dev
  55. # The list of OpenShift clusters check-env will try to connect to.
  56. clusters:
  57. - ocp4
  58. ...