You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@datalab.apache.org by lf...@apache.org on 2021/04/20 11:21:32 UTC

[incubator-datalab] 01/01: Merge branch 'develop' into DATALAB-2091

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

lfrolov pushed a commit to branch DATALAB-2091
in repository https://gitbox.apache.org/repos/asf/incubator-datalab.git

commit ebc58fdd97cd0047c36e8af9b7d92a48a46b1b88
Merge: b49443a a62f5f2
Author: leonidfrolov <fr...@gmail.com>
AuthorDate: Tue Apr 20 14:21:16 2021 +0300

    Merge branch 'develop' into DATALAB-2091

 infrastructure-provisioning/src/general/lib/aws/actions_lib.py        | 4 +++-
 .../src/general/scripts/aws/edge_configure_route_table.py             | 3 ++-
 .../src/general/scripts/aws/project_prepare.py                        | 4 ++--
 .../src/general/scripts/aws/ssn_create_endpoint.py                    | 1 +
 4 files changed, 8 insertions(+), 4 deletions(-)

diff --cc infrastructure-provisioning/src/general/scripts/aws/project_prepare.py
index 35fa390,78d497e..c85765d
--- a/infrastructure-provisioning/src/general/scripts/aws/project_prepare.py
+++ b/infrastructure-provisioning/src/general/scripts/aws/project_prepare.py
@@@ -699,10 -700,10 +699,10 @@@ if __name__ == "__main__"
              project_conf['nat_rt_name'] = '{0}-{1}-{2}-nat-rt'.format(project_conf['service_base_name'],
                                                                                project_conf['project_name'],
                                                                                project_conf['endpoint_name'])
-             params = "--vpc_id {} --infra_tag_value {} --edge_instance_id {} --private_subnet_id {}".format(
-                 project_conf['vpc2_id'], project_conf['nat_rt_name'], edge_instance, subnet_id)
+             params = "--vpc_id {} --infra_tag_value {} --edge_instance_id {} --private_subnet_id {} --sbn {}".format(
+                 project_conf['vpc2_id'], project_conf['nat_rt_name'], edge_instance, subnet_id, project_conf['service_base_name'])
              try:
 -                local("~/scripts/{}.py {}".format('edge_configure_route_table', params))
 +                subprocess.run("~/scripts/{}.py {}".format('edge_configure_route_table', params), shell=True, check=True)
              except:
                  traceback.print_exc()
                  raise Exception

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