diff options
author | Scott Dodson <sdodson@redhat.com> | 2016-11-04 10:47:39 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-04 10:47:39 -0400 |
commit | 3f3b757c0e3ff81b3777f01a98302ee8392ec289 (patch) | |
tree | 51d820de321c8ad200ba7ccb4aba4be0cb811f38 | |
parent | 8eee6fee356dd0b91611b21782224186cb02d0e6 (diff) | |
parent | 735be4c23d1f8bc432b4fca19270ded9ce4321a8 (diff) | |
download | openshift-3f3b757c0e3ff81b3777f01a98302ee8392ec289.tar.gz openshift-3f3b757c0e3ff81b3777f01a98302ee8392ec289.tar.bz2 openshift-3f3b757c0e3ff81b3777f01a98302ee8392ec289.tar.xz openshift-3f3b757c0e3ff81b3777f01a98302ee8392ec289.zip |
Merge pull request #2722 from smunilla/BZ1391515
Fix indentation for flannel etcd vars
-rw-r--r-- | roles/flannel/tasks/main.yml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/roles/flannel/tasks/main.yml b/roles/flannel/tasks/main.yml index d41eb0de8..f5b16fb76 100644 --- a/roles/flannel/tasks/main.yml +++ b/roles/flannel/tasks/main.yml @@ -11,11 +11,11 @@ backrefs: yes regexp: "{{ item.regexp }}" line: "{{ item.line }}" - with_items: - - { regexp: "^(FLANNEL_ETCD=)", line: '\1{{ etcd_hosts|join(",") }}' } - - { regexp: "^(FLANNEL_ETCD_ENDPOINTS=)", line: '\1{{ etcd_hosts|join(",") }}' } - - { regexp: "^(FLANNEL_ETCD_KEY=)", line: '\1{{ flannel_etcd_key }}' } - - { regexp: "^(FLANNEL_ETCD_KEY_PREFIX=)", line: '\1{{ flannel_etcd_key }}' } + with_items: + - { regexp: "^(FLANNEL_ETCD=)", line: '\1{{ etcd_hosts|join(",") }}' } + - { regexp: "^(FLANNEL_ETCD_ENDPOINTS=)", line: '\1{{ etcd_hosts|join(",") }}' } + - { regexp: "^(FLANNEL_ETCD_KEY=)", line: '\1{{ flannel_etcd_key }}' } + - { regexp: "^(FLANNEL_ETCD_KEY_PREFIX=)", line: '\1{{ flannel_etcd_key }}' } - name: Set flannel options become: yes |