tlsminversion and tlsciphersuites kubelet (#6490)

This commit is contained in:
Erwan Miran
2020-08-13 11:48:13 +02:00
committed by GitHub
parent 49158dbe40
commit ef3e98807e
2 changed files with 37 additions and 0 deletions

View File

@@ -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 %}