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.
pull/6927/head
Kenichi Omichi 2020-11-27 03:54:49 -08:00 committed by GitHub
parent d739a6bb2f
commit c6f6940459
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

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