You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dlab.apache.org by lf...@apache.org on 2020/02/27 12:49:50 UTC

[incubator-dlab] branch DLAB-1468 updated (66121dd -> 499404d)

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

lfrolov pushed a change to branch DLAB-1468
in repository https://gitbox.apache.org/repos/asf/incubator-dlab.git.


 discard 66121dd  DLAB-1468 Removed usage of conf_shared_image_enabled parameter from py scripts
     new 499404d  [DLAB-1468]: disables shared image enabled variable in dlab.ini and deploy dlab script

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (66121dd)
            \
             N -- N -- N   refs/heads/DLAB-1468 (499404d)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 infrastructure-provisioning/scripts/deploy_dlab.py |  2 +-
 .../src/general/conf/dlab.ini                      |  2 +-
 .../general/scripts/aws/common_prepare_notebook.py |  8 ++-
 .../src/general/scripts/aws/dataengine_prepare.py  |  8 ++-
 .../general/scripts/aws/deeplearning_configure.py  | 25 ++++++++-
 .../src/general/scripts/aws/jupyter_configure.py   | 22 +++++++-
 .../general/scripts/aws/jupyterlab_configure.py    | 41 ++++++++------
 .../src/general/scripts/aws/rstudio_configure.py   | 25 ++++++++-
 .../src/general/scripts/aws/ssn_configure.py       |  4 ++
 .../scripts/aws/tensor-rstudio_configure.py        | 25 ++++++++-
 .../src/general/scripts/aws/tensor_configure.py    | 25 ++++++++-
 .../src/general/scripts/aws/zeppelin_configure.py  | 25 ++++++++-
 .../scripts/azure/common_prepare_notebook.py       | 10 +++-
 .../general/scripts/azure/dataengine_prepare.py    |  8 ++-
 .../scripts/azure/deeplearning_configure.py        | 19 ++++++-
 .../src/general/scripts/azure/jupyter_configure.py | 19 ++++++-
 .../src/general/scripts/azure/rstudio_configure.py | 19 ++++++-
 .../src/general/scripts/azure/ssn_configure.py     |  4 ++
 .../src/general/scripts/azure/tensor_configure.py  | 19 ++++++-
 .../general/scripts/azure/zeppelin_configure.py    | 19 ++++++-
 .../general/scripts/gcp/common_prepare_notebook.py | 13 ++++-
 .../src/general/scripts/gcp/dataengine_prepare.py  | 13 ++++-
 .../general/scripts/gcp/deeplearning_configure.py  | 20 +++++--
 .../src/general/scripts/gcp/jupyter_configure.py   | 17 ++++--
 .../general/scripts/gcp/jupyterlab_configure.py    | 62 +++++++++++++---------
 .../src/general/scripts/gcp/rstudio_configure.py   | 19 +++++--
 .../src/general/scripts/gcp/ssn_configure.py       |  4 ++
 .../src/general/scripts/gcp/superset_configure.py  | 20 +++++--
 .../scripts/gcp/tensor-rstudio_configure.py        | 19 +++++--
 .../src/general/scripts/gcp/tensor_configure.py    | 20 +++++--
 .../src/general/scripts/gcp/zeppelin_configure.py  | 19 +++++--
 .../terraform/bin/deploy/endpoint_fab.py           |  4 ++
 32 files changed, 466 insertions(+), 93 deletions(-)


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


[incubator-dlab] 01/01: [DLAB-1468]: disables shared image enabled variable in dlab.ini and deploy dlab script

Posted by lf...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 499404dad6531a8b76d7baec47169c31ac76e3f5
Author: leonidfrolov <fr...@gmail.com>
AuthorDate: Thu Feb 27 14:49:04 2020 +0200

    [DLAB-1468]: disables shared image enabled variable in dlab.ini and deploy dlab script
---
 infrastructure-provisioning/scripts/deploy_dlab.py    | 2 +-
 infrastructure-provisioning/src/general/conf/dlab.ini | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/infrastructure-provisioning/scripts/deploy_dlab.py b/infrastructure-provisioning/scripts/deploy_dlab.py
index 33a5f6d..1b820cf 100644
--- a/infrastructure-provisioning/scripts/deploy_dlab.py
+++ b/infrastructure-provisioning/scripts/deploy_dlab.py
@@ -40,7 +40,7 @@ parser.add_argument('--conf_private_subnet_prefix', type=str, default='24', help
 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_shared_image_enabled', type=str, 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')
diff --git a/infrastructure-provisioning/src/general/conf/dlab.ini b/infrastructure-provisioning/src/general/conf/dlab.ini
index 2515240..72d565c 100644
--- a/infrastructure-provisioning/src/general/conf/dlab.ini
+++ b/infrastructure-provisioning/src/general/conf/dlab.ini
@@ -47,7 +47,7 @@ gitlab_certfile = dlab-gitlab.crt
 ### Enable or Disable creating image at first time
 image_enabled = true
 ###Enable or Disable shared images
-shared_image_enabled = true
+#shared_image_enabled = true
 ### CIDR of VPC
 vpc_cidr = '172.31.0.0/16'
 ### CIDR of second VPC


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