Support dynamic kubelet config

https://kubernetes.io/blog/2018/07/11/dynamic-kubelet-configuration/
This commit is contained in:
rongzhang
2018-09-17 01:40:20 +08:00
parent 3cd38e0d4c
commit 77e08ba204
6 changed files with 31 additions and 0 deletions

View File

@@ -150,3 +150,7 @@ nodeRegistration:
{% if container_manager == 'crio' %}
criSocket: /var/run/crio/crio.sock
{% endif %}
{% if dynamic_kubelet_configuration %}
featureGates:
DynamicKubeletConfig: true
{% endif %}