0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

gcloudコマンドでGCEが起動しない

Posted at

gcloudコマンドでgoogle compute engine(GCE)を起動しようとすると以下のエラーが発生しました。

実施したコマンド

gcloud compute instances create test --project centos-cloud --image=centos-stream-9-v20230306 --boot-disk-size=50GB --zone=asia-northeast1-a --machine-type=e2-small

エラーメッセージ

WARNING: You have selected a disk size of under [200GB]. This may result in poor I/O performance. For more information, see: https://developers.google.com/compute/docs/disks#performance.
ERROR: (gcloud.compute.instances.create) Could not fetch resource:
 - Required 'compute.instances.create' permission for 'projects/centos-cloud/zones/asia-northeast1-a/instances/test'

スクリーンショット 2023-05-07 15.59.06.png

原因

imageをパスで指定しなければいけないところを、名前だけで記載していました。
名前の調べ方は

gcloud compute list --uri

で出てきます。(v1以降をコピーする)
スクリーンショット 2023-05-07 16.25.23.png

修正後の実行コマンド

gcloud compute instances create test --project <プロジェクト名> --image=projects/centos-cloud/global/images/centos-stream-9-v20230306 --boot-disk-size=50GB --zone=asia-northeast1-a --machine-type=e2-small

スクリーンショット 2023-05-07 16.22.14.png
オプションが不足しているため一部警告が表示されていますが、GCEを作成することができました。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?