Skip to content

Commit aebb989

Browse files
authored
[All] Add runtimeClassName (#297)
1 parent aadba57 commit aebb989

24 files changed

Lines changed: 90 additions & 6 deletions

charts/jupyter-pyspark/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ type: application
2424
# This is the chart version. This version number should be incremented each time you make changes
2525
# to the chart and its templates, including the app version.
2626
# Versions are expected to follow Semantic Versioning (https://semver.org/)
27-
version: 3.0.4
27+
version: 3.1.0
2828
dependencies:
2929
- name: library-chart
3030
version: 2.0.3

charts/jupyter-pyspark/templates/statefulset.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,9 @@ spec:
6868
labels:
6969
{{- include "library-chart.selectorLabels" . | nindent 8 }}
7070
spec:
71+
{{- if .Values.runtimeClassName -}}
72+
runtimeClassName: {{ .Values.runtimeClassName }}
73+
{{- end }}
7174
volumes:
7275
- name: config-files
7376
emptyDir: {}

charts/jupyter-pyspark/values.schema.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1157,6 +1157,15 @@
11571157
"default": ""
11581158
}
11591159
}
1160+
},
1161+
"runtimeClassName" : {
1162+
"type": "string",
1163+
"description": "Runtime Class Name",
1164+
"default": "",
1165+
"x-onyxia": {
1166+
"hidden": true,
1167+
"overwriteSchemaWith": "ide/runtimeClassName.json"
1168+
}
11601169
}
11611170
}
11621171
}

charts/jupyter-pyspark/values.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -292,3 +292,5 @@ certificates: {}
292292
message:
293293
fr: ""
294294
en: ""
295+
296+
runtimeClassName: ""

charts/jupyter-python/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ type: application
2222
# This is the chart version. This version number should be incremented each time you make changes
2323
# to the chart and its templates, including the app version.
2424
# Versions are expected to follow Semantic Versioning (https://semver.org/)
25-
version: 2.3.31
25+
version: 2.4.0
2626
dependencies:
2727
- name: library-chart
2828
version: 2.0.3

charts/jupyter-python/templates/statefulset.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,9 @@ spec:
5959
labels:
6060
{{- include "library-chart.selectorLabels" . | nindent 8 }}
6161
spec:
62+
{{- if .Values.runtimeClassName -}}
63+
runtimeClassName: {{ .Values.runtimeClassName }}
64+
{{- end }}
6265
volumes:
6366
- name: jupyter-local
6467
emptyDir: {}

charts/jupyter-python/values.schema.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1099,6 +1099,15 @@
10991099
"default": ""
11001100
}
11011101
}
1102+
},
1103+
"runtimeClassName" : {
1104+
"type": "string",
1105+
"description": "Runtime Class Name",
1106+
"default": "",
1107+
"x-onyxia": {
1108+
"hidden": true,
1109+
"overwriteSchemaWith": "ide/runtimeClassName.json"
1110+
}
11021111
}
11031112
}
11041113
}

charts/jupyter-python/values.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -265,3 +265,5 @@ certificates: {}
265265
message:
266266
fr: ""
267267
en: ""
268+
269+
runtimeClassName: ""

charts/rstudio-sparkr/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ type: application
2323
# This is the chart version. This version number should be incremented each time you make changes
2424
# to the chart and its templates, including the app version.
2525
# Versions are expected to follow Semantic Versioning (https://semver.org/)
26-
version: 3.0.3
26+
version: 3.1.0
2727
dependencies:
2828
- name: library-chart
2929
version: 2.0.3

charts/rstudio-sparkr/templates/statefulset.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,9 @@ spec:
5353
labels:
5454
{{- include "library-chart.selectorLabels" . | nindent 8 }}
5555
spec:
56+
{{- if .Values.runtimeClassName -}}
57+
runtimeClassName: {{ .Values.runtimeClassName }}
58+
{{- end }}
5659
volumes:
5760
- name: config-files
5861
emptyDir: {}

0 commit comments

Comments
 (0)