main.yml 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  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-2.* state=present"
  10. when: not openshift.common.is_containerized | bool
  11. - name: Get docker images
  12. command: docker images
  13. changed_when: false
  14. when: openshift.common.is_containerized | bool
  15. register: docker_images
  16. - name: Pull etcd container
  17. command: docker pull {{ openshift.etcd.etcd_image }}
  18. when: openshift.common.is_containerized | bool and openshift.etcd.etcd_image not in docker_images.stdout
  19. - name: Wait for etcd image
  20. command: >
  21. docker images
  22. register: docker_images
  23. until: openshift.etcd.etcd_image in docker_images.stdout
  24. retries: 30
  25. delay: 10
  26. changed_when: false
  27. when: openshift.common.is_containerized | bool
  28. - name: Install etcd container service file
  29. template:
  30. dest: "/etc/systemd/system/etcd_container.service"
  31. src: etcd.docker.service
  32. register: install_etcd_result
  33. when: openshift.common.is_containerized | bool
  34. - name: Ensure etcd datadir exists
  35. when: openshift.common.is_containerized | bool
  36. file:
  37. path: "{{ etcd_data_dir }}"
  38. state: directory
  39. mode: 0700
  40. - name: Disable system etcd when containerized
  41. when: openshift.common.is_containerized | bool
  42. service:
  43. name: etcd
  44. state: stopped
  45. enabled: no
  46. - name: Reload systemd units
  47. command: systemctl daemon-reload
  48. when: openshift.common.is_containerized and ( install_etcd_result | changed )
  49. - name: Validate permissions on the config dir
  50. file:
  51. path: "{{ etcd_conf_dir }}"
  52. state: directory
  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. mode: 0700
  56. - name: Validate permissions on certificate files
  57. file:
  58. path: "{{ item }}"
  59. mode: 0600
  60. owner: "{{ 'etcd' if not openshift.common.is_containerized | bool else omit }}"
  61. group: "{{ 'etcd' if not openshift.common.is_containerized | bool else omit }}"
  62. when: etcd_url_scheme == 'https'
  63. with_items:
  64. - "{{ etcd_ca_file }}"
  65. - "{{ etcd_cert_file }}"
  66. - "{{ etcd_key_file }}"
  67. - name: Validate permissions on peer certificate files
  68. file:
  69. path: "{{ item }}"
  70. mode: 0600
  71. owner: "{{ 'etcd' if not openshift.common.is_containerized | bool else omit }}"
  72. group: "{{ 'etcd' if not openshift.common.is_containerized | bool else omit }}"
  73. when: etcd_peer_url_scheme == 'https'
  74. with_items:
  75. - "{{ etcd_peer_ca_file }}"
  76. - "{{ etcd_peer_cert_file }}"
  77. - "{{ etcd_peer_key_file }}"
  78. - name: Write etcd global config file
  79. template:
  80. src: etcd.conf.j2
  81. dest: /etc/etcd/etcd.conf
  82. backup: true
  83. notify:
  84. - restart etcd
  85. - name: Enable etcd
  86. service:
  87. name: "{{ etcd_service }}"
  88. state: started
  89. enabled: yes
  90. register: start_result
  91. - set_fact:
  92. etcd_service_status_changed = "{{ start_result | changed }}"