Hey everyone,
I was wondering if someone could tell me if 10minute deployments for App engine are normal.
I have a simple CI setup with
gitlab.com using the google/cloud-sdk docker image, which executes the following.
- gcloud auth activate-service-account --key-file $KEY_FILE
- gcloud app deploy app.yaml --quiet --project $PROJECT_ID
My app.yaml looks like:
runtime: nodejs
env: flex
manual_scaling:
instances: 1
If someone could let me know if this is the norm or if there is anything I can do to improve the time here, that would be great.
(The equivalent of app engine on a different service took ~2minutes)