Skip to content

Commit

Permalink
Add custom JupyterHub chart schema
Browse files Browse the repository at this point in the history
  • Loading branch information
sd109 committed Dec 13, 2024
1 parent 050844f commit 521f4fd
Showing 1 changed file with 34 additions and 1 deletion.
35 changes: 34 additions & 1 deletion jupyterhub-azimuth/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,42 @@
}
},
"required": ["capacity"]
},
"image": {
"type": "object",
"properties": {
"name": {
"type": "string",
"title": "Image Name",
"description": "The notebook image to use.",
"default": "quay.io/jupyter/minimal-notebook"
},
"tag": {
"type": "string",
"title": "Image Tag",
"description": "The notebook image tag to use.",
"default": "2024-08-05"
}
},
"required": ["name", "tag"]
},
"extraResource": {
"type": "object",
"properties": {
"limits": {
"type": "object",
"properties": {
"nvidia.com/gpu": {
"type": "string",
"title": "GPU Count",
"description": "Number of MIG GPUs per notebook",
}
}
}
}
}
},
"required": ["cpu", "memory", "storage"]
"required": ["cpu", "memory", "storage", "image"]
}
},
"required": ["singleuser"]
Expand Down

0 comments on commit 521f4fd

Please sign in to comment.