GCP
GCP SKD安裝
install gcloud
https://cloud.google.com/sdk/downloads
安裝
./install.sh
認證授權
gcloud init
設定區域
gcloud config set compute/zone asia-east1-a
建立叢集
gcloud container clusters create [CLUSTER-NAME]
查看叢集
gcloud container clusters list
設定叢集
gcloud container clusters get-credentials [CLUSTER-NAME]
建立永久磁區
gcloud compute disks create --size 200GB [disk name]
刪除永久磁區
gcloud compute disks delete [disk name]
手動建立容器
gcloud container builds submit --config cloudbuild.yaml . gcloud container builds submit --tag gcr.io/[PROJECT_ID]/quickstart-image . gcloud docker -- push images
GCP GIT
設定git 驗證方式
git config credential.helper gcloud.sh
建立專案
gcloud source repos create [REPO_NAME]
設定專案庫
git remoto add google https://xxx