main.yml 539 B

1234567891011121314
  1. ---
  2. - name: Assures /etc/flannel dir exists
  3. become: yes
  4. file: path=/etc/flannel state=directory
  5. - name: Generate etcd configuration for etcd
  6. become: yes
  7. template:
  8. src: "flannel-config.json"
  9. dest: "/etc/flannel/config.json"
  10. - name: Insert flannel configuration into etcd
  11. become: yes
  12. command: 'curl -L --cacert "{{ etcd_peer_ca_file }}" --cert "{{ etcd_peer_cert_file }}" --key "{{ etcd_peer_key_file }}" "{{ etcd_hosts[0] }}/v2/keys{{ flannel_etcd_key }}/config" -XPUT --data-urlencode value@/etc/flannel/config.json'