Fix warning of "Enable ip forwarding" (#6953)
The task outputs the following warning: TASK [kubernetes/preinstall : Enable ip forwarding] [WARNING]: The value 1 (type int) in a string field was converted to u'1' (type string). If this does not look like what you expect, quote the entire value to ensure it does not change.
This commit is contained in:
parent
d739a6bb2f
commit
c6f6940459
1 changed files with 1 additions and 1 deletions
|
@ -58,7 +58,7 @@
|
||||||
sysctl:
|
sysctl:
|
||||||
sysctl_file: "{{ sysctl_file_path }}"
|
sysctl_file: "{{ sysctl_file_path }}"
|
||||||
name: net.ipv4.ip_forward
|
name: net.ipv4.ip_forward
|
||||||
value: 1
|
value: "1"
|
||||||
state: present
|
state: present
|
||||||
reload: yes
|
reload: yes
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue