Gcloud 应用程序部署,标志自动提示?

是否可以在使用 gcloud app deploy时执行静默部署

当我运行命令 gcloud app deploy ./deployment/app.yaml --version v1时,它总是提示

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

如何自动化? 有没有什么旗子可以让我们把它静音?

10224 次浏览

你正在寻找的 --quiet标志,可用于所有 gcloud命令:

$ 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.
    $ gcloud app deploy --quiet

或者:

    $ gcloud app deploy -q