Skip to content

Commit 4eaf993

Browse files
committed
feat: add limit range configuration and update docs
1 parent e8c02c0 commit 4eaf993

File tree

4 files changed

+14
-8
lines changed

4 files changed

+14
-8
lines changed

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

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ org.opencadc.science-portal.logoURL = {{ .Values.deployment.sciencePortal.logoUR
44
org.opencadc.science-portal.themeName = {{ .Values.deployment.sciencePortal.themeName | required "Please set the deployment.sciencePortal.themeName to either src or canfar" }}
55

66
{{- if empty .Values.deployment.sciencePortal.tabLabels }}
7-
{{ required ".Values.deployment.sciencePortal.tabLabels is missing or empty" .Values.deployment.sciencePortal.tabLabels }}
7+
{{ required ".Values.deployment.sciencePortal.tabLabels is missing or empty" .Values.deployment.sciencePortal.tabLabels }}
88
{{- else }}
9-
org.opencadc.science-portal.tabLabels = {{ .Values.deployment.sciencePortal.tabLabels | join "," }}
9+
org.opencadc.science-portal.tabLabels = {{ .Values.deployment.sciencePortal.tabLabels | join "," }}
1010
{{- end }}
1111

1212
{{- with .Values.deployment.sciencePortal.oidc }}
@@ -31,7 +31,13 @@ org.opencadc.science-portal.tokenCache.url = redis://{{ $.Release.Name }}-redis-
3131
{{ with .Values.experimentalFeatures }}
3232
{{- with .storageHomePanel }}
3333
{{- if .enabled }}
34+
# This feature is NOT namespaced with experimental as it's grandfathered.
3435
org.opencadc.science-portal.storageXmlInfoUrl = {{ .url }}
3536
{{- end }}
3637
{{- end }}
38+
{{- with .slider }}
39+
{{- if .enabled }}
40+
org.opencadc.science-portal.experimental.slider.enabled = true
41+
{{- end }}
42+
{{- end }}
3743
{{- end }}

helm/applications/skaha/CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
# CHANGELOG for Skaha User Session API (Chart 1.0.6)
1+
# CHANGELOG for Skaha User Session API (Chart 1.1.0)
22

3-
## 2025.09.29 (1.0.6)
4-
- Bump Skaha API image to `1.0.5`
3+
## 2025.09.29 (1.1.0)
4+
- Bump Skaha API image to `1.1.0`
55
- Feature Gate to support `LimitRange` objects to enforce resource limits on User Sessions
66

77
## 2025.09.29 (1.0.5)

helm/applications/skaha/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ type: application
1616
# This is the chart version. This version number should be incremented each time you make changes
1717
# to the chart and its templates, including the app version.
1818
# Versions are expected to follow Semantic Versioning (https://semver.org/)
19-
version: 1.0.6
19+
version: 1.1.0
2020

2121
# This is the version number of the application being deployed. This version number should be
2222
# incremented each time you make changes to the application. Versions are not expected to
2323
# follow Semantic Versioning. They should reflect the version the application is using.
2424
# It is recommended to use it with quotes.
25-
appVersion: "1.0.5"
25+
appVersion: "1.1.0"
2626

2727
dependencies:
2828
- name: "redis"

helm/applications/skaha/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ skahaWorkload:
1515
deployment:
1616
hostname: myhost.example.com # Change this!
1717
skaha:
18-
image: images.opencadc.org/platform/skaha:1.0.5
18+
image: images.opencadc.org/platform/skaha:1.1.0
1919
imagePullPolicy: Always
2020

2121
# Cron string for the image caching cron job schedule. Defaults to every half hour.

0 commit comments

Comments
 (0)