Changes to the vars.yml, added the key for data storage access
Project: http://git-wip-us.apache.org/repos/asf/airavata/repo Commit: http://git-wip-us.apache.org/repos/asf/airavata/commit/4b1c4372 Tree: http://git-wip-us.apache.org/repos/asf/airavata/tree/4b1c4372 Diff: http://git-wip-us.apache.org/repos/asf/airavata/diff/4b1c4372 Branch: refs/heads/develop Commit: 4b1c4372eee4dd4877a19d2d144b9e44b8f02133 Parents: 8f57d7c Author: Eroma Abeysinghe <[email protected]> Authored: Tue Aug 15 14:32:07 2017 -0400 Committer: Eroma Abeysinghe <[email protected]> Committed: Tue Aug 15 14:32:07 2017 -0400 ---------------------------------------------------------------------- .../production/pga_config/csbglsu/vars.yml | 61 ++++++++++++++++++++ dev-tools/ansible/pga-scigap-prod.yml | 4 +- 2 files changed, 64 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/airavata/blob/4b1c4372/dev-tools/ansible/inventories/scigap/production/pga_config/csbglsu/vars.yml ---------------------------------------------------------------------- diff --git a/dev-tools/ansible/inventories/scigap/production/pga_config/csbglsu/vars.yml b/dev-tools/ansible/inventories/scigap/production/pga_config/csbglsu/vars.yml new file mode 100644 index 0000000..b34e099 --- /dev/null +++ b/dev-tools/ansible/inventories/scigap/production/pga_config/csbglsu/vars.yml @@ -0,0 +1,61 @@ +# +# +# 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: "csbglsu.scigap.org" +vhost_ssl: false +# TODO: have Ansible manage these files as well +#ssl_certificate_file: "/etc/letsencrypt/live/csbglsu.scigap.org/cert.pem" +#ssl_certificate_chain_file: "/etc/letsencrypt/live/csbglsu.scigap.org/fullchain.pem" +#ssl_certificate_key_file: "/etc/letsencrypt/live/csbglsu.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: "LSU Computational Sys Biology" + oauth_grant_type: "password" +oauth_callback_url: "https://{{ vhost_servername }}/callback-url" + +gateway_id: "lsu-computational-sys-biology" +# relative to document root dir +experiment_data_dir: "{{ user_data_dir }}/{{ gateway_id }}" +gateway_data_store_resource_id: "gf4.ucs.indiana.edu_61552681-96f0-462a-a36c-a62a010bffc6" +gateway_data_store_ssh_public_key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDc/WQnD40zGuO+bIMsWc0ey8oxDzEj/dPFPg8LN7oNn/V7pi74mF2D57wgA8KsxcpsNydcReSXZhx6FynlK6iABDZP5QdREmhm87gkrMQUA/ZI7R2q7ekchbRtCnrGwU/pdHBh4penaiScs08o7OPfqJJp/TfgwH92dA9dThqGf9hD1Y0nmWECfvX56rXAggcgZl+Q6IFD0VFinFMkqZRWFFi4Zm7yiKCNWYXvXlIGjFOlDp0/ONGg5wjpCFivhI934Uk6Y69hSMhnFJc6g1JHD4PLaBILlUjwEikmH6KL3ii6Wt30pou+tIihBDBv0ODR4jDiOeBJGkcisWeh3Uzj" + +## 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: "gsu-gateway-theme" +#portal_theme_repo: "https://github.com/SciGaP/gsu-gateway-theme" +portal_title: "LSU Computational Sys Biology" +... http://git-wip-us.apache.org/repos/asf/airavata/blob/4b1c4372/dev-tools/ansible/pga-scigap-prod.yml ---------------------------------------------------------------------- diff --git a/dev-tools/ansible/pga-scigap-prod.yml b/dev-tools/ansible/pga-scigap-prod.yml index ea2fea1..45b80c3 100644 --- a/dev-tools/ansible/pga-scigap-prod.yml +++ b/dev-tools/ansible/pga-scigap-prod.yml @@ -41,5 +41,7 @@ - include: pga-single-vhost.yml vars_dir="{{ inventory_dir }}/pga_config/uab" - include: pga-single-vhost.yml vars_dir="{{ inventory_dir }}/pga_config/ultrascan" - include: pga-single-vhost.yml vars_dir="{{ inventory_dir }}/pga_config/utah" - +- include: pga-single-vhost.yml vars_dir="{{ inventory_dir }}/pga_config/wvsu" +- include: pga-single-vhost.yml vars_dir="{{ inventory_dir }}/pga_config/iugeosurvey" +- include: pga-single-vhost.yml vars_dir="{{ inventory_dir }}/pga_config/scbglsu" ...
