Gcloud - How to automate installation of gcloud on a server?

前端 未结 3 898
被撕碎了的回忆
被撕碎了的回忆 2021-02-10 10:44

I want to write a shell script which basically goes through all the installation steps for gcloud, as outlined at: https://cloud.google.com/sdk/?hl=en

However, when you

3条回答
  •  被撕碎了的回忆
    2021-02-10 11:34

    There seems to be a better / more elegant way to do this as per the docs:

    curl https://sdk.cloud.google.com > install.sh
    bash install.sh --disable-prompts
    

提交回复
热议问题