diff --git a/roles/kubernetes/node/templates/openssl.conf.j2 b/roles/kubernetes/node/templates/openssl.conf.j2 index 05015651f..ce2b88e9c 100644 --- a/roles/kubernetes/node/templates/openssl.conf.j2 +++ b/roles/kubernetes/node/templates/openssl.conf.j2 @@ -15,7 +15,7 @@ IP.{{ loop.index }} = {{ hostvars[host]['ip'] | default(hostvars[host]['ansible_ {% endfor %} {% set idx = groups['kube-master'] | length | int + 1 %} IP.{{ idx | string }} = {{ kube_apiserver_ip }} -{% if kube_loadbalancer_ip is defined | default('') %} +{% if loadbalancer_address is defined | default('') %} {% set idx = idx | int + 1 %} -IP.{{ idx | string }} = {{ kube_loadbalancer }} +IP.{{ idx | string }} = {{ loadbalancer_address }} {% endif %}