Skip to content
Merged
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
8 changes: 6 additions & 2 deletions stacks/jupyterhub-keycloak/jupyterhub.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -203,8 +203,12 @@ options:
"{{cpu}}":
display_name: "{{cpu}}"
kubespawner_override:
cpu_guarantee: "{{cpu}}"
cpu_limit: "{{cpu}}"
# We cannot quote these values because both fields MUST be a float, not a string.
# The Kubernetes notation (eg. 500m) is also not supported.
# See https://github.com/jupyterhub/helm-chart/issues/69
# This leads to this file being skipped in the Helm Chart bump script. Beware!
cpu_guarantee: {{cpu}}
cpu_limit: {{cpu}}
# {% endfor %}
memory:
display_name: Memory
Expand Down
Loading