main.yml 3.7 KB

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