gcloud
インストール方法
ドキュメントを参照のこと
プロジェクト用の設定を追加する
権限を持っているプロジェクトが複数ある場合は gcloud の設定を複数切り替えて使用できる
プロジェクトやリージョンを設定して後で簡単に環境を切り替えられる
code:sh
gcloud config configurations create <設定名>
gcloud config set account <メールアドレス>
gcloud config set project <プロジェクト名>
gcloud config set compute/zone asia-northeast1-a
gcloud config set compute/region asia-northeast1
gcloud config configurations list
設定を切り替える
事前に設定した設定を切り替える手法。
code:sh
# 設定を一覧にする
gcloud config configurations list
# 設定名を指定して切り替える
gcloud config configurations activate <設定名>
# 切替後の状態を確認する
gcloud config configurations list
Cloud Storage の状態を確認する
code:sh
# バケットを一覧にする
gcloud storage buckets list
# バケットの詳細を表示する
gcloud storage buckets describe gs://<バケット名>
関連