We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f13fb9 commit 42b901dCopy full SHA for 42b901d
1 file changed
stacks/jupyterhub-keycloak/jupyterhub.yaml
@@ -203,8 +203,12 @@ options:
203
"{{cpu}}":
204
display_name: "{{cpu}}"
205
kubespawner_override:
206
- cpu_guarantee: "{{cpu}}"
207
- 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.
208
+ # See https://github.com/jupyterhub/helm-chart/issues/69
209
+ # This leads to this file being skipped in the Helm Chart bump script. Beware!
210
+ cpu_guarantee: {{cpu}}
211
+ cpu_limit: {{cpu}}
212
# {% endfor %}
213
memory:
214
display_name: Memory
0 commit comments