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 2020/09/02 07:18:21 UTC

[airavata] branch master updated: Adding new LROSE 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 5c444d2  Adding new LROSE gateway
5c444d2 is described below

commit 5c444d265e03d1e2b2ddcee0d82e9259bd53dac9
Author: eroma2014 <er...@gmail.com>
AuthorDate: Wed Sep 2 03:18:07 2020 -0400

    Adding new LROSE gateway
---
 .../scigap/production/host_vars/lrose/vars.yml     | 51 ++++++++++++++++++++++
 1 file changed, 51 insertions(+)

diff --git a/dev-tools/ansible/inventories/scigap/production/host_vars/lrose/vars.yml b/dev-tools/ansible/inventories/scigap/production/host_vars/lrose/vars.yml
new file mode 100644
index 0000000..672cae7
--- /dev/null
+++ b/dev-tools/ansible/inventories/scigap/production/host_vars/lrose/vars.yml
@@ -0,0 +1,51 @@
+#
+#
+# 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.
+#
+
+---
+#gateway_data_store_resource_id: "js-168-166.jetstream-cloud.org_e86fd426-201a-461a-a0b4-4368af59ca28"
+#gateway_data_store_hostname: "js-168-166.jetstream-cloud.org"
+
+vhost_servername: "gateway.lrose.net"
+vhost_ssl: True
+ssl_certificate_file: "/etc/letsencrypt/live/gateway.lrose.net/cert.pem"
+ssl_certificate_chain_file: "/etc/letsencrypt/live/gateway.lrose.net/fullchain.pem"
+ssl_certificate_key_file: "/etc/letsencrypt/live/gateway.lrose.net/privkey.pem"
+
+## Keycloak related variables
+tenant_domain: "lrose"
+oauth_client_key: "{{ vault_oauth_client_key }}"
+oauth_client_secret: "{{ vault_oauth_client_secret }}"
+
+auth_options:
+  password:
+    name: "LROSE Gateway"
+  external:
+#    - name: "Existing Institution Credentials"
+#      idp_alias: "cilogon"
+#      logo: "images/cilogon-logo-24x24-b.png"
+
+gateway_id: "lrose"
+experiment_data_dir: "{{ user_data_dir }}/lrose"
+#gateway_data_store_ssh_public_key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCn7BBwi2ckgu1fNwi8L+LmckMbeualcOit9aHtGM5EIWXgszLq0QbwOLzRWxWiuC6v3z7KQ2IqUJWgTo3UJzLtkX+hAwQZ2CRlcM8U+OPLKQ3WDixg9VlFHdq87+D1sn7hmMQB/Ihq8ul5iRg3zwQTuF294Iqpq7vFeqwYni2BTRP0jiEPCsYpykKe1kA1wl/zw0fkpOn8fUCn+7gO9pPJvJA08K+LtApcVaPfKR8yNRCGTBd7QGwXNpOuHFRjc30DlVN+x+H9pykpoXqVBLJ18Ncrbty3ZAS28FyweE2YiPgcIM3HcRFR/Ct83FHNwwez5ciekJEhPUPDOSMEojkV"
+
+admin_emails: "[('CIRC', 'circ-iu-group@iu.edu'),('Brenda Javornik', 'brenda@ucar.edu')]"
+portal_title: "LROSE Gateway"
+
+...