static.yml 1.4 KB

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