Bug: change default cluster create experience to require --id cli parameter (#112)

* change default cluster create experience to require --id cli parameter

* updated error message to reflect intended workflow
This commit is contained in:
Jacob Freck 2017-09-29 10:26:43 -07:00 коммит произвёл GitHub
Родитель fe9bb7be83
Коммит 750b0848aa
2 изменённых файлов: 2 добавлений и 3 удалений

Просмотреть файл

@ -1,7 +1,6 @@
## cluster settings
# id: <id of the cluster to be created>
id: spark_cluster
# id: <id of the cluster to be created, reccommended to specify with --id command line parameter>
# vm_size: <vm-size, see available options here: https://azure.microsoft.com/en-us/pricing/details/virtual-machines/linux/>
vm_size: standard_a2

Просмотреть файл

@ -174,7 +174,7 @@ class ClusterConfig:
if self.uid is None:
raise error.ThunderboltError(
"Please supply an id for the cluster either in the cluster.yaml configuration file or with a parameter (--id)")
"Please supply an id for the cluster with a parameter (--id)")
if self.size == 0 and self.size_low_pri == 0:
raise error.ThunderboltError(