You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Guaranteed - has both cpu/memory limits. requests not required, as these will be inferred.
44
45
qos_limits= {
45
46
"cpu": str(cpu),
46
-
"memory": "%sM"%str(memory),
47
-
"ephemeral-storage": "%sM"%str(storage),
47
+
"memory": "%sMi"%str(memory),
48
+
"ephemeral-storage": "%sMi"%str(storage),
48
49
}
49
50
# NOTE: Even though Kubernetes will produce matching requests for the specified limits, this happens late in the lifecycle.
50
51
# We specify them explicitly here to make some K8S tooling happy, in case they rely on .resources.requests being present at time of submitting the job.
0 commit comments