main.yml 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  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: Check for etcd service presence
  33. command: systemctl show etcd.service
  34. register: etcd_show
  35. changed_when: false
  36. - name: Mask system etcd when containerized
  37. when: openshift.common.is_containerized | bool and 'LoadState=not-found' not in etcd_show.stdout
  38. command: systemctl mask etcd
  39. - name: Reload systemd units
  40. command: systemctl daemon-reload
  41. when: openshift.common.is_containerized | bool and ( install_etcd_result | changed )
  42. - name: Validate permissions on the config dir
  43. file:
  44. path: "{{ etcd_conf_dir }}"
  45. state: directory
  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. mode: 0700
  49. - name: Validate permissions on certificate files
  50. file:
  51. path: "{{ item }}"
  52. mode: 0600
  53. owner: "{{ 'etcd' if not openshift.common.is_containerized | bool else omit }}"
  54. group: "{{ 'etcd' if not openshift.common.is_containerized | bool else omit }}"
  55. when: etcd_url_scheme == 'https'
  56. with_items:
  57. - "{{ etcd_ca_file }}"
  58. - "{{ etcd_cert_file }}"
  59. - "{{ etcd_key_file }}"
  60. - name: Validate permissions on peer certificate files
  61. file:
  62. path: "{{ item }}"
  63. mode: 0600
  64. owner: "{{ 'etcd' if not openshift.common.is_containerized | bool else omit }}"
  65. group: "{{ 'etcd' if not openshift.common.is_containerized | bool else omit }}"
  66. when: etcd_peer_url_scheme == 'https'
  67. with_items:
  68. - "{{ etcd_peer_ca_file }}"
  69. - "{{ etcd_peer_cert_file }}"
  70. - "{{ etcd_peer_key_file }}"
  71. - name: Write etcd global config file
  72. template:
  73. src: etcd.conf.j2
  74. dest: /etc/etcd/etcd.conf
  75. backup: true
  76. notify:
  77. - restart etcd
  78. - name: Enable etcd
  79. service:
  80. name: "{{ etcd_service }}"
  81. state: started
  82. enabled: yes
  83. register: start_result
  84. - set_fact:
  85. etcd_service_status_changed: "{{ start_result | changed }}"