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 4e3bf1b adding new Colorado Mines gateway
4e3bf1b is described below
commit 4e3bf1b909a1e738699bc77ae013ed096c6cc21c
Author: Eroma Abeysinghe <[email protected]>
AuthorDate: Wed Feb 6 00:59:29 2019 -0500
adding new Colorado Mines gateway
---
.../scigap/production/pga_config/mines/vars.yml | 66 ++++++++++++++++++++++
1 file changed, 66 insertions(+)
diff --git
a/dev-tools/ansible/inventories/scigap/production/pga_config/mines/vars.yml
b/dev-tools/ansible/inventories/scigap/production/pga_config/mines/vars.yml
new file mode 100644
index 0000000..1992b3e
--- /dev/null
+++ b/dev-tools/ansible/inventories/scigap/production/pga_config/mines/vars.yml
@@ -0,0 +1,66 @@
+#
+#
+# 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.
+#
+
+---
+pga_repo: "https://github.com/apache/airavata-php-gateway.git"
+git_branch: "master"
+user: "pga"
+group: "pga"
+doc_root_dir: "/var/www/portals/{{ gateway_id }}"
+vhost_servername: "mines.scigap.org"
+#vhost_serveralias: "www.mines.scigap.org"
+vhost_ssl: true
+# TODO: have Ansible manage these files as well
+ssl_certificate_file: "/etc/letsencrypt/live/mines.scigap.org/cert.pem"
+ssl_certificate_chain_file:
"/etc/letsencrypt/live/mines.scigap.org/fullchain.pem"
+ssl_certificate_key_file: "/etc/letsencrypt/live/mines.scigap.org/privkey.pem"
+
+## Keycloak related variables
+tenant_domain: "{{ gateway_id }}"
+admin_username: "admin"
+admin_password: "{{ vault_admin_password }}"
+oauth_client_key: "{{ vault_oauth_client_key }}"
+oauth_client_secret: "{{ vault_oauth_client_secret }}"
+oidc_discovery_url: "https://iam.scigap.org/auth/realms/{{ tenant_domain
}}/.well-known/openid-configuration"
+
+auth_options:
+ - name: "Mines Quantum Simulation Gateway"
+ oauth_grant_type: "password"
+# - name: "CILogon"
+# oauth_grant_type: "authorization_code"
+# oauth_authorize_url_extra_params: "kc_idp_hint=cilogon"
+# logo: "/assets/cilogon-logo-24x24-b.png"
+oauth_callback_url: "http://{{ vhost_servername }}/callback-url"
+
+gateway_id: "mines"
+# relative to document root dir
+experiment_data_dir: "{{ user_data_dir }}/searching-sra"
+gateway_data_store_resource_id:
"gf4.ucs.indiana.edu_61552681-96f0-462a-a36c-a62a010bffc6"
+#gateway_data_store_ssh_public_key: "ssh-rsa
AAAAB3NzaC1yc2EAAAADAQABAAABAQCx981DispO1AnkOAwq1oJ3iaYUW6KT4jn4OPSrvIb1fJyjkNdBK8KQUTviBMgqLH9+FlIx/FYjN7sVLelGUmfOgguIWB4Ea2epAyvGFfrVeF83w5A4uILfrd5AJQuk0sZkNjnnGmmpx6z60IThaof2f14uD7JPcn5Kf0xnfmhJGIo2DYJRp8DYJ4Upd1ENu4p3CqylZGBFTx0ROe3hCNj28BxCY+kTgKTQJQHdwuHK9WxovQHdv2ZrN9GeSyIPUX8W1PpYKqM2i8xGaagPUamHON9TonHyuAdd84CagonwuaG54+jbFbB9uW/zhhnP5vNRxK8aSNIhszOucE2g8xzL"
+
+## Portal related variables
+super_admin_portal: "false"
+admin_emails: "['[email protected]',''[email protected]]"
+portal_email_username: "[email protected]"
+portal_email_password: "{{ vault_portal_email_password }}"
+#portal_theme: "searchingsra-gateway-theme"
+#portal_theme_repo: "https://github.com/SciGaP/gsu-gateway-theme"
+portal_title: "Mines Quantum Simulation Gateway"
+...