Open1

よく使うgoogle cloud 系のコマンドメモ

mattakmattak

設定

一覧表示

gcloud config configurations list

各コマンドでconfigを指定する

gcloud --cnfiguration <CONFIG_NAME>

account

サービスアカウントのリストアップ

gcloud iam service-accounts list

service

サービスリスト

gcloud run services list

サービスyaml表示

gcloud run services describe <SERVICE> --region asia-northeast1 --format yaml

サービス削除

gcloud run services delete <SERVICE> --region asia-northeast1

artifact registory

artifact registoryのレポジトリ一覧

gcloud artifacts repositories list

docker image一覧

gcloud artifacts docker images list \
  asia-northeast1-docker.pkg.dev/<PROJECT>/<REPOSITORY> \
  --include-tags
gcloud artifacts docker images list \
  asia-northeast1-docker.pkg.dev/<PROJECT>/<REPOSITORY>/<IMAGE> 
  --include-tags

削除

gcloud artifacts docker images delete \
  asia-northeast1-docker.pkg.dev/<PROJECT>/<REPOSITORY>/<IMAGE>