Skip to content

Commit

Permalink
jupyter add proxy support (#154)
Browse files Browse the repository at this point in the history
  • Loading branch information
ihiverlet authored Sep 12, 2024
1 parent ee478ab commit 0a80a40
Show file tree
Hide file tree
Showing 10 changed files with 470 additions and 377 deletions.
5 changes: 3 additions & 2 deletions charts/jupyter-pyspark/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,10 @@ 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.0.3

version: 2.0.4

dependencies:
- name: library-chart
version: 1.5.23
version: 1.5.25
repository: https://inseefrlab.github.io/helm-charts-interactive-services
1 change: 1 addition & 0 deletions charts/jupyter-pyspark/templates/secret-proxy.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{{ include "library-chart.secretProxy" . }}
9 changes: 9 additions & 0 deletions charts/jupyter-pyspark/templates/statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,11 @@ spec:
secret:
secretName: {{ include "library-chart.secretNameSparkConf" . }}
{{- end }}
{{- if (.Values.proxy).enabled }}
- name: secret-proxy
secret:
secretName: {{ include "library-chart.secretNameProxy" . }}
{{- end }}
{{- if and (.Values.spark.default) (.Values.repository.mavenRepository) }}
- name: secret-ivysettings
secret:
Expand Down Expand Up @@ -218,6 +223,10 @@ spec:
- secretRef:
name: {{ include "library-chart.secretNameToken" . }}
{{- if .Values.s3.enabled }}
{{- if (.Values.proxy).enabled }}
- secretRef:
name: {{ include "library-chart.secretNameProxy" . }}
{{- end }}
- secretRef:
name: {{ include "library-chart.secretNameS3" . }}
{{- end }}
Expand Down
Loading

0 comments on commit 0a80a40

Please sign in to comment.