Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion charts/jupyter-pyspark/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 3.1.0
version: 3.1.1
dependencies:
- name: library-chart
version: 2.0.3
Expand Down
10 changes: 4 additions & 6 deletions charts/jupyter-pyspark/templates/statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -146,8 +146,8 @@ spec:
- -c
- |
echo 'initContainer make-configmaps-writable is started';
mkdir -p /dest/jupyter-ai
{{ if (.Values.userPreferences.aiAssistant).enabled }}
mkdir /dest/jupyter-ai
cp /src/jupyter-ai/config.json /dest/jupyter-ai/config.json
{{- end }}
{{- if .Values.s3.enabled }}
Expand Down Expand Up @@ -338,12 +338,10 @@ spec:
resources:
{{- toYaml .Values.resources | nindent 12 }}
volumeMounts:
- name: jupyter-local
mountPath: /home/{{ .Values.environment.user }}/.local/share/jupyter
{{ if (.Values.userPreferences.aiAssistant).enabled }}
- mountPath: /home/{{ .Values.environment.user }}/.local/share/jupyter/jupyter_ai
{{- if (.Values.userPreferences.aiAssistant).enabled }}
- name: config-files
mountPath: /home/{{ .Values.environment.user }}/.local/share/jupyter/jupyter_ai
subPath: jupyter-ai
name: config-files
{{- end }}
- mountPath: /home/{{ .Values.environment.user }}/work
subPath: work
Expand Down
2 changes: 1 addition & 1 deletion charts/jupyter-python/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 2.4.0
version: 2.4.1
dependencies:
- name: library-chart
version: 2.0.3
Expand Down
12 changes: 5 additions & 7 deletions charts/jupyter-python/templates/statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ spec:
- |
echo 'initContainer make-secrets-writable is started';
{{ if (.Values.userPreferences.aiAssistant).enabled }}
mkdir /dest/jupyter-ai
mkdir -p /dest/jupyter-ai
cp /src/jupyter-ai/config.json /dest/jupyter-ai/config.json
{{- end }}
{{- if .Values.discovery.hive }}
Expand Down Expand Up @@ -289,12 +289,10 @@ spec:
resources:
{{- toYaml .Values.resources | nindent 12 }}
volumeMounts:
- name: jupyter-local
mountPath: /home/{{ .Values.environment.user }}/.local/share/jupyter
{{ if (.Values.userPreferences.aiAssistant).enabled }}
- mountPath: /home/{{ .Values.environment.user }}/.local/share/jupyter/jupyter_ai
subPath: jupyter-ai
name: config-files
{{- if (.Values.userPreferences.aiAssistant).enabled }}
- name: config-files
mountPath: /home/{{ .Values.environment.user }}/.local/share/jupyter/jupyter_ai/config.json
subPath: jupyter-ai/config.json
{{- end }}
- mountPath: /home/{{ .Values.environment.user }}/work
subPath: work
Expand Down
Loading