feat: Allow custom paths for server ingress (#317)
This commit is contained in:
parent
1135b1ef18
commit
46e08b1fe8
3 changed files with 13 additions and 1 deletions
|
@ -2,7 +2,7 @@ apiVersion: v1
|
||||||
appVersion: "v2.7.6"
|
appVersion: "v2.7.6"
|
||||||
description: A Helm chart for Argo Workflows
|
description: A Helm chart for Argo Workflows
|
||||||
name: argo
|
name: argo
|
||||||
version: 0.8.1
|
version: 0.8.2
|
||||||
icon: https://raw.githubusercontent.com/argoproj/argo/master/docs/assets/argo.png
|
icon: https://raw.githubusercontent.com/argoproj/argo/master/docs/assets/argo.png
|
||||||
home: https://github.com/argoproj/argo-helm
|
home: https://github.com/argoproj/argo-helm
|
||||||
maintainers:
|
maintainers:
|
||||||
|
|
|
@ -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