ทำการลง gcloud sdk on ubuntu
เผื่อใครชอบใช้งานผ่าน ubuntu ครับผม
Note: If you are using an instance on Google Compute Engine, Cloud SDK is installed by default. You can still manually install Cloud SDK using the instructions below.
Create an environment variable for the correct distribution:
#export CLOUD_SDK_REPO="cloud-sdk-$(lsb_release -c -s)"
Add the Cloud SDK distribution URI as a package source:
#echo "deb
https://packages.cloud.google.com/apt $CLOUD_SDK_REPO main" | sudo tee -a /etc/apt/sources.list.d/google-cloud-sdk.list
Import the Google Cloud public key:
#curl
https://packages.cloud.google.com/apt/doc/apt-key.gpg | sudo apt-key add -
Update and install the Cloud SDK:
#sudo apt-get update && sudo apt-get install google-cloud-sdk
Optionally install any of these additional components:
google-cloud-sdk-app-engine-python
google-cloud-sdk-app-engine-java
google-cloud-sdk-datalab
google-cloud-sdk-datastore-emulator
google-cloud-sdk-pubsub-emulator
google-cloud-sdk-bigtable-emulator
kubectl
For example, the google-cloud-sdk-app-engine-java component can be installed as follows:
#sudo apt-get install google-cloud-sdk-app-engine-java
Run gcloud init to get started และทำการยืนยันโคดโดย copy url ที่ทาง gcloud ให้มาไปเปิดในหน้าเว็บแล้วทำการยืนยัน นำรหัสที่เป็นโคดยืนยันมาวางในช่อง
#gcloud init
เท่านี้ก็สามารถ remote จาก ubuntu เข้า gcloud ได้ละครับผม : )
#reference
https://cloud.google.com/sdk/downloads#apt-get