File tree 2 files changed +7
-4
lines changed
2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -36,11 +36,11 @@ This Helm automatically prefixes all names using the release name to avoid colli
36
36
| ` components.reana_ui.imagePullPolicy ` | REANA-UI image pull policy | IfNotPresent |
37
37
| ` components.reana_ui.polling_secs ` | Frequency of workflow list page reload in seconds | 15 |
38
38
| ` components.reana_ui.client_pyvenv ` | REANA-Client python environment to source in the welcome example. | None |
39
- | ` components.reana_ui.docs_url ` | URL of documentation site (footer icon) | None |
40
- | ` components.reana_ui.forum_url ` | URL of forum site (footer icon) | None |
39
+ | ` components.reana_ui.docs_url ` | URL of documentation site (footer icon) | https://docs.reana.io |
40
+ | ` components.reana_ui.forum_url ` | URL of forum site (footer icon) | https://forum.reana.io |
41
41
| ` components.reana_ui.chat_url ` | URL of chat channel (footer icon) | None |
42
+ | ` components.reana_ui.privacy_notice_url ` | URL of the privacy notice (footer icon) | None |
42
43
| ` components.reana_ui.cern_sso ` | Enable CERN SSO sign in | false |
43
- | ` components.reana_ui.cern_ropo ` | Display CERN RoPO privacy policy page | false |
44
44
| ` components.reana_ui.local_users ` | Enable local users sign in/up | true |
45
45
| ` components.reana_ui.hide_signup ` | Hide users sign up form | false |
46
46
| ` components.reana_workflow_controller.environment ` | REANA-Workflow-Controller environment variables | ` {SHARED_VOLUME_PATH: /var/reana} ` |
Original file line number Diff line number Diff line change 1
1
---
2
+ {{- if .Values.components.reana_ui.cern_ropo }}
3
+ {{- fail "`components.reana_ui.cern_ropo` is deprecated, please use `components.reana_ui.privacy_notice_url` instead." }}
4
+ {{- end }}
2
5
apiVersion : v1
3
6
kind : ConfigMap
4
7
metadata :
12
15
client_pyvenv: {{ .Values.components.reana_ui.client_pyvenv | quote | default "null" }}
13
16
forum_url: {{ .Values.components.reana_ui.forum_url | quote | default "null" }}
14
17
chat_url: {{ .Values.components.reana_ui.chat_url | quote | default "null" }}
18
+ privacy_notice_url: {{ .Values.components.reana_ui.privacy_notice_url | quote | default "null"}}
15
19
cern_sso: {{ .Values.components.reana_ui.cern_sso | default false }}
16
20
login_provider_config: {{ .Values.login | toJson }}
17
- cern_ropo: {{ .Values.components.reana_ui.cern_ropo | default false }}
18
21
hide_signup: {{ .Values.components.reana_ui.hide_signup | default false }}
19
22
admin_email: {{ .Values.notifications.email_config.receiver | quote | default "null" }}
20
23
{{- if not (contains "forever" (.Values.interactive_sessions.maximum_inactivity_period | quote)) }}
You can’t perform that action at this time.
0 commit comments