2
2

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 5 years have passed since last update.

[GCP ] Cloud Deployment Managerのコマンド

Last updated at Posted at 2018-02-28

[GCP ] Cloud Deployment Managerのコマンド

  • 設定ファイルの中身templates.yamlに正しく記述されているものとします。
  • 今回はコマンドに注目して作業時の忘却録とします。

構成のデプロイをプレビューする

  • デプロイする前に、内容が本当に良いか設定のみを仮作成したい時には --preview をつけて実行します。
gcloud deployment-manager deployments create my-server --config templates.yaml --preview

構成のデプロイを確認したい時

  • デプロイされる内容を確認したい時に使用します。webコンソールで確認しても良いと思います。
gcloud deployment-manager deployments describe my-sever

プレビューをキャンセルしたい時

  • プレビューで指定した名前 my-serverを指定してcancel-previewコマンドを使います。
gcloud deployment-manager deployments cancel-preview my-server

プレビューを実行して構成作成する

  • プレビューした構成をデプロイしたい場合はプレビューで指定した名前 my-serverupdateします。
  • このコマンドを実行すると実際にサーバが作成されて、料金が発生します。
gcloud deployment-manager deployments update my-server

プレビューしないで、構成作成する

  • もちろんプレビュー無しで、すぐに構成作成する事もできます。--preview を付けないでcreate
gcloud deployment-manager deployments create my-server --config templates.yaml

最後に

最近技術ブログも始めましたので、こっちもよろしくです。

2
2
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
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?