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/18 09:33:07 UTC

[incubator-dlab] branch develop updated: [DLAB-1249] Fixed notebook secondary image creation

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

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


The following commit(s) were added to refs/heads/develop by this push:
     new 9a15293  [DLAB-1249] Fixed notebook secondary image creation
9a15293 is described below

commit 9a152938049ed55f51eaff05d6c05de97b84bf9e
Author: Demyan Mysakovets <de...@gmail.com>
AuthorDate: Mon Nov 18 11:32:49 2019 +0200

    [DLAB-1249] Fixed notebook secondary image creation
---
 .../src/general/scripts/gcp/rstudio_configure.py                      | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/infrastructure-provisioning/src/general/scripts/gcp/rstudio_configure.py b/infrastructure-provisioning/src/general/scripts/gcp/rstudio_configure.py
index 38c20f2..00ac3fa 100644
--- a/infrastructure-provisioning/src/general/scripts/gcp/rstudio_configure.py
+++ b/infrastructure-provisioning/src/general/scripts/gcp/rstudio_configure.py
@@ -60,7 +60,7 @@ if __name__ == "__main__":
         notebook_config['expected_primary_image_name'] = '{}-{}-{}-{}-primary-image'.format(
             notebook_config['service_base_name'], notebook_config['endpoint_tag'], notebook_config['project_name'],
             os.environ['application'])
-        notebook_config['expected_secondary_image_name'] = '{}-{}-{}-secondary-image'.format(
+        notebook_config['expected_secondary_image_name'] = '{}-{}-{}-{}-secondary-image'.format(
             notebook_config['service_base_name'], notebook_config['endpoint_tag'], notebook_config['project_name'],
             os.environ['application'])
         notebook_config['image_labels'] = {"sbn": notebook_config['service_base_name'],
@@ -70,7 +70,7 @@ if __name__ == "__main__":
     else:
         notebook_config['expected_primary_image_name'] = '{}-{}-{}-primary-image'.format(
             notebook_config['service_base_name'], notebook_config['endpoint_tag'], os.environ['application'])
-        notebook_config['expected_secondary_image_name'] = '{}-{}-{}-{}-secondary-image'.format(
+        notebook_config['expected_secondary_image_name'] = '{}-{}-{}-secondary-image'.format(
             notebook_config['service_base_name'], notebook_config['endpoint_tag'], os.environ['application'])
         notebook_config['image_labels'] = {"sbn": notebook_config['service_base_name'],
                                            "endpoint_tag": notebook_config['endpoint_tag'],


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