main.yml 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. ---
  2. - include: server_certificates.yml
  3. - name: Set hostname and ip facts
  4. set_fact:
  5. # Store etcd_hostname and etcd_ip such that they will be available
  6. # in hostvars. Defaults for these variables are set in etcd_common.
  7. etcd_hostname: "{{ etcd_hostname }}"
  8. etcd_ip: "{{ etcd_ip }}"
  9. - name: setup firewall
  10. include: firewall.yml
  11. static: yes
  12. - name: Install etcd
  13. package: name=etcd{{ '-' + etcd_version if etcd_version is defined else '' }} state=present
  14. when: not etcd_is_containerized | bool
  15. - include: drop_etcdctl.yml
  16. when:
  17. - openshift_etcd_etcdctl_profile | default(true) | bool
  18. - block:
  19. - name: Pull etcd container
  20. command: docker pull {{ openshift.etcd.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 openshift.common.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 openshift.common.is_etcd_system_container | bool
  82. register: task_result
  83. failed_when: task_result|failed and 'could not' not in task_result.msg|lower
  84. - name: Install etcd container service file
  85. template:
  86. dest: "/etc/systemd/system/etcd_container.service"
  87. src: etcd.docker.service
  88. when: not openshift.common.is_etcd_system_container | bool
  89. - name: Install Etcd system container
  90. include: system_container.yml
  91. when: openshift.common.is_etcd_system_container | bool
  92. when: etcd_is_containerized | bool
  93. - name: Validate permissions on the config dir
  94. file:
  95. path: "{{ etcd_conf_dir }}"
  96. state: directory
  97. owner: "{{ 'etcd' if not etcd_is_containerized | bool else omit }}"
  98. group: "{{ 'etcd' if not etcd_is_containerized | bool else omit }}"
  99. mode: 0700
  100. - name: Write etcd global config file
  101. template:
  102. src: etcd.conf.j2
  103. dest: "{{ etcd_conf_file }}"
  104. backup: true
  105. notify:
  106. - restart etcd
  107. - name: Enable etcd
  108. systemd:
  109. name: "{{ etcd_service }}"
  110. state: started
  111. enabled: yes
  112. register: start_result
  113. - name: Set fact etcd_service_status_changed
  114. set_fact:
  115. etcd_service_status_changed: "{{ start_result | changed }}"