Added a fix in openssl.conf template to check if IP of loadbalncer is available or not.
parent
ef7f5edbb3
commit
9ebbf1c3cd
|
@ -26,7 +26,7 @@ IP.{{ 2 * loop.index }} = {{ hostvars[host]['ip'] | default(hostvars[host]['ansi
|
|||
{% endfor %}
|
||||
{% set idx = groups['kube-master'] | length | int * 2 + 1 %}
|
||||
IP.{{ idx }} = {{ kube_apiserver_ip }}
|
||||
{% if loadbalancer_apiserver is defined %}
|
||||
{% if loadbalancer_apiserver is defined and loadbalancer_apiserver.address is defined %}
|
||||
IP.{{ idx + 1 }} = {{ loadbalancer_apiserver.address }}
|
||||
{% set idx = idx + 1 %}
|
||||
{% endif %}
|
||||
|
|
Loading…
Reference in New Issue