Skip to content

Commit

Permalink
Merge pull request #1388 from cilq/patch-1
Browse files Browse the repository at this point in the history
Fix variable name for loadbalancerip in template.
  • Loading branch information
fosterseth authored May 3, 2023
2 parents 084841f + 562a171 commit 4a51419
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion roles/installer/templates/networking/service.yaml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ spec:
type: NodePort
{% elif service_type | lower == "loadbalancer" %}
type: LoadBalancer
{% if variable is defined and variable|length %}
{% if loadbalancer_ip is defined and loadbalancer_ip|length %}
loadbalancerip: '{{ loadbalancer_ip }}'
{% endif %}
{% else %}
Expand Down

0 comments on commit 4a51419

Please sign in to comment.