How to stop creating extra instances when using google managed vms?

前端 未结 1 904
轻奢々
轻奢々 2020-12-21 11:11

Every time I deploy to Google\'s Managed VM service, the console automatically creates a duplicated instance. I am up to 15 instances running in parallel. I even tried using

相关标签:
1条回答
  • 2020-12-21 11:50

    You can deploy over the same version each time:

    gcloud preview app deploy "...\app.yaml" --set-default --version=version-name
    

    This will stop creating VMs.

    0 讨论(0)
提交回复
热议问题