main.yml 3.8 KB

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