inventory.yml 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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. - kind: repositories
  46. apiv: pipelinesascode.tekton.dev/v1alpha1
  47. - kind: resolutionrequests
  48. apiv: resolution.tekton.dev/v1beta1
  49. - kind: clustertasks
  50. apiv: tekton.dev/v1beta1
  51. - kind: customruns
  52. apiv: tekton.dev/v1beta1
  53. - kind: pipelineruns
  54. apiv: tekton.dev/v1
  55. - kind: pipelines
  56. apiv: tekton.dev/v1
  57. - kind: stepactions
  58. apiv: tekton.dev/v1alpha1
  59. - kind: taskruns
  60. apiv: tekton.dev/v1
  61. - kind: tasks
  62. apiv: tekton.dev/v1
  63. - kind: verificationpolicies
  64. apiv: tekton.dev/v1alpha1
  65. - kind: clusterinterceptors
  66. apiv: triggers.tekton.dev/v1alpha1
  67. - kind: clustertriggerbindings
  68. apiv: triggers.tekton.dev/v1beta1
  69. - kind: eventlisteners
  70. apiv: triggers.tekton.dev/v1beta1
  71. - kind: interceptors
  72. apiv: triggers.tekton.dev/v1alpha1
  73. - kind: triggerbindings
  74. apiv: triggers.tekton.dev/v1beta1
  75. - kind: triggers
  76. apiv: triggers.tekton.dev/v1beta1
  77. - kind: triggertemplates
  78. apiv: triggers.tekton.dev/v1beta1
  79. # The list of OpenShift clusters check-env will try to connect to.
  80. clusters:
  81. - ocp4
  82. ...