main.yml 3.8 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. 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_role:
  15. name: etcd_common
  16. vars:
  17. r_etcd_common_action: drop_etcdctl
  18. when:
  19. - openshift_etcd_etcdctl_profile | default(true) | bool
  20. - block:
  21. - name: Pull etcd container
  22. command: docker pull {{ openshift.etcd.etcd_image }}
  23. register: pull_result
  24. changed_when: "'Downloaded newer image' in pull_result.stdout"
  25. - name: Install etcd container service file
  26. template:
  27. dest: "/etc/systemd/system/etcd_container.service"
  28. src: etcd.docker.service
  29. when:
  30. - etcd_is_containerized | bool
  31. - not openshift.common.is_etcd_system_container | bool
  32. # Start secondary etcd instance for third party integrations
  33. # TODO: Determine an alternative to using thirdparty variable
  34. - block:
  35. - name: Create configuration directory
  36. file:
  37. path: "{{ etcd_conf_dir }}"
  38. state: directory
  39. mode: 0700
  40. # TODO: retest with symlink to confirm it does or does not function
  41. - name: Copy service file for etcd instance
  42. copy:
  43. src: /usr/lib/systemd/system/etcd.service
  44. dest: "/etc/systemd/system/{{ etcd_service }}.service"
  45. remote_src: True
  46. - name: Create third party etcd service.d directory exists
  47. file:
  48. path: "{{ etcd_systemd_dir }}"
  49. state: directory
  50. - name: Configure third part etcd service unit file
  51. template:
  52. dest: "{{ etcd_systemd_dir }}/custom.conf"
  53. src: custom.conf.j2
  54. when: etcd_is_thirdparty
  55. # TODO: this task may not be needed with Validate permissions
  56. - name: Ensure etcd datadir exists
  57. file:
  58. path: "{{ etcd_data_dir }}"
  59. state: directory
  60. mode: 0700
  61. when: etcd_is_containerized | bool
  62. - name: Ensure etcd datadir ownership for thirdparty datadir
  63. file:
  64. path: "{{ etcd_data_dir }}"
  65. state: directory
  66. mode: 0700
  67. owner: etcd
  68. group: etcd
  69. recurse: True
  70. when: etcd_is_thirdparty | bool
  71. # TODO: Determine if the below reload would work here, for now just reload
  72. - name:
  73. command: systemctl daemon-reload
  74. when: etcd_is_thirdparty | bool
  75. - block:
  76. - name: Disable system etcd when containerized
  77. systemd:
  78. name: etcd
  79. state: stopped
  80. enabled: no
  81. masked: yes
  82. daemon_reload: yes
  83. when: not openshift.common.is_etcd_system_container | bool
  84. register: task_result
  85. failed_when: task_result|failed and '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 openshift.common.is_etcd_system_container | bool
  91. - name: Install Etcd system container
  92. include: system_container.yml
  93. when: openshift.common.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 | changed }}"