From 65806429f5c50be51d4b15229d806f809f9cfeba Mon Sep 17 00:00:00 2001 From: Changbin Liu Date: Wed, 25 Sep 2013 17:15:48 -0400 Subject: [PATCH] Fix flavor type bug in config opts flavor is StrOpt instead of IntOpt Change-Id: I8c2269ff940561821a7f24097f204d40f83f07c9 --- inception/orchestrator.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/inception/orchestrator.py b/inception/orchestrator.py index 659c381..9887cc0 100644 --- a/inception/orchestrator.py +++ b/inception/orchestrator.py @@ -92,10 +92,10 @@ orchestrator_opts = [ cfg.StrOpt('chefserver_image', default='u1204-130716-gvc', help='name of image to construct chefserver'), - cfg.IntOpt('flavor', + cfg.StrOpt('flavor', default='m1.medium', help='name of instance flavor used for nodes'), - cfg.IntOpt('gateway_flavor', + cfg.StrOpt('gateway_flavor', default='m1.tiny', help='name of instance flavor used to construct gateway node'), cfg.StrOpt('key_name',