Merge branch 's3-rolearn-and-usesdkcreds' of github.com:ygapon-mio/argo-helm into s3-rolearn-and-usesdkcreds
* 's3-rolearn-and-usesdkcreds' of github.com:ygapon-mio/argo-helm: feat: Allow custom paths for server ingress (#317)
This commit is contained in:
commit
387d13036b
2 changed files with 12 additions and 0 deletions
|
@ -24,6 +24,13 @@ spec:
|
||||||
- host: {{ . }}
|
- host: {{ . }}
|
||||||
http:
|
http:
|
||||||
paths:
|
paths:
|
||||||
|
{{- if $.Values.server.ingress.paths }}
|
||||||
|
{{- range $.Values.server.ingress.paths }}
|
||||||
|
- backend:
|
||||||
|
serviceName: {{ .serviceName }}
|
||||||
|
servicePort: {{ .servicePort }}
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
- backend:
|
- backend:
|
||||||
serviceName: {{ $serviceName }}
|
serviceName: {{ $serviceName }}
|
||||||
servicePort: {{ $servicePort }}
|
servicePort: {{ $servicePort }}
|
||||||
|
|
|
@ -168,6 +168,11 @@ server:
|
||||||
# hosts:
|
# hosts:
|
||||||
# - argo.domain.com
|
# - argo.domain.com
|
||||||
|
|
||||||
|
## Additional Paths for each host
|
||||||
|
# paths:
|
||||||
|
# - serviceName: "ssl-redirect"
|
||||||
|
# servicePort: "use-annotation"
|
||||||
|
|
||||||
## TLS configuration.
|
## TLS configuration.
|
||||||
## Secrets must be manually created in the namespace.
|
## Secrets must be manually created in the namespace.
|
||||||
##
|
##
|
||||||
|
|
Loading…
Reference in a new issue