static.yml 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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. owner: "etcd"
  17. group: "etcd"
  18. mode: 0700
  19. - name: Validate permissions on the static pods dir
  20. file:
  21. path: "/etc/origin/node/pods/"
  22. state: directory
  23. owner: "root"
  24. group: "root"
  25. mode: 0700
  26. - name: Write etcd global config file
  27. template:
  28. src: etcd.conf.j2
  29. dest: "{{ etcd_conf_file }}"
  30. backup: true
  31. - name: Create temp directory for static pods
  32. command: mktemp -d /tmp/openshift-ansible-XXXXXX
  33. register: mktemp
  34. changed_when: false
  35. - name: Prepare etcd static pod
  36. copy:
  37. src: "{{ item }}"
  38. dest: "{{ mktemp.stdout }}"
  39. mode: 0600
  40. with_items:
  41. - etcd.yaml
  42. - name: Update etcd static pod
  43. yedit:
  44. src: "{{ mktemp.stdout }}/{{ item }}"
  45. edits:
  46. - key: spec.containers[0].image
  47. value: "{{ etcd_image }}"
  48. with_items:
  49. - etcd.yaml
  50. - name: Deploy etcd static pod
  51. copy:
  52. remote_src: true
  53. src: "{{ mktemp.stdout }}/{{ item }}"
  54. dest: "/etc/origin/node/pods/"
  55. mode: 0600
  56. with_items:
  57. - etcd.yaml
  58. - name: Remove temp directory
  59. file:
  60. state: absent
  61. name: "{{ mktemp.stdout }}"
  62. changed_when: False