Skip to content

Commit b9bd653

Browse files
committed
feat(helm): allow cluster administrator to configure ingress host (reanahub#804)
Closes reanahub/reana-workflow-controller#587
1 parent 1d95937 commit b9bd653

File tree

3 files changed

+4
-0
lines changed

3 files changed

+4
-0
lines changed

AUTHORS.md

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ organisation on GitHub, in alphabetical order:
88
- [Adelina Lintuluoto](https://orcid.org/0000-0002-0726-1452)
99
- [Agisilaos Kounelis](https://orcid.org/0000-0001-9312-3189)
1010
- [Alizee Pace](https://www.linkedin.com/in/aliz%C3%A9e-pace-516b4314b/)
11+
- [Alp Tuna](https://orcid.org/0009-0001-1915-3993)
1112
- [Ana Trisovic](https://orcid.org/0000-0003-1991-0533)
1213
- [Anton Khodak](https://orcid.org/0000-0003-3263-4553)
1314
- [Audrius Mecionis](https://orcid.org/0000-0002-3759-1663)

helm/reana/templates/reana-workflow-controller.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,8 @@ spec:
9090
- name: REANA_INGRESS_CLASS_NAME
9191
value: {{ .Values.ingress.ingress_class_name | quote }}
9292
{{- end }}
93+
- name: REANA_INGRESS_HOST
94+
value: {{ .Values.ingress.host | quote }}
9395
- name: REANA_DEFAULT_QUOTA_CPU_LIMIT
9496
value: {{ .Values.quota.default_cpu_limit | default 0 | quote }}
9597
- name: REANA_DEFAULT_QUOTA_DISK_LIMIT

helm/reana/values.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,7 @@ notifications:
135135
# Accessing the cluster from outside world
136136
ingress:
137137
enabled: true
138+
host: ""
138139
ingress_class_name: null
139140
annotations:
140141
traefik.ingress.kubernetes.io/router.entrypoints: web,websecure

0 commit comments

Comments
 (0)