config.yml 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. ---
  2. # TODO: refactor this into its own include
  3. # and pass a variable for ctx
  4. - name: Verify Requirements
  5. hosts: oo_all_hosts
  6. roles:
  7. - openshift_health_checker
  8. vars:
  9. - r_openshift_health_checker_playbook_context: install
  10. post_tasks:
  11. - action: openshift_health_check
  12. args:
  13. checks:
  14. - disk_availability
  15. - memory_availability
  16. - package_availability
  17. - package_version
  18. - docker_image_availability
  19. - docker_storage
  20. - include: initialize_oo_option_facts.yml
  21. tags:
  22. - always
  23. - name: Set hostname
  24. hosts: oo_masters_to_config:oo_nodes_to_config
  25. tasks:
  26. - name: Set hostname
  27. hostname:
  28. name: "{{ openshift.common.hostname }}"
  29. when: openshift_set_hostname | default(True) | bool
  30. - include: ../openshift-etcd/config.yml
  31. - include: ../openshift-nfs/config.yml
  32. tags:
  33. - nfs
  34. - include: ../openshift-loadbalancer/config.yml
  35. tags:
  36. - loadbalancer
  37. - include: ../openshift-master/config.yml
  38. - include: ../openshift-node/config.yml
  39. tags:
  40. - node
  41. - include: ../openshift-glusterfs/config.yml
  42. tags:
  43. - glusterfs
  44. - include: openshift_hosted.yml
  45. tags:
  46. - hosted
  47. - include: service_catalog.yml
  48. when:
  49. - openshift_enable_service_catalog | default(false) | bool
  50. tags:
  51. - servicecatalog