mirror of
https://github.com/kubernetes-sigs/kubespray.git
synced 2026-01-11 01:57:37 -03:30
Fix ETCD_CIPHER_SUITES shell var assignment (#7002)
This commit is contained in:
parent
00e0f3bd2b
commit
7084d38767
@ -32,7 +32,7 @@ ETCD_PEER_KEY_FILE={{ etcd_cert_dir }}/member-{{ inventory_hostname }}-key.pem
|
||||
ETCD_PEER_CLIENT_CERT_AUTH={{ etcd_peer_client_auth }}
|
||||
|
||||
{% if etcd_tls_cipher_suites is defined %}
|
||||
ETCD_CIPHER_SUITES: {% for tls in etcd_tls_cipher_suites %}{{ tls }}{{ "," if not loop.last else "" }}{% endfor %}
|
||||
ETCD_CIPHER_SUITES={% for tls in etcd_tls_cipher_suites %}{{ tls }}{{ "," if not loop.last else "" }}{% endfor %}
|
||||
{% endif %}
|
||||
|
||||
{% for key, value in etcd_extra_vars.items() %}
|
||||
|
||||
@ -41,7 +41,7 @@ ETCD_PEER_KEY_FILE={{ etcd_cert_dir }}/member-{{ inventory_hostname }}-key.pem
|
||||
ETCD_PEER_CLIENT_CERT_AUTH={{ etcd_peer_client_auth }}
|
||||
|
||||
{% if etcd_tls_cipher_suites is defined %}
|
||||
ETCD_CIPHER_SUITES: {% for tls in etcd_tls_cipher_suites %}{{ tls }}{{ "," if not loop.last else "" }}{% endfor %}
|
||||
ETCD_CIPHER_SUITES={% for tls in etcd_tls_cipher_suites %}{{ tls }}{{ "," if not loop.last else "" }}{% endfor %}
|
||||
{% endif %}
|
||||
|
||||
{% for key, value in etcd_extra_vars.items() %}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user