Skip to content

Commit

Permalink
add overwriteSchemaWith for jupyter-python
Browse files Browse the repository at this point in the history
  • Loading branch information
fcomte authored Sep 3, 2024
1 parent a5f8f6b commit 67bdcea
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 4 deletions.
2 changes: 1 addition & 1 deletion charts/jupyter-python/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ type: application
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)

version: 1.13.44
version: 1.14.0

dependencies:
- name: library-chart
Expand Down
32 changes: 29 additions & 3 deletions charts/jupyter-python/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,10 @@
"title": "custom image",
"type": "boolean",
"description": "use a custom jupyter docker image",
"default": false
"default": false,
"x-onyxia": {
"overwriteSchemaWith": "ide/customImage.json"
}
},
"version": {
"description": "jupyter unsupported version",
Expand All @@ -62,6 +65,9 @@
"resources": {
"description": "Your service will have at least the requested resources and never more than its limits. No limit for a resource and you can consume everything left on the host machine.",
"type": "object",
"x-onyxia": {
"overwriteSchemaWith": "ide/resources.json"
},
"properties": {
"requests": {
"description": "Guaranteed resources",
Expand Down Expand Up @@ -152,6 +158,9 @@
"persistence": {
"description": "Configuration for persistence",
"type": "object",
"x-onyxia": {
"overwriteSchemaWith": "ide/persistence.json"
},
"properties": {
"enabled": {
"type": "boolean",
Expand Down Expand Up @@ -183,6 +192,9 @@
"init": {
"description": "Init parameters",
"type": "object",
"x-onyxia": {
"overwriteSchemaWith": "ide/init.json"
},
"properties": {
"regionInit": {
"type": "string",
Expand All @@ -208,6 +220,9 @@
"kubernetes": {
"description": "configuration of your kubernetes access",
"type": "object",
"x-onyxia": {
"overwriteSchemaWith": "ide/role.json"
},
"properties": {
"enabled": {
"type": "boolean",
Expand All @@ -233,6 +248,9 @@
"vault": {
"description": "Configuration of vault client",
"type": "object",
"x-onyxia": {
"overwriteSchemaWith": "ide/vault.json"
},
"properties": {
"enabled": {
"type": "boolean",
Expand Down Expand Up @@ -298,6 +316,9 @@
"s3": {
"description": "Configuration of temporary identity",
"type": "object",
"x-onyxia": {
"overwriteSchemaWith": "ide/s3.json"
},
"properties": {
"enabled": {
"type": "boolean",
Expand Down Expand Up @@ -366,6 +387,9 @@
"git": {
"description": "Git user configuration",
"type": "object",
"x-onyxia": {
"overwriteSchemaWith": "ide/git.json"
},
"properties": {
"enabled": {
"type": "boolean",
Expand Down Expand Up @@ -569,7 +593,8 @@
"default": {},
"x-onyxia": {
"hidden": false,
"overwriteDefaultWith": "region.nodeSelector"
"overwriteDefaultWith": "region.nodeSelector",
"overwriteSchemaWith": "nodeSelector.json"
}
},
"openshiftSCC": {
Expand Down Expand Up @@ -732,7 +757,8 @@
"default": [],
"x-onyxia": {
"hidden": true,
"overwriteDefaultWith": "region.tolerations"
"overwriteDefaultWith": "region.tolerations",
"overwriteSchemaWith": "tolerations.json"
}
},
"userPreferences": {
Expand Down

0 comments on commit 67bdcea

Please sign in to comment.