Skip to content

Commit 4b4b3ae

Browse files
committed
fix: merge
1 parent 857a94e commit 4b4b3ae

File tree

2 files changed

+16
-13
lines changed

2 files changed

+16
-13
lines changed

helm/applications/science-portal/config/org.opencadc.science-portal.properties

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -28,18 +28,16 @@ org.opencadc.science-portal.oidc.scope = {{ .scope }}
2828

2929
org.opencadc.science-portal.tokenCache.url = redis://{{ $.Release.Name }}-redis-master.{{ $.Release.Namespace }}.svc.{{ $.Values.kubernetesClusterDomain }}:6379
3030

31-
{{- if .Values.storageHomeURL }}
32-
org.opencadc.science-portal.storageXmlInfoUrl = {{ .Values.storageHomeURL }}
33-
{{- end }}
31+
{{ if .Values.deployment.sciencePortal.storageHomeURL -}}
32+
org.opencadc.science-portal.storageXmlInfoUrl = {{ .Values.deployment.sciencePortal.storageHomeURL }}
33+
{{ end }}
3434

3535
{{ with .Values.experimentalFeatures }}
3636
{{- if .enabled }}
37-
38-
{{- with resourceSlider }}
39-
{{- if .enabled }
40-
org.opencadc.science-portal.experimental.resourceSlider = true
37+
{{- with .slider }}
38+
{{- if .enabled }}
39+
org.opencadc.science-portal.experimental.slider.enabled = true
4140
{{- end }}
4241
{{- end }}
43-
4442
{{- end }}
4543
{{- end }}

helm/applications/science-portal/values.yaml

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -112,16 +112,21 @@ deployment:
112112
# themeName: canfar
113113
themeName:
114114

115-
# Optional. The absolute base URL of the /home folder containing the user's home directories. This is used to query the storage quota
116-
# information, and display a panel in the Portal UI.
117-
# Example:
118-
# storageHomeURL: https://example.org/cavern/nodes/home
119-
# storageHomeURL:
115+
# Optional. The absolute base URL of the /home folder containing the user's home directories. This is used to query the storage quota
116+
# information, and display a panel in the Portal UI.
117+
# Example:
118+
# storageHomeURL: https://example.org/cavern/nodes/home
119+
# storageHomeURL:
120120

121121
# Experimental features that can be enabled. These represent features that are not released and confined behind feature flags.
122122
experimentalFeatures:
123123
enabled: false
124124

125+
# Enable the slider experimental feature.
126+
# This feature allows users to dynamically adjust the resource limits of their jobs with a different User Interface experience.
127+
slider:
128+
enabled: false
129+
125130
# Enable the Resource Slider feature, which allows users to select the amount of resources (CPU and Memory) they want to
126131
# use for their jobs with a UI Slider Component.
127132
resourceSlider:

0 commit comments

Comments
 (0)