This is an automated email from the ASF dual-hosted git repository.
omartushevskyi pushed a commit to branch DLAB-253
in repository https://gitbox.apache.org/repos/asf/incubator-dlab.git
The following commit(s) were added to refs/heads/DLAB-253 by this push:
new c19c8f7 added additional output
c19c8f7 is described below
commit c19c8f74f1b448a2fd90470c3360fe716971b797
Author: Oleh Martushevskyi <[email protected]>
AuthorDate: Fri Mar 15 12:06:42 2019 +0200
added additional output
---
infrastructure-provisioning/src/general/scripts/aws/ssn_configure.py | 2 ++
infrastructure-provisioning/src/general/scripts/azure/ssn_configure.py | 2 ++
infrastructure-provisioning/src/general/scripts/gcp/ssn_configure.py | 2 ++
3 files changed, 6 insertions(+)
diff --git
a/infrastructure-provisioning/src/general/scripts/aws/ssn_configure.py
b/infrastructure-provisioning/src/general/scripts/aws/ssn_configure.py
index cbb8df0..03ecdda 100644
--- a/infrastructure-provisioning/src/general/scripts/aws/ssn_configure.py
+++ b/infrastructure-provisioning/src/general/scripts/aws/ssn_configure.py
@@ -398,6 +398,8 @@ if __name__ == "__main__":
jenkins_url_https =
"https://{}/jenkins".format(get_instance_hostname(tag_name, instance_name))
print("Jenkins URL: {}".format(jenkins_url))
print("Jenkins URL HTTPS: {}".format(jenkins_url_https))
+ print("DLab UI HTTP URL:
http://{}".format(get_instance_hostname(tag_name, instance_name)))
+ print("DLab UI HTTPS URL:
https://{}".format(get_instance_hostname(tag_name, instance_name)))
try:
with open('jenkins_creds.txt') as f:
print(f.read())
diff --git
a/infrastructure-provisioning/src/general/scripts/azure/ssn_configure.py
b/infrastructure-provisioning/src/general/scripts/azure/ssn_configure.py
index 419213d..97ef24e 100644
--- a/infrastructure-provisioning/src/general/scripts/azure/ssn_configure.py
+++ b/infrastructure-provisioning/src/general/scripts/azure/ssn_configure.py
@@ -292,6 +292,8 @@ if __name__ == "__main__":
jenkins_url_https =
"https://{}/jenkins".format(ssn_conf['instnace_ip'])
print("Jenkins URL: {}".format(jenkins_url))
print("Jenkins URL HTTPS: {}".format(jenkins_url_https))
+ print("DLab UI HTTP URL: http://{}".format(ssn_conf['instnace_ip']))
+ print("DLab UI HTTPS URL: https://{}".format(ssn_conf['instnace_ip']))
try:
with open('jenkins_creds.txt') as f:
diff --git
a/infrastructure-provisioning/src/general/scripts/gcp/ssn_configure.py
b/infrastructure-provisioning/src/general/scripts/gcp/ssn_configure.py
index 6a17c9f..591fd77 100644
--- a/infrastructure-provisioning/src/general/scripts/gcp/ssn_configure.py
+++ b/infrastructure-provisioning/src/general/scripts/gcp/ssn_configure.py
@@ -304,6 +304,8 @@ if __name__ == "__main__":
jenkins_url_https = "https://{}/jenkins".format(instance_hostname)
print("Jenkins URL: {}".format(jenkins_url))
print("Jenkins URL HTTPS: {}".format(jenkins_url_https))
+ print("DLab UI HTTP URL: http://{}".format(instance_hostname))
+ print("DLab UI HTTPS URL: https://{}".format(instance_hostname))
try:
with open('jenkins_creds.txt') as f:
print(f.read())
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]