sysctl_additional (#9351)
This commit is contained in:
parent
f8d5487f8e
commit
999586a110
2 changed files with 15 additions and 0 deletions
|
@ -127,3 +127,12 @@
|
||||||
state: present
|
state: present
|
||||||
params: 'numdummies=0'
|
params: 'numdummies=0'
|
||||||
when: enable_nodelocaldns
|
when: enable_nodelocaldns
|
||||||
|
|
||||||
|
- name: Set additional sysctl variables
|
||||||
|
sysctl:
|
||||||
|
sysctl_file: "{{ sysctl_file_path }}"
|
||||||
|
name: "{{ item.name }}"
|
||||||
|
value: "{{ item.value }}"
|
||||||
|
state: present
|
||||||
|
reload: yes
|
||||||
|
with_items: "{{ additional_sysctl }}"
|
||||||
|
|
|
@ -487,6 +487,12 @@ kubelet_rotate_server_certificates: false
|
||||||
# If set to true, kubelet errors if any of kernel tunables is different than kubelet defaults
|
# If set to true, kubelet errors if any of kernel tunables is different than kubelet defaults
|
||||||
kubelet_protect_kernel_defaults: true
|
kubelet_protect_kernel_defaults: true
|
||||||
|
|
||||||
|
# Set additional sysctl variables to modify Linux kernel variables, for example:
|
||||||
|
# additional_sysctl:
|
||||||
|
# - { name: kernel.pid_max, value: 131072 }
|
||||||
|
#
|
||||||
|
additional_sysctl: []
|
||||||
|
|
||||||
## List of key=value pairs that describe feature gates for
|
## List of key=value pairs that describe feature gates for
|
||||||
## the k8s cluster.
|
## the k8s cluster.
|
||||||
kube_feature_gates: []
|
kube_feature_gates: []
|
||||||
|
|
Loading…
Reference in a new issue