main.yml 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. ---
  2. #
  3. # Image name:
  4. #
  5. openshift_autoheal_image_dict:
  6. origin:
  7. prefix: "docker.io/openshift/"
  8. version: v0.0.1
  9. openshift-enterprise:
  10. prefix: "registry.access.redhat.com/openshift3/ose-"
  11. version: "{{ openshift_image_tag }}"
  12. openshift_autoheal_image_prefix: "{{ openshift_autoheal_image_dict[openshift_deployment_type]['prefix'] }}"
  13. openshift_autoheal_image_version: "{{ openshift_autoheal_image_dict[openshift_deployment_type]['version'] }}"
  14. openshift_autoheal_image: "{{ openshift_autoheal_image_prefix }}autoheal:{{ openshift_autoheal_image_version }}"
  15. #
  16. # Content of the configuration file of the auto-heal service. Note that this is
  17. # a minimal example configuration. For more details and examples see the
  18. # documentation of the auto-heal service:
  19. #
  20. # https://github.com/openshift/autoheal
  21. #
  22. # In particular see the example configuration file:
  23. #
  24. # https://github.com/openshift/autoheal/blob/master/autoheal.yml
  25. #
  26. openshift_autoheal_config: |+
  27. awx:
  28. address: "https://myawx.example.com/api"
  29. credentials:
  30. username: "autoheal"
  31. password: "..."
  32. project: "Auto-heal"