I have a Google App Engine Java 11 service using the Standard Environment.
I have deployed it specifying in the corresponding app.yaml
file manual scaling, setting the number of instances to 1.
Is there a way that I can increase the number of instances for this service without having to upload again all the files in the service?
So I have one instance. Now I want 2 instances. How do I do this?
Have not found a way in either the console or in the gcloud utilities to do this.
Also, just calling gcloud app deploy
with the modified app.yaml
file creates a broken version of the service.
app.yaml:
service: headergrabber
runtime: java11
instance_class: B8
manual_scaling:
instances: 1