File tree Expand file tree Collapse file tree 2 files changed +16
-13
lines changed
helm/applications/science-portal Expand file tree Collapse file tree 2 files changed +16
-13
lines changed Original file line number Diff line number Diff line change @@ -28,18 +28,16 @@ org.opencadc.science-portal.oidc.scope = {{ .scope }}
2828
2929org.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 }}
Original file line number Diff line number Diff 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.
122122experimentalFeatures :
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 :
You can’t perform that action at this time.
0 commit comments