Add support for default certificate (#5223)

This commit is contained in:
Miouge1
2018-04-25 08:17:02 -07:00
committed by k8s-ci-robot
parent 9954fc85fb
commit 54f00dfcde
3 changed files with 4 additions and 2 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
name: sonatype-nexus
version: 1.0.3
version: 1.1.0
appVersion: 3.10.0-04
description: Sonatype Nexus is an open source repository manager
keywords:
+1 -1
View File
@@ -107,7 +107,7 @@ The following table lists the configurable parameters of the Nexus chart and the
| `ingress.enabled` | Create an ingress for Nexus | `true` |
| `ingress.annotations` | Annotations to enhance ingress configuration | `{}` |
| `ingress.tls.enabled` | Enable TLS | `false` |
| `ingress.tls.secretName` | Name of the secret storing TLS cert | `nexus-tls` |
| `ingress.tls.secretName` | Name of the secret storing TLS cert, `false` to use the Ingress' default certificate | `nexus-tls` |
If `nexusProxy.env.cloudIamAuthEnabled` is set to `true` the following variables need to be configured
@@ -30,6 +30,8 @@ spec:
- hosts:
- {{ .Values.nexusProxy.env.nexusDockerHost }}
- {{ .Values.nexusProxy.env.nexusHttpHost }}
{{- if .Values.ingress.tls.secretName }}
secretName: {{ .Values.ingress.tls.secretName | quote }}
{{- end }}
{{- end -}}
{{- end }}