341e9b29df
Adds configuration options for the --default-ssl-certificate feature of NGINX Ingress Controller, which provides a default certificate for requests that do not match any configured server names.[0] To enable with a new certificate, specify: .conf.default_ssl_certificate.enabled=true .endpoints.ingress.host_fqdn_override.public.tls.crt="PEM cert data" .endpoints.ingress.host_fqdn_override.public.tls.key="PEM key data" .manifests.secret_ingress_tls=true To enable using a TLS cert in an existing secret, specify: .conf.default_ssl_certificate.enabled=true .conf.default_ssl_certificate.name="name of the secret" .conf.default_ssl_certificate.namespace="namespace of the secret" 0: https://kubernetes.github.io/ingress-nginx/user-guide/tls/#default-ssl-certificate Change-Id: Idd704fd880f56137923d4c38cc188b130ee3b56d
18 lines
702 B
YAML
18 lines
702 B
YAML
{{/*
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/}}
|
|
|
|
{{- if .Values.manifests.secret_ingress_tls }}
|
|
{{- include "helm-toolkit.manifests.secret_ingress_tls" ( dict "envAll" . "backendServiceType" "ingress" ) }}
|
|
{{- end }}
|