Skip to content

Commit a98ca5b

Browse files
committed
fix(settings): fix env name
1 parent d37abc2 commit a98ca5b

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

rootfs/api/settings/production.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -336,13 +336,13 @@
336336
KUBERNETES_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)
341341
KUBERNETES_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
347347
KUBERNETES_CPU_ALLOCATION_RATIO = int(os.environ.get('KUBERNETES_CPU_ALLOCATION_RATIO', '10'))
348348
# RAM allocation ratio

0 commit comments

Comments
 (0)