Skip to content

Commit c4b85cb

Browse files
authored
Merge pull request #58 from james-martinez/fix/web-replicas
fix Web pods always is set to 1 in UI #48
2 parents 446e9ca + 501ba36 commit c4b85cb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

client/src/components/apps/new.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -746,7 +746,7 @@ export default {
746746
podsize: this.podsize,
747747
autoscale: this.autoscale,
748748
web: {
749-
replicaCount: this.webreplicas || 1,
749+
replicaCount: this.webreplicas || 0,
750750
autoscaling: {
751751
minReplicas: this.webreplicasrange[0] || 1,
752752
maxReplicas: this.webreplicasrange[1] || 0,
@@ -879,4 +879,4 @@ export default {
879879
</script>
880880

881881
<style lang="scss">
882-
</style>
882+
</style>

0 commit comments

Comments
 (0)