Skip to content

Commit

Permalink
Merge pull request #63 from james-martinez/fix/web-replicas
Browse files Browse the repository at this point in the history
fix new apps web replicas #62
  • Loading branch information
mms-gianni committed Dec 23, 2022
2 parents 1c301e6 + 2c9ab9e commit 5e0baa1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/src/components/apps/new.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 5e0baa1

Please sign in to comment.