main.yml 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. ---
  2. - name: Set hostname and ip facts
  3. set_fact:
  4. # Store etcd_hostname and etcd_ip such that they will be available
  5. # in hostvars. Defaults for these variables are set in etcd_common.
  6. etcd_hostname: "{{ etcd_hostname }}"
  7. etcd_ip: "{{ etcd_ip }}"
  8. - name: setup firewall
  9. import_tasks: firewall.yml
  10. - name: Install etcd
  11. package: name=etcd{{ '-' + etcd_version if etcd_version is defined else '' }} state=present
  12. when: not etcd_is_containerized | bool
  13. register: result
  14. until: result is succeeded
  15. - include_tasks: drop_etcdctl.yml
  16. when:
  17. - openshift_etcd_etcdctl_profile | default(true) | bool
  18. - block:
  19. - name: Pull etcd container
  20. command: docker pull {{ etcd_image }}
  21. register: pull_result
  22. changed_when: "'Downloaded newer image' in pull_result.stdout"
  23. - name: Install etcd container service file
  24. template:
  25. dest: "/etc/systemd/system/etcd_container.service"
  26. src: etcd.docker.service
  27. when:
  28. - etcd_is_containerized | bool
  29. - not l_is_etcd_system_container | bool
  30. # Start secondary etcd instance for third party integrations
  31. # TODO: Determine an alternative to using thirdparty variable
  32. - block:
  33. - name: Create configuration directory
  34. file:
  35. path: "{{ etcd_conf_dir }}"
  36. state: directory
  37. mode: 0700
  38. # TODO: retest with symlink to confirm it does or does not function
  39. - name: Copy service file for etcd instance
  40. copy:
  41. src: /usr/lib/systemd/system/etcd.service
  42. dest: "/etc/systemd/system/{{ etcd_service }}.service"
  43. remote_src: True
  44. - name: Create third party etcd service.d directory exists
  45. file:
  46. path: "{{ etcd_systemd_dir }}"
  47. state: directory
  48. - name: Configure third part etcd service unit file
  49. template:
  50. dest: "{{ etcd_systemd_dir }}/custom.conf"
  51. src: custom.conf.j2
  52. when: etcd_is_thirdparty
  53. # TODO: this task may not be needed with Validate permissions
  54. - name: Ensure etcd datadir exists
  55. file:
  56. path: "{{ etcd_data_dir }}"
  57. state: directory
  58. mode: 0700
  59. when: etcd_is_containerized | bool
  60. - name: Ensure etcd datadir ownership for thirdparty datadir
  61. file:
  62. path: "{{ etcd_data_dir }}"
  63. state: directory
  64. mode: 0700
  65. owner: etcd
  66. group: etcd
  67. recurse: True
  68. when: etcd_is_thirdparty | bool
  69. # TODO: Determine if the below reload would work here, for now just reload
  70. - name:
  71. command: systemctl daemon-reload
  72. when: etcd_is_thirdparty | bool
  73. - block:
  74. - name: Disable system etcd when containerized
  75. systemd:
  76. name: etcd
  77. state: stopped
  78. enabled: no
  79. masked: yes
  80. daemon_reload: yes
  81. when: not l_is_etcd_system_container | bool
  82. register: task_result
  83. failed_when:
  84. - task_result is failed
  85. - ('could not' not in task_result.msg|lower)
  86. - name: Install etcd container service file
  87. template:
  88. dest: "/etc/systemd/system/etcd_container.service"
  89. src: etcd.docker.service
  90. when: not l_is_etcd_system_container | bool
  91. - name: Install Etcd system container
  92. include_tasks: system_container.yml
  93. when: l_is_etcd_system_container | bool
  94. when: etcd_is_containerized | bool
  95. - name: Validate permissions on the config dir
  96. file:
  97. path: "{{ etcd_conf_dir }}"
  98. state: directory
  99. owner: "{{ 'etcd' if not etcd_is_containerized | bool else omit }}"
  100. group: "{{ 'etcd' if not etcd_is_containerized | bool else omit }}"
  101. mode: 0700
  102. - name: Write etcd global config file
  103. template:
  104. src: etcd.conf.j2
  105. dest: "{{ etcd_conf_file }}"
  106. backup: true
  107. notify:
  108. - restart etcd
  109. - name: Enable etcd
  110. systemd:
  111. name: "{{ etcd_service }}"
  112. state: started
  113. enabled: yes
  114. register: start_result
  115. - name: Set fact etcd_service_status_changed
  116. set_fact:
  117. etcd_service_status_changed: "{{ start_result is changed }}"