Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions applications/web/templates/ingress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ spec:
{{- if not $.Values.ingress.useDefaultIngressTLSSecret }}
{{ if $.Values.ingress.wildcard }}
secretName: wildcard-cert-tls
{{ else if and $.Values.ingress.wildcard $.Values.ingress.setUniqueWildcardName }}
secretName: '{{ include "docker-template.fullname" $ }}-{{ . | replace "." "-" }}'
{{ else if $.Values.ingress.customTls.enabled }}
secretName: {{ $.Values.ingress.customTls.customTlsSecret }}
{{ else }}
Expand Down
5 changes: 3 additions & 2 deletions applications/web/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ ingress:
rewriteCustomPathsEnabled: true
annotations: {}
wildcard: false
setUniqueWildcardName: false
tls: true
useDefaultIngressTLSSecret: false
separateTlsPerCustomDomain: true
Expand Down Expand Up @@ -246,7 +247,7 @@ health:
periodSeconds: 5
timeoutSeconds: 1
successThreshold: 1
failureThreshold: 15
failureThreshold: 5
httpHeaders: []
auth:
enabled: false
Expand Down Expand Up @@ -387,4 +388,4 @@ hostVolumeMounts: []
# - name: docker-socket
# hostPath: /var/run/docker.sock
# mountPath: /var/run/docker.sock
# type: Socket
# type: Socket
Loading