mirror of
https://github.com/kubernetes-sigs/kubespray.git
synced 2026-02-28 09:39:12 +03:00
tlsminversion and tlsciphersuites kubelet (#6490)
This commit is contained in:
@@ -76,3 +76,12 @@ resolvConf: "{{ kube_resolv_conf }}"
|
||||
{% if inventory_hostname in groups['kube-node'] and kubelet_node_config_extra_args %}
|
||||
{{ kubelet_node_config_extra_args | to_nice_yaml(indent=2) }}
|
||||
{% endif %}
|
||||
{% if tls_min_version is defined %}
|
||||
tlsMinVersion: {{ tls_min_version }}
|
||||
{% endif %}
|
||||
{% if tls_cipher_suites is defined %}
|
||||
tlsCipherSuites:
|
||||
{% for tls in tls_cipher_suites %}
|
||||
- {{ tls }}
|
||||
{% endfor %}
|
||||
{% endif %}
|
||||
|
||||
Reference in New Issue
Block a user