Skip to content

Commit

Permalink
Merge pull request #9 from scientist-softserv/i330-add-tls-to-ingress
Browse files Browse the repository at this point in the history
i330-add-tls-to-ingress
  • Loading branch information
aprilrieger authored Jan 17, 2024
2 parents 60f94b8 + 7abb650 commit 32eaf36
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
6 changes: 3 additions & 3 deletions chart/templates/web-ing.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,11 @@ spec:
path: /exhibitions
pathType: ImplementationSpecific
{{- end }}
{{- if .Values.ingress.tlsSecretName }}
{{- if .Values.ingress.tls.secretName }}
tls:
- secretName: {{ .Values.ingress.tlsSecretName }}
- secretName: {{ .Values.ingress.tls.secretName }}
hosts:
{{- range .Values.ingress.hosts }}
{{- range .Values.ingress.tls.hosts }}
- {{ . | quote }}
{{- end }}
{{- end }}
5 changes: 4 additions & 1 deletion ops/production-deploy.tmpl.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,14 @@ ingress:
enabled: true
hosts:
- dl.atla.com
- atla.notch8.cloud
annotations: {
kubernetes.io/ingress.class: "nginx",
nginx.ingress.kubernetes.io/proxy-body-size: "0"
}
tls:
- hosts:
- dl.atla.com
secretName: notch8cloud

env:
configmap:
Expand Down

0 comments on commit 32eaf36

Please sign in to comment.