Browse Source

nginx ingress: fix yaml for multiple nodeselectors (#6768)

In case multiple nodeselectors are specified in ingress_nginx_nodeselector, the generated daemonset yaml template for nginx is invalid due to missing indentation starting with the second nodeselector
pull/6778/head
dlandtwing 4 years ago
committed by GitHub
parent
commit
bc8e16fc69
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. 2
      roles/kubernetes-apps/ingress_controller/ingress_nginx/templates/ds-ingress-nginx-controller.yml.j2

2
roles/kubernetes-apps/ingress_controller/ingress_nginx/templates/ds-ingress-nginx-controller.yml.j2

@ -28,7 +28,7 @@ spec:
{% endif %} {% endif %}
{% if ingress_nginx_nodeselector %} {% if ingress_nginx_nodeselector %}
nodeSelector: nodeSelector:
{{ ingress_nginx_nodeselector | to_nice_yaml }}
{{ ingress_nginx_nodeselector | to_nice_yaml | indent(width=8) }}
{%- endif %} {%- endif %}
{% if ingress_nginx_tolerations %} {% if ingress_nginx_tolerations %}
tolerations: tolerations:

Loading…
Cancel
Save