File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 336336KUBERNETES_POD_TERMINATION_GRACE_PERIOD_SECONDS = int (os .environ .get ('KUBERNETES_POD_TERMINATION_GRACE_PERIOD_SECONDS' , 30 )) # noqa
337337
338338# Minimum allocation cpu, units are represented in the millicpu of CPUs
339- KUBERNETES_CPU_MIN_ALLOCATION = int (os .environ .get ('KUBERNETES_RAM_MIN_ALLOCATION ' , '10' ))
339+ KUBERNETES_CPU_MIN_ALLOCATION = int (os .environ .get ('KUBERNETES_CPU_MIN_ALLOCATION ' , '10' ))
340340# Minimum allocation memory, units are represented in Megabytes(M)
341341KUBERNETES_RAM_MIN_ALLOCATION = int (os .environ .get ('KUBERNETES_RAM_MIN_ALLOCATION' , '64' ))
342342# Maximum allocation cpu, units are represented in the millicpu of CPUs
343- KUBERNETES_CPU_MAX_ALLOCATION = int (os .environ .get ('KUBERNETES_RAM_MIN_ALLOCATION ' , '32000' ))
343+ KUBERNETES_CPU_MAX_ALLOCATION = int (os .environ .get ('KUBERNETES_CPU_MAX_ALLOCATION ' , '32000' ))
344344# Maximum allocation memory, units are represented in Megabytes(M)
345- KUBERNETES_RAM_MAX_ALLOCATION = int (os .environ .get ('KUBERNETES_RAM_MIN_ALLOCATION ' , '131072' ))
345+ KUBERNETES_RAM_MAX_ALLOCATION = int (os .environ .get ('KUBERNETES_RAM_MAX_ALLOCATION ' , '131072' ))
346346# CPU allocation ratio
347347KUBERNETES_CPU_ALLOCATION_RATIO = int (os .environ .get ('KUBERNETES_CPU_ALLOCATION_RATIO' , '10' ))
348348# RAM allocation ratio
You can’t perform that action at this time.
0 commit comments