main.yml 3.7 KB

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