From 2c9ab9ecf8c96790ee002c17e99d97832e2fd4f6 Mon Sep 17 00:00:00 2001 From: James Martinez Date: Thu, 22 Dec 2022 15:28:40 -0600 Subject: [PATCH] fix new apps web replicas #62 --- client/src/components/apps/new.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/src/components/apps/new.vue b/client/src/components/apps/new.vue index 3b0abf89..2df4d440 100644 --- a/client/src/components/apps/new.vue +++ b/client/src/components/apps/new.vue @@ -796,9 +796,9 @@ export default { podsize: this.podsize, autoscale: this.autoscale, web: { - replicaCount: this.webreplicas || 1, + replicaCount: this.webreplicas || 0, autoscaling: { - minReplicas: this.webreplicasrange[0] || 1, + minReplicas: this.webreplicasrange[0] || 0, maxReplicas: this.webreplicasrange[1] || 0, targetCPUUtilizationPercentage : 80, targetMemoryUtilizationPercentage : 80,