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:
Kenichi Omichi
2020-11-27 03:54:49 -08:00
committed by GitHub
parent d739a6bb2f
commit c6f6940459

View File

@ -58,7 +58,7 @@
sysctl:
sysctl_file: "{{ sysctl_file_path }}"
name: net.ipv4.ip_forward
value: 1
value: "1"
state: present
reload: yes