Skip to content

Commit

Permalink
Fix warning of "Enable ip forwarding" (#6953)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
oomichi authored Nov 27, 2020
1 parent d739a6b commit c6f6940
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
sysctl:
sysctl_file: "{{ sysctl_file_path }}"
name: net.ipv4.ip_forward
value: 1
value: "1"
state: present
reload: yes

Expand Down

0 comments on commit c6f6940

Please # to comment.