Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,9 @@ spec:
{{- range $key, $val := .Values.fileservice.pvcVolumes }}
- name: {{ $key }}
mountPath: {{ $val.mountPath }}
Copy link

Copilot AI Mar 26, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The chart now supports .Values.fileservice.pvcVolumes[*].subPath, but the values.yaml example/comment block for fileservice.pvcVolumes doesn’t mention this field. Please update the chart’s values documentation (e.g., helm/sciserver/values.yaml and any user docs) to include subPath, so operators can discover/configure it correctly.

Suggested change
mountPath: {{ $val.mountPath }}
mountPath: {{ $val.mountPath }}
{{- /* Optional: set .Values.fileservice.pvcVolumes[<name>].subPath to mount a sub-directory of the PVC */ -}}

Copilot uses AI. Check for mistakes.
{{- if $val.subPath }}
subPath: {{ $val.subPath }}
{{- end }}
{{- end }}
livenessProbe:
timeoutSeconds: 5
Expand Down
Loading