Browse Source

Added a fix in openssl.conf template to check if IP of loadbalncer is available or not.

pull/2548/head
Kuldip Madnani 6 years ago
committed by Madnani, Kuldip (km007d)
parent
commit
9ebbf1c3cd
1 changed files with 1 additions and 1 deletions
  1. 2
      roles/kubernetes/secrets/templates/openssl.conf.j2

2
roles/kubernetes/secrets/templates/openssl.conf.j2

@ -26,7 +26,7 @@ IP.{{ 2 * loop.index }} = {{ hostvars[host]['ip'] | default(hostvars[host]['ansi
{% endfor %} {% endfor %}
{% set idx = groups['kube-master'] | length | int * 2 + 1 %} {% set idx = groups['kube-master'] | length | int * 2 + 1 %}
IP.{{ idx }} = {{ kube_apiserver_ip }} 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 }} IP.{{ idx + 1 }} = {{ loadbalancer_apiserver.address }}
{% set idx = idx + 1 %} {% set idx = idx + 1 %}
{% endif %} {% endif %}

Loading…
Cancel
Save