Created
July 14, 2019 21:42
-
-
Save terashim/73013a86c4035863d7931aef51a18005 to your computer and use it in GitHub Desktop.
GKEでプリエンプティブインスタンスのクラスタを作成するgcloudコマンドの例
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
gcloud container clusters create experiment-cluster \ | |
--machine-type=n1-standard-1 \ | |
--preemptible \ | |
--enable-autoscaling --max-nodes=3 --min-nodes=0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
料金ページ から us-central1 リージョンの月額料金を抜粋:
マシンタイプ n1-standard-1 でノード数3とすると、非プリエンプティブなら月額73ドル、プリエンプティブなら月額22ドルになる。