gcloud app deploy, flag to automate prompting?

Sahas picture Sahas · Aug 10, 2016 · Viewed 7.3k times · Source

Is it possible to do silent deployment when using gcloud app deploy

When I run the command gcloud app deploy ./deployment/app.yaml --version v1 its always prompting for

Do you want to continue (Y/n)? Y

how to automate this? is there any flag that we can pass in to mute this?

Answer

Zachary Newman picture Zachary Newman · Aug 10, 2016

You're looking for the --quiet flag, available across all gcloud commands:

$ gcloud --help
     --quiet, -q
    Disable all interactive prompts when running gcloud commands. If input
    is required, defaults will be used, or an error will be raised.