main.yml 3.7 KB

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