main.yml 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. ---
  2. # TODO: allow for overriding default ports where possible
  3. - fail:
  4. msg: This role requres that osn_cluster_dns_domain is set
  5. when: osn_cluster_dns_domain is not defined or not osn_cluster_dns_domain
  6. - fail:
  7. msg: This role requres that osn_cluster_dns_ip is set
  8. when: osn_cluster_dns_ip is not defined or not osn_cluster_dns_ip
  9. - name: Install OpenShift Node package
  10. yum: pkg=openshift-node state=present
  11. register: node_install_result
  12. - name: Install openshift-sdn-ovs
  13. yum: pkg=openshift-sdn-ovs state=present
  14. register: sdn_install_result
  15. when: openshift.common.use_openshift_sdn
  16. - name: Set node OpenShift facts
  17. openshift_facts:
  18. role: "{{ item.role }}"
  19. local_facts: "{{ item.local_facts }}"
  20. with_items:
  21. - role: common
  22. local_facts:
  23. hostname: "{{ openshift_hostname | default(none) }}"
  24. public_hostname: "{{ openshift_public_hostname | default(none) }}"
  25. deployment_type: "{{ openshift_deployment_type }}"
  26. - role: node
  27. local_facts:
  28. labels: "{{ openshift_node_labels | default(none) }}"
  29. annotations: "{{ openshift_node_annotations | default(none) }}"
  30. registry_url: "{{ oreg_url | default(none) }}"
  31. debug_level: "{{ openshift_node_debug_level | default(openshift.common.debug_level) }}"
  32. portal_net: "{{ openshift_master_portal_net | default(None) }}"
  33. # TODO: add the validate parameter when there is a validation command to run
  34. - name: Create the Node config
  35. template:
  36. dest: "{{ openshift_node_config_file }}"
  37. src: node.yaml.v1.j2
  38. notify:
  39. - restart openshift-node
  40. - name: Configure OpenShift Node settings
  41. lineinfile:
  42. dest: /etc/sysconfig/openshift-node
  43. regexp: "{{ item.regex }}"
  44. line: "{{ item.line }}"
  45. with_items:
  46. - regex: '^OPTIONS='
  47. line: "OPTIONS=--loglevel={{ openshift.node.debug_level }}"
  48. - regex: '^CONFIG_FILE='
  49. line: "CONFIG_FILE={{ openshift_node_config_file }}"
  50. notify:
  51. - restart openshift-node
  52. - stat: path=/etc/sysconfig/docker
  53. register: docker_check
  54. # TODO: Enable secure registry when code available in origin
  55. - name: Secure OpenShift Registry
  56. lineinfile:
  57. dest: /etc/sysconfig/docker
  58. regexp: '^OPTIONS=.*'
  59. line: "OPTIONS='--insecure-registry={{ openshift.node.portal_net }} --selinux-enabled'"
  60. when: docker_check.stat.isreg
  61. - name: Allow NFS access for VMs
  62. seboolean: name=virt_use_nfs state=yes persistent=yes
  63. - name: Start and enable openshift-node
  64. service: name=openshift-node enabled=yes state=started