main.yml 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. ---
  2. - name: Set node sdn OpenShift facts
  3. openshift_facts:
  4. role: 'node_sdn'
  5. local_facts:
  6. debug_level: "{{ openshift_node_sdn_debug_level | default(openshift.common.debug_level) }}"
  7. - name: Install openshift-sdn-node
  8. yum:
  9. pkg: openshift-sdn-node
  10. state: installed
  11. # TODO: we are specifying -hostname= for OPTIONS as a workaround for
  12. # openshift-sdn-node not properly detecting the hostname.
  13. - name: Configure openshift-sdn-node settings
  14. lineinfile:
  15. dest: /etc/sysconfig/openshift-sdn-node
  16. regexp: "{{ item.regex }}"
  17. line: "{{ item.line }}"
  18. backrefs: yes
  19. with_items:
  20. - regex: '^(OPTIONS=)'
  21. line: '\1"-v={{ openshift.node_sdn.debug_level }} -hostname={{ openshift.common.hostname }}"'
  22. - regex: '^(MASTER_URL=)'
  23. line: '\1"{{ openshift_sdn_master_url }}"'
  24. - regex: '^(MINION_IP=)'
  25. line: '\1"{{ openshift.common.ip }}"'
  26. # TODO lock down the insecure-registry config to a more sane value than
  27. # 0.0.0.0/0
  28. - regex: '^(DOCKER_OPTIONS=)'
  29. line: '\1"--insecure-registry=0.0.0.0/0 -b=lbr0 --mtu=1450 --selinux-enabled"'
  30. notify: restart openshift-sdn-node
  31. - name: Start and enable openshift-sdn-node
  32. service:
  33. name: openshift-sdn-node
  34. enabled: yes
  35. state: started