Skip to content
Snippets Groups Projects
Commit 0200138a authored by Julien Pervillé's avatar Julien Pervillé Committed by Kubernetes Prow Robot
Browse files

Pass `ingress_nginx_extra_args` when deploying the nginx-ingress addon (#5321)

parent 14af98eb
No related branches found
No related tags found
No related merge requests found
......@@ -98,6 +98,8 @@ ingress_publish_status_address: ""
# 9000: "default/example-go:8080"
# ingress_nginx_configmap_udp_services:
# 53: "kube-system/coredns:53"
# ingress_nginx_extra_args:
# - --default-ssl-certificate=default/foo-tls
# Cert manager deployment
cert_manager_enabled: false
......
......@@ -10,3 +10,4 @@ ingress_nginx_secure_port: 443
ingress_nginx_configmap: {}
ingress_nginx_configmap_tcp_services: {}
ingress_nginx_configmap_udp_services: {}
ingress_nginx_extra_args: []
......@@ -51,6 +51,9 @@ spec:
{% if ingress_publish_status_address != "" %}
- --publish-status-address={{ ingress_publish_status_address }}
{% endif %}
{% for extra_arg in ingress_nginx_extra_args %}
- {{ extra_arg }}
{% endfor %}
securityContext:
capabilities:
drop:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment