static.yml 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. ---
  2. # Set some facts to reference from hostvars
  3. - import_tasks: set_facts.yml
  4. - name: Check that etcd image is present
  5. command: 'docker images -q "{{ etcd_image }}"'
  6. register: etcd_image_exists
  7. - name: Pre-pull etcd image
  8. docker_image:
  9. name: "{{ etcd_image }}"
  10. environment:
  11. NO_PROXY: "{{ openshift.common.no_proxy | default('') }}"
  12. when: etcd_image_exists.stdout_lines == []
  13. # 10 minutes to pull the image
  14. async: 600
  15. poll: 0
  16. register: etcd_prepull
  17. - name: setup firewall
  18. import_tasks: firewall.yml
  19. # TODO: this task may not be needed with Validate permissions
  20. - name: Ensure etcd datadir exists
  21. file:
  22. path: "{{ etcd_data_dir }}"
  23. state: directory
  24. mode: 0700
  25. - name: Validate permissions on the config dir
  26. file:
  27. path: "{{ etcd_conf_dir }}"
  28. state: directory
  29. mode: 0700
  30. - name: Validate permissions on the static pods dir
  31. file:
  32. path: "{{ etcd_static_pod_location }}"
  33. state: directory
  34. owner: "root"
  35. group: "root"
  36. mode: 0700
  37. - name: Write etcd global config file
  38. template:
  39. src: etcd.conf.j2
  40. dest: "{{ etcd_conf_file }}"
  41. backup: true
  42. - name: Create temp directory for static pods
  43. command: mktemp -d /tmp/openshift-ansible-XXXXXX
  44. register: mktemp
  45. changed_when: false
  46. - name: Prepare etcd static pod
  47. copy:
  48. src: "{{ item }}"
  49. dest: "{{ mktemp.stdout }}"
  50. mode: 0600
  51. with_items:
  52. - etcd.yaml
  53. - name: Update etcd static pod
  54. yedit:
  55. src: "{{ mktemp.stdout }}/{{ item }}"
  56. edits:
  57. - key: spec.containers[0].image
  58. value: "{{ etcd_image }}"
  59. with_items:
  60. - etcd.yaml
  61. - name: Set etcd host as a probe target host
  62. yedit:
  63. src: "{{ mktemp.stdout }}/{{ item }}"
  64. edits:
  65. - key: spec.containers[0].livenessProbe.exec.command
  66. value:
  67. - "etcdctl"
  68. - "--cert-file"
  69. - "{{ etcd_peer_cert_file }}"
  70. - "--key-file"
  71. - "{{ etcd_peer_key_file }}"
  72. - "--ca-file"
  73. - "{{ etcd_peer_ca_file }}"
  74. - "-C"
  75. - "{{ etcd_peer_url_scheme }}://{{ etcd_ip }}:{{ etcd_client_port }}"
  76. - "cluster-health"
  77. with_items:
  78. - etcd.yaml
  79. - name: Deploy etcd static pod
  80. copy:
  81. remote_src: true
  82. src: "{{ mktemp.stdout }}/{{ item }}"
  83. dest: "{{ etcd_static_pod_location }}"
  84. mode: 0600
  85. with_items:
  86. - etcd.yaml
  87. - name: Remove temp directory
  88. file:
  89. state: absent
  90. name: "{{ mktemp.stdout }}"
  91. changed_when: False