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:19:31 UTC

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

commit 50abaf5061dcc58e544ea27afc4867230e658845
Author: Eroma Abeysinghe <er...@gmail.com>
AuthorDate: Sun Nov 3 05:19:20 2019 -0500

    Added SSL certificates and .yml for Django Hubzero gateway
---
 .../scigap/production/host_vars/hubzero/vars.yml   | 49 ++++++++++++++++++++++
 1 file changed, 49 insertions(+)

diff --git a/dev-tools/ansible/inventories/scigap/production/host_vars/hubzero/vars.yml b/dev-tools/ansible/inventories/scigap/production/host_vars/hubzero/vars.yml
new file mode 100644
index 0000000..118e6c9
--- /dev/null
+++ b/dev-tools/ansible/inventories/scigap/production/host_vars/hubzero/vars.yml
@@ -0,0 +1,49 @@
+#
+#
+# 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.
+#
+
+---
+vhost_servername: "hubzero.scigap.org"
+vhost_ssl: True
+ssl_certificate_file: "/etc/letsencrypt/live/hubzero.scigap.org/cert.pem"
+ssl_certificate_chain_file: "/etc/letsencrypt/live/hubzero.scigap.org/fullchain.pem"
+ssl_certificate_key_file: "/etc/letsencrypt/live/hubzero.scigap.org/privkey.pem"
+
+## Keycloak related variables
+tenant_domain: "hubzero"
+oauth_client_key: "{{ vault_oauth_client_key }}"
+oauth_client_secret: "{{ vault_oauth_client_secret }}"
+
+auth_options:
+  password:
+    name: "HubZero Gateway"
+  external:
+    - name: "existing institution credentials"
+      idp_alias: "cilogon"
+      logo: "images/cilogon-logo-24x24-b.png"
+
+gateway_id: "hubzero"
+experiment_data_dir: "{{ user_data_dir }}/hubzero"
+gateway_data_store_ssh_public_key: "sh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDEs5h0NUb+8yDYtAXigQDQ/s2tQmIKTMJYhxiDRnxGSGylIMPVkKfbhytNry+fOd4aJ4q7HxkR4K808NqmytfH9o06De5ODkbp2InpzWw4O4QtKNwaqwNpIukU+S1seaodQaNfKeniT+LAq5pGQgUYdcIH4PjFSKY1z0HmfktY55lwGxdUwfe81aDMQ9Zu/310656/BftgdFIA51sOiL4nCxFj7H5cLeeSZujW5E9Yx7d3u6BCk5YMLrVBqoHThwtKK02BgugypeNn3rJHQvOGduKu0UpHV6IfLayeKGy3YYPzLkVb+ApJo4hOm6zsskWKH3PP3auCEFfyqYonA4sF"
+django_hidden_airavata_apps: "[]"
+
+admin_emails: "[('SGRC', 'sgrc-iu-group@iu.edu')]"
+portal_title: "HubZero Gateway"
+
+...