summaryrefslogtreecommitdiffstats
path: root/roles/flannel_register/tasks/main.yml
blob: 1629157c8eb74e5ca3206ad20619d71a8dec9c98 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
---
- name: Assures /etc/flannel dir exists
  sudo: true
  file: path=/etc/flannel state=directory

- name: Generate etcd configuration for etcd
  sudo: true
  template:
    src: "flannel-config.json"
    dest: "/etc/flannel/config.json"

- name: Insert flannel configuration into etcd
  sudo: true
  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'