main.yml 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. ---
  2. - fail:
  3. msg: Interface {{ etcd_interface }} not found
  4. when: "'ansible_' ~ etcd_interface not in hostvars[inventory_hostname]"
  5. - fail:
  6. msg: IPv4 address not found for {{ etcd_interface }}
  7. when: "'ipv4' not in hostvars[inventory_hostname]['ansible_' ~ etcd_interface] or 'address' not in hostvars[inventory_hostname]['ansible_' ~ etcd_interface].ipv4"
  8. - name: Install etcd
  9. action: "{{ ansible_pkg_mgr }} name=etcd state=present"
  10. when: not openshift.common.is_containerized | bool
  11. - name: Pull etcd container
  12. command: docker pull {{ openshift.etcd.etcd_image }}
  13. when: openshift.common.is_containerized | bool
  14. - name: Install etcd container service file
  15. template:
  16. dest: "/etc/systemd/system/etcd_container.service"
  17. src: etcd.docker.service
  18. register: install_etcd_result
  19. when: openshift.common.is_containerized | bool
  20. - name: Ensure etcd datadir exists
  21. when: openshift.common.is_containerized | bool
  22. file:
  23. path: "{{ etcd_data_dir }}"
  24. state: directory
  25. mode: 0700
  26. - name: Disable system etcd when containerized
  27. when: openshift.common.is_containerized | bool
  28. service:
  29. name: etcd
  30. state: stopped
  31. enabled: no
  32. - name: Reload systemd units
  33. command: systemctl daemon-reload
  34. when: openshift.common.is_containerized | bool and ( install_etcd_result | changed )
  35. - name: Validate permissions on the config dir
  36. file:
  37. path: "{{ etcd_conf_dir }}"
  38. state: directory
  39. owner: "{{ 'etcd' if not openshift.common.is_containerized | bool else omit }}"
  40. group: "{{ 'etcd' if not openshift.common.is_containerized | bool else omit }}"
  41. mode: 0700
  42. - name: Validate permissions on certificate files
  43. file:
  44. path: "{{ item }}"
  45. mode: 0600
  46. owner: "{{ 'etcd' if not openshift.common.is_containerized | bool else omit }}"
  47. group: "{{ 'etcd' if not openshift.common.is_containerized | bool else omit }}"
  48. when: etcd_url_scheme == 'https'
  49. with_items:
  50. - "{{ etcd_ca_file }}"
  51. - "{{ etcd_cert_file }}"
  52. - "{{ etcd_key_file }}"
  53. - name: Validate permissions on peer certificate files
  54. file:
  55. path: "{{ item }}"
  56. mode: 0600
  57. owner: "{{ 'etcd' if not openshift.common.is_containerized | bool else omit }}"
  58. group: "{{ 'etcd' if not openshift.common.is_containerized | bool else omit }}"
  59. when: etcd_peer_url_scheme == 'https'
  60. with_items:
  61. - "{{ etcd_peer_ca_file }}"
  62. - "{{ etcd_peer_cert_file }}"
  63. - "{{ etcd_peer_key_file }}"
  64. - name: Write etcd global config file
  65. template:
  66. src: etcd.conf.j2
  67. dest: /etc/etcd/etcd.conf
  68. backup: true
  69. notify:
  70. - restart etcd
  71. - name: Enable etcd
  72. service:
  73. name: "{{ etcd_service }}"
  74. state: started
  75. enabled: yes
  76. register: start_result
  77. - set_fact:
  78. etcd_service_status_changed: "{{ start_result | changed }}"