static.yml 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. ---
  2. - name: Set hostname and ip facts
  3. set_fact:
  4. # Store etcd_hostname and etcd_ip such that they will be available
  5. # in hostvars. Defaults for these variables are set in etcd_common.
  6. etcd_hostname: "{{ etcd_hostname }}"
  7. etcd_ip: "{{ etcd_ip }}"
  8. - name: setup firewall
  9. import_tasks: firewall.yml
  10. # TODO: this task may not be needed with Validate permissions
  11. - name: Ensure etcd datadir exists
  12. file:
  13. path: "{{ etcd_data_dir }}"
  14. state: directory
  15. mode: 0700
  16. - name: Validate permissions on the config dir
  17. file:
  18. path: "{{ etcd_conf_dir }}"
  19. state: directory
  20. owner: "etcd"
  21. group: "etcd"
  22. mode: 0700
  23. - name: Validate permissions on the static pods dir
  24. file:
  25. path: "/etc/origin/node/pods/"
  26. state: directory
  27. owner: "root"
  28. group: "root"
  29. mode: 0700
  30. - name: Write etcd global config file
  31. template:
  32. src: etcd.conf.j2
  33. dest: "{{ etcd_conf_file }}"
  34. backup: true
  35. - name: Create temp directory for static pods
  36. command: mktemp -d /tmp/openshift-ansible-XXXXXX
  37. register: mktemp
  38. changed_when: false
  39. - name: Prepare etcd static pod
  40. copy:
  41. src: "{{ item }}"
  42. dest: "{{ mktemp.stdout }}"
  43. mode: 0600
  44. with_items:
  45. - etcd.yaml
  46. - name: Update etcd static pod
  47. yedit:
  48. src: "{{ mktemp.stdout }}/{{ item }}"
  49. edits:
  50. - key: spec.containers[0].image
  51. value: "{{ etcd_image }}"
  52. with_items:
  53. - etcd.yaml
  54. - name: Deploy etcd static pod
  55. copy:
  56. remote_src: true
  57. src: "{{ mktemp.stdout }}/{{ item }}"
  58. dest: "/etc/origin/node/pods/"
  59. mode: 0600
  60. with_items:
  61. - etcd.yaml
  62. - name: Remove temp directory
  63. file:
  64. state: absent
  65. name: "{{ mktemp.stdout }}"
  66. changed_when: False