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/03/27 13:18:26 UTC

[incubator-dlab] 01/01: [DLAB-1668]: made container name lower-case

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

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

commit 5641cc7e5f9930e99de5ae5974ac9f26981bdc3b
Author: leonidfrolov <fr...@gmail.com>
AuthorDate: Fri Mar 27 15:16:03 2020 +0200

    [DLAB-1668]: made container name lower-case
---
 .../src/general/scripts/azure/edge_configure.py                       | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/infrastructure-provisioning/src/general/scripts/azure/edge_configure.py b/infrastructure-provisioning/src/general/scripts/azure/edge_configure.py
index 0949946..c45b8b8 100644
--- a/infrastructure-provisioning/src/general/scripts/azure/edge_configure.py
+++ b/infrastructure-provisioning/src/general/scripts/azure/edge_configure.py
@@ -87,11 +87,11 @@ if __name__ == "__main__":
                                                                              edge_conf['endpoint_name'])
         edge_conf['user_container_name'] = '{0}-{1}-{2}-bucket'.format(edge_conf['service_base_name'],
                                                                        edge_conf['project_name'],
-                                                                       edge_conf['endpoint_name'])
+                                                                       edge_conf['endpoint_name']).lower()
         edge_conf['shared_storage_account_name'] = '{0}-{1}-shared-bucket'.format(edge_conf['service_base_name'],
                                                                                   edge_conf['endpoint_name'])
         edge_conf['shared_container_name'] = '{0}-{1}-shared-bucket'.format(edge_conf['service_base_name'],
-                                                                            edge_conf['endpoint_name'])
+                                                                            edge_conf['endpoint_name']).lower()
         edge_conf['datalake_store_name'] = '{}-ssn-datalake'.format(edge_conf['service_base_name'])
         edge_conf['datalake_shared_directory_name'] = '{}-shared-folder'.format(edge_conf['service_base_name'])
         edge_conf['datalake_user_directory_name'] = '{0}-{1}-{2}-folder'.format(edge_conf['service_base_name'],


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