diff options
author | Ivan Chavero <ichavero@redhat.com> | 2017-10-27 07:32:14 -0600 |
---|---|---|
committer | Ivan Chavero <ichavero@redhat.com> | 2017-10-27 07:32:14 -0600 |
commit | 65e105687d5f260baaa89477a8eb0b8729b27adc (patch) | |
tree | a2d2e1365cb8ed14bea3f06642b58c54d2a1a350 /roles | |
parent | 9cfd12cb497c4e210b9a6ab5cbc247d62e380194 (diff) | |
download | openshift-65e105687d5f260baaa89477a8eb0b8729b27adc.tar.gz openshift-65e105687d5f260baaa89477a8eb0b8729b27adc.tar.bz2 openshift-65e105687d5f260baaa89477a8eb0b8729b27adc.tar.xz openshift-65e105687d5f260baaa89477a8eb0b8729b27adc.zip |
Fix yaml indentation
Diffstat (limited to 'roles')
-rw-r--r-- | roles/flannel/tasks/main.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/roles/flannel/tasks/main.yml b/roles/flannel/tasks/main.yml index fdba65bf0..4753b12fb 100644 --- a/roles/flannel/tasks/main.yml +++ b/roles/flannel/tasks/main.yml @@ -42,10 +42,10 @@ - name: Enable Pod to Pod communication command: /sbin/iptables --wait -I FORWARD -d {{ hostvars[groups.oo_first_master.0].openshift.master.sdn_cluster_network_cidr }} -i {{ flannel_interface }} -j ACCEPT -m comment --comment "Pod to Pod communication" - notify: + notify: - save iptable rules - name: Allow external network access command: /sbin/iptables -t nat -A POSTROUTING -o {{ flannel_interface }} -j MASQUERADE -m comment --comment "Allow external network access" - notify: + notify: - save iptable rules |