emahiro/b.log

日々の勉強の記録とか育児の記録とか。

GCP で Container Registory から Artifact Registory に移行する

Overview

GCP の Container Registory が廃止されるので Artifact Registory に移行しました。

cloud.google.com

移行手順

以下のドキュメントに沿って進めました。

cloud.google.com

なお、移行するときに Container Registory -> Artifact Registory へコピーするための権限をリソースに渡す必要があります。

  gcloud projects add-iam-policy-binding $projectID --member=user:$username --role='roles/storage.admin'
  gcloud projects add-iam-policy-binding $projectID --member='$serviceAccountName' --role='roles/storage.objectViewer'