bootstrap.yml.j2 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. {% raw %}
  2. #!/usr/bin/ansible-playbook
  3. ---
  4. - hosts: localhost
  5. gather_facts: yes
  6. vars:
  7. origin_dns:
  8. file: /etc/dnsmasq.d/origin-dns.conf
  9. lines:
  10. - regex: ^listen-address
  11. state: present
  12. line: "listen-address={{ ansible_default_ipv4.address }}"
  13. tasks:
  14. - include_vars: openshift_settings.yaml
  15. - name: set the data for origin_dns
  16. lineinfile:
  17. create: yes
  18. state: "{{ item.state | default('present') }}"
  19. insertafter: "{{ item.after | default(omit) }}"
  20. path: "{{ origin_dns.file }}"
  21. regexp: "{{ item.regex }}"
  22. line: "{{ item.line | default(omit)}}"
  23. with_items: "{{ origin_dns.lines }}"
  24. - when:
  25. - openshift_group_type is defined
  26. - openshift_group_type != ''
  27. - openshift_group_type != 'master'
  28. block:
  29. - name: determine the openshift_service_type
  30. stat:
  31. path: /etc/sysconfig/atomic-openshift-node
  32. register: service_type_results
  33. - name: set openshift_service_type fact based on stat results
  34. set_fact:
  35. openshift_service_type: "{{ service_type_results.stat.exists | ternary('atomic-openshift', 'origin') }}"
  36. - name: update the sysconfig to have necessary variables
  37. lineinfile:
  38. dest: "/etc/sysconfig/{{ openshift_service_type }}-node"
  39. line: "{{ item.line }}"
  40. regexp: "{{ item.regexp }}"
  41. with_items:
  42. - line: "BOOTSTRAP_CONFIG_NAME=node-config-{{ openshift_group_type }}"
  43. regexp: "^BOOTSTRAP_CONFIG_NAME=.*"
  44. {% endraw %}
  45. {% if openshift_cloudprovider_kind | default('') == 'aws' %}
  46. # need to update aws.conf file if the instance has come up in a new region
  47. - name: set up aws.conf
  48. block:
  49. - name: get current AZ
  50. uri:
  51. url: http://169.254.169.254/latest/meta-data/placement/availability-zone
  52. return_content: yes
  53. register: aws_out
  54. - name: set AZ in aws.conf
  55. ini_file:
  56. path: /etc/origin/cloudprovider/aws.conf
  57. section: Global
  58. option: Zone
  59. value: "{% raw %}{{ aws_out.content }}{% endraw %}"
  60. {% endif %}