You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airavata.apache.org by er...@apache.org on 2019/11/03 08:27:51 UTC

[airavata] branch master updated: Added the new doamin and SSL certificate to Django dREG gateway

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

eroma pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/airavata.git


The following commit(s) were added to refs/heads/master by this push:
     new a01e8bc  Added the new doamin and SSL certificate to  Django dREG gateway
a01e8bc is described below

commit a01e8bc4ad2a1153f9cfea77099d6aa30d63016b
Author: Eroma Abeysinghe <er...@gmail.com>
AuthorDate: Sun Nov 3 03:27:38 2019 -0500

    Added the new doamin and SSL certificate to  Django dREG gateway
---
 .../scigap/dreg-production/host_vars/vars.yml      | 50 ++++++++++++++++++++++
 1 file changed, 50 insertions(+)

diff --git a/dev-tools/ansible/inventories/scigap/dreg-production/host_vars/vars.yml b/dev-tools/ansible/inventories/scigap/dreg-production/host_vars/vars.yml
new file mode 100644
index 0000000..2b6d8b4
--- /dev/null
+++ b/dev-tools/ansible/inventories/scigap/dreg-production/host_vars/vars.yml
@@ -0,0 +1,50 @@
+#
+#
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#   http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+#
+
+---
+airavata_django_repo: "https://github.com/shivamriky/airavata-django-portal.git"
+airavata_django_git_branch: "dreg"
+airavata_django_extra_dependencies:
+  - git+https://github.com/SciGaP/dreg-djangoapp.git@gbrowser#egg=dreg-djangoapp
+
+vhost_servername: "django.dreg.scigap.org"
+vhost_ssl: True
+ssl_certificate_file: "/etc/letsencrypt/live/django.dreg.scigap.org/cert.pem"
+ssl_certificate_chain_file: "/etc/letsencrypt/live/django.dreg.scigap.org/fullchain.pem"
+ssl_certificate_key_file: "/etc/letsencrypt/live/bdjango.dreg.scigap.org/privkey.pem"
+
+## Keycloak related variables
+tenant_domain: "cornelldna"
+oauth_client_key: "{{ vault_oauth_client_key }}"
+oauth_client_secret: "{{ vault_oauth_client_secret }}"
+
+auth_options:
+  password:
+    name: "dREG"
+  external:
+
+gateway_id: "cornelldna"
+experiment_data_dir: "{{ user_data_dir }}/cornelldna"
+gateway_data_store_ssh_public_key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCTs6k2lSt5nn+UF3N1rAko9WjdtHZ1xLcKxCG4+4AVMdTIeng12g+1qB5hIFiDgesT/D/nzoA27EFj5nWiYanxBySNgl1Re8kR0nEqQbR0zj1dSibmfjW+vmOZzEiNSrNoLlc4KbFgqFCRGIlZ1bWZ7yHtJ3I7xxfKhvvxCTzJ4K71v1aovnDTUYophy2lUsdOcOq84Qhv3ITZafgblz3mJSwVpnnI72IepzonzDUdcf/w0lKCl70L9MgQAZ2V4e9sQZWJLI5s1VtJsqKggtgI4goPyxXROoH9PTUZFqvvYjLGW8JVS9eZKblSKil09yckPfZCSk1i/UD/uY6O7bjf"
+
+admin_emails: "[('SGRC', 'sgrc-iu-group@iu.edu')]"
+portal_title: "dREG Portal"
+
+...