You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dlab.apache.org by dm...@apache.org on 2019/11/05 09:50:23 UTC

[incubator-dlab] 01/01: [DLAB-1237] Changed image parameters type to bool for provserv

This is an automated email from the ASF dual-hosted git repository.

dmysakovets pushed a commit to branch DLAB-1237
in repository https://gitbox.apache.org/repos/asf/incubator-dlab.git

commit 611911f9a52eafebef519d12a8395ed2e15a4ff0
Author: Demyan Mysakovets <de...@gmail.com>
AuthorDate: Tue Nov 5 11:48:50 2019 +0200

    [DLAB-1237] Changed image parameters type to bool for provserv
---
 infrastructure-provisioning/scripts/deploy_dlab.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/infrastructure-provisioning/scripts/deploy_dlab.py b/infrastructure-provisioning/scripts/deploy_dlab.py
index 54ca6b4..c035dbe 100644
--- a/infrastructure-provisioning/scripts/deploy_dlab.py
+++ b/infrastructure-provisioning/scripts/deploy_dlab.py
@@ -38,8 +38,8 @@ parser.add_argument('--conf_user_subnets_range', type=str, default='', help='Ran
                                                                             '10.10.0.0/24 - 10.10.10.0/24')
 parser.add_argument('--conf_additional_tags', type=str, default='', help='Additional tags in format '
                                                                          '"Key1:Value1;Key2:Value2"')
-parser.add_argument('--conf_image_enabled', type=str, default='', help='Enable or Disable creating image at first time')
-parser.add_argument('--conf_shared_image_enabled', type=str, default='', help='Enable or Disable shared images')
+parser.add_argument('--conf_image_enabled', type=bool, default='', help='Enable or Disable creating image at first time')
+parser.add_argument('--conf_shared_image_enabled', type=bool, default='', help='Enable or Disable shared images')
 parser.add_argument('--aws_user_predefined_s3_policies', type=str, default='', help='Predefined policies for users '
                                                                                     'instances')
 parser.add_argument('--aws_access_key', type=str, default='', help='AWS Access Key ID')


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@dlab.apache.org
For additional commands, e-mail: commits-help@dlab.apache.org