bootstrap.yml 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. #!/usr/bin/ansible-playbook
  2. ---
  3. - hosts: localhost
  4. gather_facts: yes
  5. vars:
  6. origin_dns:
  7. file: /etc/dnsmasq.d/origin-dns.conf
  8. lines:
  9. - regex: ^listen-address
  10. state: present
  11. line: "listen-address={{ ansible_default_ipv4.address }}"
  12. node_dns:
  13. file: /etc/dnsmasq.d/node-dnsmasq.conf
  14. lines:
  15. - regex: "^server=/in-addr.arpa/127.0.0.1$"
  16. line: server=/in-addr.arpa/127.0.0.1
  17. - regex: "^server=/cluster.local/127.0.0.1$"
  18. line: server=/cluster.local/127.0.0.1
  19. tasks:
  20. - include_vars: openshift_settings.yaml
  21. - name: set the data for node_dns
  22. lineinfile:
  23. create: yes
  24. insertafter: EOF
  25. path: "{{ node_dns.file }}"
  26. regexp: "{{ item.regex }}"
  27. line: "{{ item.line | default(omit) }}"
  28. with_items: "{{ node_dns.lines }}"
  29. - name: set the data for origin_dns
  30. lineinfile:
  31. create: yes
  32. state: "{{ item.state | default('present') }}"
  33. insertafter: "{{ item.after | default(omit) }}"
  34. path: "{{ origin_dns.file }}"
  35. regexp: "{{ item.regex }}"
  36. line: "{{ item.line | default(omit)}}"
  37. with_items: "{{ origin_dns.lines }}"
  38. - when:
  39. - openshift_group_type is defined
  40. - openshift_group_type != ''
  41. - openshift_group_type != 'master'
  42. block:
  43. - name: determine the openshift_service_type
  44. stat:
  45. path: /etc/sysconfig/atomic-openshift-node
  46. register: service_type_results
  47. - name: set openshift_service_type fact based on stat results
  48. set_fact:
  49. openshift_service_type: "{{ service_type_results.stat.exists | ternary('atomic-openshift', 'origin') }}"
  50. - name: update the sysconfig to have necessary variables
  51. lineinfile:
  52. dest: "/etc/sysconfig/{{ openshift_service_type }}-node"
  53. line: "{{ item.line }}"
  54. regexp: "{{ item.regexp }}"
  55. with_items:
  56. - line: "BOOTSTRAP_CONFIG_NAME=node-config-{{ openshift_group_type }}"
  57. regexp: "^BOOTSTRAP_CONFIG_NAME=.*"