Skip to content
This repository has been archived by the owner on Jun 24, 2022. It is now read-only.

Commit

Permalink
Merge pull request #303 from betermieux/tls-config-value
Browse files Browse the repository at this point in the history
Fixed usage of Values.ingressDocker.tls.enabled
  • Loading branch information
rjkernick authored Sep 14, 2021
2 parents 80e25b9 + 0346bed commit 5bf4a66
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion charts/sonatype-nexus/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v1
name: sonatype-nexus
version: 5.3.0
version: 5.3.1
appVersion: 3.33.0
description: Sonatype Nexus is an open source repository manager
keywords:
Expand Down
2 changes: 1 addition & 1 deletion charts/sonatype-nexus/templates/_helpers.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,6 @@ heritage: {{ .Release.Service }}
{{/*
Create a fully qualified name for docker ingress.
*/}}
{{- define "nexus.ingres.docker" -}}
{{- define "nexus.ingress.docker" -}}
{{- printf "%s-%s" (include "nexus.fullname" .) "docker" | trunc 63 | trimSuffix "-" -}}
{{- end -}}
4 changes: 2 additions & 2 deletions charts/sonatype-nexus/templates/ingress-docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ apiVersion: extensions/v1beta1
{{- end }}
kind: Ingress
metadata:
name: {{ template "nexus.ingres.docker" . }}
name: {{ template "nexus.ingress.docker" . }}
namespace: {{ template "nexus.namespace" . }}
labels:
{{ include "nexus.labels" . | indent 4 }}
Expand Down Expand Up @@ -62,7 +62,7 @@ spec:
{{- with .Values.ingressDocker.rules }}
{{- toYaml . | nindent 4 }}
{{- end -}}
{{- if .Values.ingress.tls.enabled }}
{{- if .Values.ingressDocker.tls.enabled }}
tls:
- hosts:
{{- if .Values.nexusProxy.env.nexusDockerHost }}
Expand Down

0 comments on commit 5bf4a66

Please sign in to comment.