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 10:06:10 UTC

[airavata] branch master updated: Added SSL certificates and .yml for Django FutureWater 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 b4d14f0  Added SSL certificates and .yml for Django FutureWater gateway
b4d14f0 is described below

commit b4d14f07d6236090d9c7db4d2e4c9b8922da7361
Author: Eroma Abeysinghe <er...@gmail.com>
AuthorDate: Sun Nov 3 05:05:58 2019 -0500

    Added SSL certificates and .yml for Django FutureWater gateway
---
 .../pfec-hydro-production/host_vars/vars.yml       | 53 ++++++++++++++++++++++
 1 file changed, 53 insertions(+)

diff --git a/dev-tools/ansible/inventories/scigap/pfec-hydro-production/host_vars/vars.yml b/dev-tools/ansible/inventories/scigap/pfec-hydro-production/host_vars/vars.yml
new file mode 100644
index 0000000..82be8c6
--- /dev/null
+++ b/dev-tools/ansible/inventories/scigap/pfec-hydro-production/host_vars/vars.yml
@@ -0,0 +1,53 @@
+#
+#
+# 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.futurewater.scigap.org"
+vhost_ssl: True
+ssl_certificate_file: "/etc/letsencrypt/live/django.futurewater.scigap.org/cert.pem"
+ssl_certificate_chain_file: "/etc/letsencrypt/live/django.futurewater.scigap.org/fullchain.pem"
+ssl_certificate_key_file: "/etc/letsencrypt/live/django.futurewater.scigap.org/privkey.pem"
+
+## Keycloak related variables
+tenant_domain: "pfec-hydro"
+oauth_client_key: "{{ vault_oauth_client_key }}"
+oauth_client_secret: "{{ vault_oauth_client_secret }}"
+
+auth_options:
+  password:
+    name: "Future Water Gateway"
+  external:
+    - name: "existing institution credentials"
+      idp_alias: "cilogon"
+      logo: "images/cilogon-logo-24x24-b.png"
+
+gateway_id: "pfec-hydro"
+experiment_data_dir: "{{ user_data_dir }}/pfec-hydro"
+gateway_data_store_ssh_public_key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC9qczDIVUhTxPmMsvF2J/NGIWo35HDgm3IUL41w1bUi5FX3CzuKwWtBh6IGoY4l+ibvWiRw2w9+MLWPhAWglLjXXekHCc/C5LuU8qi6zGZgQfD6U4yFpHXmkZLUHt30iKbLJXgypy7MaQ4n3sWDXJe2Dbsc4FMSK+KXFQ5KNZ/meOCCurEswcDyz4Mrvf9ZSZWzq6vPTXtdHo+/oRMmiGNZqhcBkqIWfz5alzyq4HTAidz5uc6fD8mqj1hg87qywv6OwMUAxB84S8glcLs5ZzuTbpGl3sdftVH9zqabx6eAGXX9V389qdLp1k//u45ph+INOk11HFCCxmh/YmqQM9f"
+
+admin_emails: "[('SGRC', 'sgrc-iu-group@iu.edu'),('Jen Brand','jbrand@uwsp.edu'),('Chen Zhu','chenzhu@indiana.edu'),('Lei Gong','lgong@indiana.edu'),('Bidisha Faruque','bidabesh@iu.edu')]"
+portal_title: "Future Water Gateway"
+
+...