You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airavata.apache.org by ma...@apache.org on 2017/08/28 19:16:32 UTC

[2/2] airavata git commit: Add template inventory directory, updated README and cleaned up inventories

Add template inventory directory, updated README and cleaned up inventories


Project: http://git-wip-us.apache.org/repos/asf/airavata/repo
Commit: http://git-wip-us.apache.org/repos/asf/airavata/commit/ce376aac
Tree: http://git-wip-us.apache.org/repos/asf/airavata/tree/ce376aac
Diff: http://git-wip-us.apache.org/repos/asf/airavata/diff/ce376aac

Branch: refs/heads/master
Commit: ce376aac544c924c73c92acd42a01b845195ebf3
Parents: 8f358c4
Author: Marcus Christie <ma...@iu.edu>
Authored: Mon Aug 28 15:15:38 2017 -0400
Committer: Marcus Christie <ma...@iu.edu>
Committed: Mon Aug 28 15:15:38 2017 -0400

----------------------------------------------------------------------
 dev-tools/ansible/README.md                     |  14 +-
 .../inventories/airavata-iam/group_vars/all.yml |  16 --
 .../ansible/inventories/airavata-iam/hosts      |   8 -
 .../inventories/develop/group_vars/.gitignore   |   1 -
 .../inventories/develop/group_vars/all.yml      | 123 ---------
 .../develop/group_vars/dev-airavata.yml         |  22 --
 .../inventories/develop/group_vars/dev-pga.yml  |  23 --
 .../develop/group_vars/local.yml.template       |   4 -
 dev-tools/ansible/inventories/develop/hosts     |  35 ---
 .../template/group_vars/all/vars.yml            | 141 ++++++++++
 .../template/group_vars/pga/vars.yml            |  70 +++++
 dev-tools/ansible/inventories/template/hosts    |  24 ++
 .../testing-0.17-scigap/group_vars/all/vars.yml | 116 --------
 .../group_vars/all/vault.yml                    |   7 -
 .../testing-0.17-scigap/group_vars/pga/vars.yml |  56 ----
 .../group_vars/pga/vault.yml                    |  18 --
 .../inventories/testing-0.17-scigap/hosts       |  23 --
 .../group_vars/all/vars.yml                     | 111 --------
 .../group_vars/all/vault.yml                    |   7 -
 .../group_vars/pga/vars.yml                     |  51 ----
 .../group_vars/pga/vault.yml                    |  18 --
 .../inventories/testing-0.17-testdrive/hosts    |  23 --
 .../inventories/testing-0.17/files/airavata.jks |  76 ------
 .../testing-0.17/files/airavata_sym.jks         |  30 --
 .../testing-0.17/files/client_truststore.jks    | 271 -------------------
 .../testing-0.17/group_vars/all/vars.yml        | 115 --------
 .../testing-0.17/group_vars/all/vault.yml       |  13 -
 .../testing-0.17/group_vars/pga/vars.yml        |  55 ----
 .../testing-0.17/group_vars/pga/vault.yml       |  18 --
 .../ansible/inventories/testing-0.17/hosts      |  23 --
 dev-tools/ansible/site.yml                      |  77 +-----
 31 files changed, 245 insertions(+), 1344 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/airavata/blob/ce376aac/dev-tools/ansible/README.md
----------------------------------------------------------------------
diff --git a/dev-tools/ansible/README.md b/dev-tools/ansible/README.md
index 6a396b2..210ff08 100644
--- a/dev-tools/ansible/README.md
+++ b/dev-tools/ansible/README.md
@@ -44,14 +44,12 @@ Now you should be ready to run `ansible-playbook` and other ansible commands.
 
 ## Useful commands
 
-- `ansible-playbook -i inventories/develop site.yml`
-- `ansible-playbook -i inventories/develop site.yml -t "tags"`
-- `ansible-playbook -i inventories/develop site.yml --start-at-task="name of the ansible task"`
-
-To deploy pga run following. see site.yml (playbook) file for other available tags.
-
-- `ansible-playbook -i inventories/develop site.yml -t "pga"`
+- Deploy database: `ansible-playbook -i inventories/path/to/inventory/dir database.yml`
+- Deploy Airavata middleware: `ansible-playbook -i inventories/path/to/inventory/dir airavata.yml`
+- Deploy Keycloak IAM server: `ansible-playbook -i inventories/path/to/inventory/dir keycloak.yml`
+- Deploy PGA: `ansible-playbook -i inventories/path/to/inventory/dir pga.yml`
+- Deploy everything: `ansible-playbook -i inventories/path/to/inventory/dir site.yml`
 
 ## Configurations
 
-- Set correct private key file to `ansible_ssh_private_key_file` property in group_vars/all
+- copy the `inventories/template` directory and modify CHANGEME values

http://git-wip-us.apache.org/repos/asf/airavata/blob/ce376aac/dev-tools/ansible/inventories/airavata-iam/group_vars/all.yml
----------------------------------------------------------------------
diff --git a/dev-tools/ansible/inventories/airavata-iam/group_vars/all.yml b/dev-tools/ansible/inventories/airavata-iam/group_vars/all.yml
deleted file mode 100644
index 2b5636d..0000000
--- a/dev-tools/ansible/inventories/airavata-iam/group_vars/all.yml
+++ /dev/null
@@ -1,16 +0,0 @@
-ansible_connection: ssh
-# ansible_user: centos
-ansible_user: iam
-
-user: iam
-group: wheel
-user_home: "/home/{{ user }}"
-
-# Keycloak Identity server variables
-keycloak_db_host: "localhost"
-keycloak_db_port: "3306"
-keycloak_db_schema_name: "keycloak"
-keycloak_db_url: "jdbc:mysql://{{keycloak_db_host}}:{{keycloak_db_port}}/{{keycloak_db_schema_name}}"
-keycloak_db_username: "username"
-keycloak_db_password: "password"
-keycloak_db_pool_size: "20"
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/airavata/blob/ce376aac/dev-tools/ansible/inventories/airavata-iam/hosts
----------------------------------------------------------------------
diff --git a/dev-tools/ansible/inventories/airavata-iam/hosts b/dev-tools/ansible/inventories/airavata-iam/hosts
deleted file mode 100644
index b4289e0..0000000
--- a/dev-tools/ansible/inventories/airavata-iam/hosts
+++ /dev/null
@@ -1,8 +0,0 @@
-[dev-keycloak]
-149.165.172.79 ansible_user=centos
-
-[dev-haproxy]
-149.165.171.165 ansible_user=centos
-
-[prod-keycloak]
- prod.IP.address.here ansible_user=iam
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/airavata/blob/ce376aac/dev-tools/ansible/inventories/develop/group_vars/.gitignore
----------------------------------------------------------------------
diff --git a/dev-tools/ansible/inventories/develop/group_vars/.gitignore b/dev-tools/ansible/inventories/develop/group_vars/.gitignore
deleted file mode 100644
index 20ebc05..0000000
--- a/dev-tools/ansible/inventories/develop/group_vars/.gitignore
+++ /dev/null
@@ -1 +0,0 @@
-local.yml

http://git-wip-us.apache.org/repos/asf/airavata/blob/ce376aac/dev-tools/ansible/inventories/develop/group_vars/all.yml
----------------------------------------------------------------------
diff --git a/dev-tools/ansible/inventories/develop/group_vars/all.yml b/dev-tools/ansible/inventories/develop/group_vars/all.yml
deleted file mode 100644
index 7426304..0000000
--- a/dev-tools/ansible/inventories/develop/group_vars/all.yml
+++ /dev/null
@@ -1,123 +0,0 @@
-#
-#
-# 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.
-#
-
----
-ansible_connection: ssh
-# ansible_user: centos
-ansible_user: root
-#ansible_ssh_private_key_file: /Users/supun/Desktop/shameera-key.pem
-# ansible_ssh_private_key_file: /Users/syodage/Projects/airavata-ansible/shameera-aws.pem.txt
-
-user: centos
-group: centos
-user_home: "/home/{{ user }}"
-
-# deployment related variables
-deployment_dir: "{{ user_home }}/dev-deployment"
-airavata_source_dir: "{{ user_home }}/source"
-airavata_repo: "https://git-wip-us.apache.org/repos/asf/airavata.git"
-airavata_dist: "apache-airavata-server-0.17-SNAPSHOT"
-airavata_dist_name: "{{ airavata_dist }}-bin.tar.gz"
-old_airavata_dist: "apache-airavata-server-0.17-SNAPSHOT"
-git_branch: develop
-
-# Database related variables
-db_server: "{{ groups['database'][0] }}"
-db_server_port: "3306"
-db_user: "airavata"
-db_password: "airavata"
-app_catalog: "app_catalog"
-exp_catalog: "exp_catalog"
-replica_catalog: "replica_catalog"
-sharing_catalog: "sharing_catalog"
-workflow_catalog: "wf_catalog"
-credential_store: "credential_store"
-
-mysql_connector_jar: "mysql-connector-java-5.1.37-bin.jar"
-
-# Rabbitmq related vareables
-rabbitmq_server: "{{ groups['rabbitmq'][0] }}"
-rabbitmq_vhost: "develop"
-rabbitmq_user: "airavata"
-rabbitmq_password: "airavata"
-rabbitmq_port: "5672"
-rabbitmq_broker_url: "amqp://{{ rabbitmq_user }}:{{ rabbitmq_password }}@{{ rabbitmq_server}}:{{ rabbitmq_port }}/{{ rabbitmq_vhost }}"
-
-# Zoookeeper related variables
-zookeeper_client_port: 2181
-zookeeper_url: "{{ groups['zookeeper'][0] }}:{{ zookeeper_client_port }}"
-# API Server related variables
-api_server_name: "apiserver-node0"
-api_server_host: "{{ansible_fqdn}}"
-api_server_port: "8930"
-api_secured: "false"
-tls_enable: "false"
-api_server_tls_port: "9930"
-enable_sharing: "true"
-
-# Orchestrator  related variables
-orchestrator_name: "orchestrator-node0"
-orchestrator_host: "{{ansible_fqdn}}"
-orchestrator_port: "8940"
-api_orch_dir: "{{ deployment_dir }}/api-orchestrator"
-
-# registry related variables
-registry_name: regserver-node0
-registry_host: "{{groups['registry'][0]}}"
-registry_port: 8970
-registry_dir: "{{ deployment_dir }}/registry"
-default_gateway: "php_reference_gateway"
-
-# Credential and keystore related variables
-#authorization_server: "https://{{ groups['wso2is'][0]}}:9443/services/"
-authorization_server: "https://idp.scigap.org:9443/services/"
-keystore: "airavata.jks"
-keystore_passwd: "airavata"
-#client_truststore: "client_truststore.jks"
-client_truststore: "airavata.jks"
-client_truststore_passwd: "airavata"
-cred_keystore: "airavata_sym.jks"
-cred_keystore_passwd: "airavata"
-cred_keystore_alias: "airavata"
-cred_store_server_host: "{{ ansible_fqdn }}"
-cred_store_port: "8960"
-keystores_location: "{{ deployment_dir }}/keystores"
-
-# Gfac related variables
-gfac_name: "gfac-node0"
-gfac_host: "{{ ansible_fqdn }}"
-gfac_port: "8950"
-gfac_dir: "{{ deployment_dir }}/gfac-instance"
-
-# Monitoring variables
-monitor_email_address: "test.airavata@gmail.com"
-monitor_email_password: "airavata"
-
-# PGA variables
-pga_repo: "https://github.com/apache/airavata-php-gateway.git"
-
-# Keycloak Identity server variables
-keycloak_db_host: "localhost"
-keycloak_db_port: "3306"
-keycloak_db_schema_name: "keycloak"
-keycloak_db_url: "jdbc:mysql://{{keycloak_db_host}}:{{keycloak_db_port}}/{{keycloak_db_schema_name}}"
-keycloak_db_username: "keycloak"
-keycloak_db_password: "AiravataKeycloakDB@123"
-keycloak_db_pool_size: "20"

http://git-wip-us.apache.org/repos/asf/airavata/blob/ce376aac/dev-tools/ansible/inventories/develop/group_vars/dev-airavata.yml
----------------------------------------------------------------------
diff --git a/dev-tools/ansible/inventories/develop/group_vars/dev-airavata.yml b/dev-tools/ansible/inventories/develop/group_vars/dev-airavata.yml
deleted file mode 100644
index 07b6d1a..0000000
--- a/dev-tools/ansible/inventories/develop/group_vars/dev-airavata.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-#
-#
-# 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_source_dir: "/home/airavata/dev-airavata-source"
-deployment_dir: "/home/airavata/dev-deployment"

http://git-wip-us.apache.org/repos/asf/airavata/blob/ce376aac/dev-tools/ansible/inventories/develop/group_vars/dev-pga.yml
----------------------------------------------------------------------
diff --git a/dev-tools/ansible/inventories/develop/group_vars/dev-pga.yml b/dev-tools/ansible/inventories/develop/group_vars/dev-pga.yml
deleted file mode 100644
index e16d19a..0000000
--- a/dev-tools/ansible/inventories/develop/group_vars/dev-pga.yml
+++ /dev/null
@@ -1,23 +0,0 @@
-#
-#
-# 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.
-#
-
-portals_dir: /home/pga/portals
-git_branch: develop
-airavata_php_gateway_repo: https://git-wip-us.apache.org/repos/asf/airavata-php-gateway.git

http://git-wip-us.apache.org/repos/asf/airavata/blob/ce376aac/dev-tools/ansible/inventories/develop/group_vars/local.yml.template
----------------------------------------------------------------------
diff --git a/dev-tools/ansible/inventories/develop/group_vars/local.yml.template b/dev-tools/ansible/inventories/develop/group_vars/local.yml.template
deleted file mode 100644
index d7ff4e9..0000000
--- a/dev-tools/ansible/inventories/develop/group_vars/local.yml.template
+++ /dev/null
@@ -1,4 +0,0 @@
----
-
-airavata_source_dir: "/Users/machrist/Documents/Airavata/airavata"
-deployment_dir: "/Users/machrist/Documents/Airavata/LocalAiravata"

http://git-wip-us.apache.org/repos/asf/airavata/blob/ce376aac/dev-tools/ansible/inventories/develop/hosts
----------------------------------------------------------------------
diff --git a/dev-tools/ansible/inventories/develop/hosts b/dev-tools/ansible/inventories/develop/hosts
deleted file mode 100644
index 803250e..0000000
--- a/dev-tools/ansible/inventories/develop/hosts
+++ /dev/null
@@ -1,35 +0,0 @@
----
-# inventory file : production
-
-[zookeeper]
-149.165.171.13
-
-[rabbitmq]
-149.165.171.12
-
-[database]
-149.165.171.1
-
-#[wso2is]
-#52.87.209.219
-
-[registry]
-149.165.171.0
-
-[api-orch]
-149.165.170.105
-
-[gfac]
-149.165.171.0
-
-[pga]
-149.165.170.103
-
-[local]
-localhost          ansible_connection=local
-
-[dev-airavata]
-gw56.iu.xsede.org ansible_user=airavata
-
-[dev-pga]
-gw54.iu.xsede.org  ansible_user=pga
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/airavata/blob/ce376aac/dev-tools/ansible/inventories/template/group_vars/all/vars.yml
----------------------------------------------------------------------
diff --git a/dev-tools/ansible/inventories/template/group_vars/all/vars.yml b/dev-tools/ansible/inventories/template/group_vars/all/vars.yml
new file mode 100644
index 0000000..4ad610b
--- /dev/null
+++ b/dev-tools/ansible/inventories/template/group_vars/all/vars.yml
@@ -0,0 +1,141 @@
+#
+#
+# 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.
+#
+
+---
+# NOTE: copied from scigap/production/group_vars/all/vars.yml on 8-28-2017. Variables are added and removed all
+# the time so make sure you have the latest by comparing with scigap/production/group_vars/all/vars.yml
+
+# Update all entries below that have CHANGEME as the value
+
+ansible_connection: ssh
+ansible_user: root
+
+user: airavata
+group: airavata
+user_home: "/home/{{ user }}"
+
+# deployment related variables
+deployment_dir: "{{ user_home }}/master-deployment"
+airavata_source_dir: "{{ user_home }}/master-source"
+airavata_repo: "https://git-wip-us.apache.org/repos/asf/airavata.git"
+airavata_dist: "apache-airavata-server-0.17-SNAPSHOT"
+airavata_dist_name: "{{ airavata_dist }}-bin.tar.gz"
+old_airavata_dist: "apache-airavata-server-0.17-SNAPSHOT"
+git_branch: master
+
+# Database related variables
+db_server: "{{ groups['database'][0] }}"
+db_server_port: "3306"
+db_user: "airavata"
+db_password: "CHANGEME"
+mysql_root_password: "CHANGEME"
+app_catalog: "app_catalog"
+exp_catalog: "experiment_catalog"
+replica_catalog: "replica_catalog"
+sharing_catalog: "sharing_catalog"
+workflow_catalog: "workflow_catalog"
+credential_store: "credential_store"
+profile_service: "profile_service"
+
+# Rabbitmq related vareables
+rabbitmq_server: "{{ groups['rabbitmq'][0] }}"
+rabbitmq_vhost: "master"
+rabbitmq_user: "airavata"
+rabbitmq_password: "CHANGEME"
+rabbitmq_port: "5672"
+rabbitmq_broker_url: "amqp://{{ rabbitmq_user }}:{{ rabbitmq_password }}@{{ rabbitmq_server}}:{{ rabbitmq_port }}/{{ rabbitmq_vhost }}"
+
+# Zoookeeper related variables
+zookeeper_client_port: 2181
+zookeeper_url: "{{ groups['zookeeper'][0] }}:{{ zookeeper_client_port }}"
+
+# API Server related variables
+api_server_name: "apiserver-node0"
+api_server_host: "{{ groups['api-orch'][0] }}"
+api_server_port: "8930"
+api_secured: "false"
+tls_enable: "false"
+api_server_tls_port: "9930"
+enable_sharing: "true"
+iam_server_url: "CHANGEME"
+iam_server_super_admin_username: "CHANGEME"
+iam_server_super_admin_password: "CHANGEME"
+
+# Orchestrator  related variables
+orchestrator_name: "orchestrator-node0"
+orchestrator_host: "{{ groups['api-orch'][0] }}"
+orchestrator_port: "8940"
+api_orch_dir: "{{ deployment_dir }}/api-orchestrator"
+api_orch_log_dir: "{{ api_orch_dir }}/logs"
+
+# registry related variables
+registry_name: regserver-node0
+registry_host: "{{ groups['api-orch'][0] }}"
+registry_port: 8970
+#registry_dir: "{{ deployment_dir }}/registry"
+default_gateway: "default"
+
+# Credential and keystore related variables
+keystore_passwd: "airavata"
+client_truststore_passwd: "airavata"
+cred_keystore_passwd: "airavata"
+cred_keystore_alias: "airavata"
+cred_store_server_host: "{{ groups['api-orch'][0] }}"
+cred_store_port: "8960"
+keystores_location: "{{ deployment_dir }}/keystores"
+
+# Gfac related variables
+gfac_name: "gfac-node0"
+gfac_host: "{{ groups['gfac'][0] }}"
+gfac_port: "8950"
+gfac_dir: "{{ deployment_dir }}/gfac-instance"
+gfac_log_dir: "{{ gfac_dir }}/logs"
+
+# Monitoring variables
+monitor_email_address: "CHANGEME"
+monitor_email_password: "CHANGEME"
+
+# PGA variables
+pga_repo: "https://github.com/apache/airavata-php-gateway.git"
+user_data_dir: "/var/www/portals/gateway-user-data"
+## Airavata Client related variables
+airavata_server: "tls://{{ groups['api-orch'][0] }}"
+airavata_port: "8930"
+airavata_profile_service_server: "{{ groups['api-orch'][0] }}"
+auth_verify_peer: "true"
+oauth_service_url: "{{ iam_server_url }}"
+
+# Sharing Registry related variables
+sharing_registry_host: "{{ groups['api-orch'][0] }}"
+sharing_registry_port: 7878
+
+# Profile Service related variables
+profile_service_host: "{{ groups['api-orch'][0] }}"
+profile_service_port: 8962
+
+# Keycloak
+keycloak_ssl_keystore_file: "CHANGEME"
+keycloak_ssl_keystore_password: "CHANGEME"
+keycloak_db_host: "localhost"
+keycloak_db_username: "keycloak"
+keycloak_db_password: "CHANGEME"
+keycloak_master_account_username: "CHANGEME"
+keycloak_master_account_password: "CHANGEME"
+

http://git-wip-us.apache.org/repos/asf/airavata/blob/ce376aac/dev-tools/ansible/inventories/template/group_vars/pga/vars.yml
----------------------------------------------------------------------
diff --git a/dev-tools/ansible/inventories/template/group_vars/pga/vars.yml b/dev-tools/ansible/inventories/template/group_vars/pga/vars.yml
new file mode 100644
index 0000000..c2247b3
--- /dev/null
+++ b/dev-tools/ansible/inventories/template/group_vars/pga/vars.yml
@@ -0,0 +1,70 @@
+#
+#
+# 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.
+#
+
+---
+# NOTE: copied from scigap/production/pga_config/seagrid/vars.yml on 8-28-2017. Variables are added and removed all
+# the time so make sure you have the latest by comparing with scigap/production/pga_config/seagrid/vars.yml
+
+# Update all entries below that have CHANGEME as the value
+
+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: "CHANGEME"
+#vhost_serveralias: "CHANGEME"
+# Enable and change the following to enable SSL
+#vhost_ssl: True
+#ssl_certificate_file: "/etc/pki/tls/certs/seagrid_org_cert.cer"
+#ssl_certificate_chain_file: "/etc/pki/tls/certs/seagrid_org_interm.cer"
+#ssl_certificate_key_file: "/etc/pki/tls/private/portal.seagrid.key"
+
+
+## Keycloak related variables
+tenant_domain: "{{ gateway_id }}"
+admin_username: "admin"
+admin_password: "CHANGME"
+oauth_client_key: "CHANGME"
+oauth_client_secret: "CHANGME"
+oidc_discovery_url: "CHANGME"
+
+auth_options:
+  - name: "CHANGME"
+    oauth_grant_type: "password"
+oauth_callback_url: "http://{{ vhost_servername }}/callback-url"
+# or if SSL then:
+#oauth_callback_url: "https://{{ vhost_servername }}/callback-url"
+
+gateway_id: "CHANGEME"
+# relative to document root dir
+experiment_data_dir: "{{ user_data_dir }}/CHANGEME"
+gateway_data_store_resource_id: "CHANGEME"
+gateway_data_store_ssh_public_key: "CHANGEME"
+
+## Portal related variables
+super_admin_portal: "false"
+admin_emails: "CHANGEME"
+#example: admin_emails: "['emailaddress1@example.com', 'emailaddress2@example.com']"
+portal_email_username: "CHANGEME"
+portal_email_password: "CHANGEME"
+portal_theme: "base"
+portal_title: "CHANGEME"
+...

http://git-wip-us.apache.org/repos/asf/airavata/blob/ce376aac/dev-tools/ansible/inventories/template/hosts
----------------------------------------------------------------------
diff --git a/dev-tools/ansible/inventories/template/hosts b/dev-tools/ansible/inventories/template/hosts
new file mode 100644
index 0000000..599aaf9
--- /dev/null
+++ b/dev-tools/ansible/inventories/template/hosts
@@ -0,0 +1,24 @@
+---
+# inventory file
+# NOTE: update the CHANGEMEs to the actual ip address or hostname.
+
+[zookeeper]
+CHANGEME
+
+[rabbitmq]
+CHANGEME
+
+[database]
+CHANGEME
+
+[api-orch]
+CHANGEME
+
+[gfac]
+CHANGEME
+
+[pga]
+CHANGEME
+
+[keycloak]
+CHANGEME

http://git-wip-us.apache.org/repos/asf/airavata/blob/ce376aac/dev-tools/ansible/inventories/testing-0.17-scigap/group_vars/all/vars.yml
----------------------------------------------------------------------
diff --git a/dev-tools/ansible/inventories/testing-0.17-scigap/group_vars/all/vars.yml b/dev-tools/ansible/inventories/testing-0.17-scigap/group_vars/all/vars.yml
deleted file mode 100644
index 03ee952..0000000
--- a/dev-tools/ansible/inventories/testing-0.17-scigap/group_vars/all/vars.yml
+++ /dev/null
@@ -1,116 +0,0 @@
-#
-#
-# 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.
-#
-
----
-
-user: centos
-group: centos
-user_home: "/home/{{ user }}"
-
-# deployment related variables
-deployment_dir: "{{ user_home }}/deployment"
-airavata_source_dir: "{{ user_home }}/source"
-airavata_repo: "https://git-wip-us.apache.org/repos/asf/airavata.git"
-airavata_dist: "apache-airavata-server-0.17-SNAPSHOT"
-airavata_dist_name: "{{ airavata_dist }}-bin.tar.gz"
-old_airavata_dist: "apache-airavata-server-0.17-SNAPSHOT"
-git_branch: develop
-
-# Database related variables
-db_server: "{{ groups['database'][0] }}"
-db_server_port: "3306"
-db_user: "airavata"
-db_password: "{{ vault_db_password }}"
-app_catalog: "app_catalog"
-exp_catalog: "exp_catalog"
-replica_catalog: "replica_catalog"
-sharing_catalog: "sharing_catalog"
-workflow_catalog: "wf_catalog"
-credential_store: "credential_store"
-
-mysql_connector_jar: "mysql-connector-java-5.1.37-bin.jar"
-
-# Rabbitmq related vareables
-rabbitmq_server: "{{ ansible_fqdn }}"
-rabbitmq_vhost: "develop"
-rabbitmq_user: "airavata"
-rabbitmq_password: "airavata"
-rabbitmq_port: "5672"
-rabbitmq_broker_url: "amqp://{{ rabbitmq_user }}:{{ rabbitmq_password }}@{{ rabbitmq_server}}:{{ rabbitmq_port }}/{{ rabbitmq_vhost }}"
-
-# Zoookeeper related variables
-zookeeper_client_port: 2181
-zookeeper_url: "{{ groups['zookeeper'][0] }}:{{ zookeeper_client_port }}"
-# API Server related variables
-api_server_name: "apiserver-node0"
-api_server_host: "{{ansible_fqdn}}"
-api_server_port: "8930"
-api_secured: "false"
-tls_enable: "false"
-api_server_tls_port: "9930"
-enable_sharing: "true"
-iam_server_url: "https://iam.scigap.org/auth"
-
-# Orchestrator  related variables
-orchestrator_name: "orchestrator-node0"
-orchestrator_host: "{{ansible_fqdn}}"
-orchestrator_port: "8940"
-api_orch_dir: "{{ deployment_dir }}/api-orchestrator"
-api_orch_server_names: "api-orch"
-
-# registry related variables
-registry_name: regserver-node0
-registry_host: "{{ ansible_fqdn }}"
-registry_port: 8970
-#registry_dir: "{{ deployment_dir }}/registry"
-default_gateway: "php_reference_gateway"
-
-# Credential and keystore related variables
-#authorization_server: "https://{{ groups['wso2is'][0]}}:9443/services/"
-authorization_server: "https://idp.scigap.org:9443/services/"
-keystore: "airavata.jks"
-keystore_passwd: "airavata"
-#client_truststore: "client_truststore.jks"
-client_truststore: "airavata.jks"
-client_truststore_passwd: "airavata"
-cred_keystore: "airavata_sym.jks"
-cred_keystore_passwd: "airavata"
-cred_keystore_alias: "airavata"
-cred_store_server_host: "{{ ansible_fqdn }}"
-cred_store_port: "8960"
-keystores_location: "{{ deployment_dir }}/keystores"
-
-# Gfac related variables
-gfac_name: "gfac-node0"
-gfac_host: "{{ ansible_fqdn }}"
-gfac_port: "8950"
-gfac_dir: "{{ deployment_dir }}/gfac-instance"
-
-# Monitoring variables
-monitor_email_address: "test.airavata@gmail.com"
-monitor_email_password: "airavata"
-
-# Sharing Registry related variables
-sharing_registry_host: "{{ ansible_fqdn }}"
-sharing_registry_port: 7878
-
-# Profile Service related variables
-profile_service_host: "{{ ansible_fqdn }}"
-profile_service_port: 8962

http://git-wip-us.apache.org/repos/asf/airavata/blob/ce376aac/dev-tools/ansible/inventories/testing-0.17-scigap/group_vars/all/vault.yml
----------------------------------------------------------------------
diff --git a/dev-tools/ansible/inventories/testing-0.17-scigap/group_vars/all/vault.yml b/dev-tools/ansible/inventories/testing-0.17-scigap/group_vars/all/vault.yml
deleted file mode 100644
index a1d18b5..0000000
--- a/dev-tools/ansible/inventories/testing-0.17-scigap/group_vars/all/vault.yml
+++ /dev/null
@@ -1,7 +0,0 @@
-$ANSIBLE_VAULT;1.1;AES256
-36666132643537623138323138316561383434336231643237303337623462313834323462656434
-6362663032643235363133613463616663643731316438340a636336316333386434303635303961
-64626364363465366538666538643037366431326533366562393765313631363434323230666665
-3230633265386131360a316232386666613664383561663231346466353065393435376537653631
-36663363353964336464653964393931346530343139313465303730316562613937636566623038
-3637393433373136343934313266653665346665323765373261

http://git-wip-us.apache.org/repos/asf/airavata/blob/ce376aac/dev-tools/ansible/inventories/testing-0.17-scigap/group_vars/pga/vars.yml
----------------------------------------------------------------------
diff --git a/dev-tools/ansible/inventories/testing-0.17-scigap/group_vars/pga/vars.yml b/dev-tools/ansible/inventories/testing-0.17-scigap/group_vars/pga/vars.yml
deleted file mode 100644
index 56a778d..0000000
--- a/dev-tools/ansible/inventories/testing-0.17-scigap/group_vars/pga/vars.yml
+++ /dev/null
@@ -1,56 +0,0 @@
-#
-#
-# 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: "keycloak-integration"
-user: "pga"
-group: "pga"
-doc_root_dir: "/var/www/html/php-gateway"
-user_data_dir: "/var/www/user_data"
-vhost_servername: "{{ groups['pga'][0] }}"
-vhost_ssl: False
-
-## Keycloak related variables
-tenant_domain: "scigap"
-admin_username: "scigap_admin"
-admin_password: "{{ vault_admin_password }}"
-oauth_client_key: "{{ vault_oauth_client_key }}"
-oauth_client_secret: "{{ vault_oauth_client_secret }}"
-oauth_grant_type: "password"
-oidc_discovery_url: "https://iam.scigap.org/auth/realms/scigap/.well-known/openid-configuration"
-
-## Airavata Client related variables
-#airavata_server: "tls://gw77.iu.xsede.org"
-airavata_server: "{{ groups['api-orch'][0] }}"
-airavata_port: "{{ api_server_port }}"
-airavata_profile_service_port: "{{ profile_service_port }}"
-gateway_id: "scigap"
-# relative to document root dir
-experiment_data_dir: "{{ user_data_dir }}"
-# TODO: fix this
-gateway_data_store_resource_id: "js-170-103.jetstream-cloud.org_6497a464-3121-4b64-a7cb-d195b0a26c19"
-
-## Portal related variables
-super_admin_portal: "true"
-admin_emails: "['sgg@iu.edu']"
-portal_email_username: "pga.airavata@gmail.com"
-portal_email_password: "{{ vault_portal_email_password }}"
-...

http://git-wip-us.apache.org/repos/asf/airavata/blob/ce376aac/dev-tools/ansible/inventories/testing-0.17-scigap/group_vars/pga/vault.yml
----------------------------------------------------------------------
diff --git a/dev-tools/ansible/inventories/testing-0.17-scigap/group_vars/pga/vault.yml b/dev-tools/ansible/inventories/testing-0.17-scigap/group_vars/pga/vault.yml
deleted file mode 100644
index 32c86bc..0000000
--- a/dev-tools/ansible/inventories/testing-0.17-scigap/group_vars/pga/vault.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-$ANSIBLE_VAULT;1.1;AES256
-61336130613839373263663031326663303138353534373965386361396137313736323938376433
-6131613033343030313166376431666634356662323463360a333034626638616633663564303338
-62323730343237346537363637636165383736363033373166613363626238313333613764376239
-3561613032616239300a336639623963633036346131333737643337643332366664353830303330
-30386230653631396336383362306531306366336533376338393233343465633539663634656637
-37326636643737643163643766376337623435356536326366363032623939323135626663633165
-63636438323961376364363939626530396266373163663435323362646364316633303136653764
-66663633616432373861343233666661613664613232383539313931613934653836636566343262
-65316330653261393861653833396563303839323761636333613737663433323362356531383266
-31656633333234376233323930313539353739363839333231343733323732353363383264366436
-30653864333033323536396362616531336330326565653135303263346464656333346431323139
-37666666616566616634313632363936666430346237363062303132666238663833633031313531
-35643634613937363562363137363034336539383537363239356139343037316433623261343636
-62333936366338616136396430643239336364386133613664393438396435323163653137656638
-36303133313830366564623861653766343939616637616264623666633166653764313731303365
-64353132393065396464653933623762623366633831373431323937393133353536646661356461
-3539

http://git-wip-us.apache.org/repos/asf/airavata/blob/ce376aac/dev-tools/ansible/inventories/testing-0.17-scigap/hosts
----------------------------------------------------------------------
diff --git a/dev-tools/ansible/inventories/testing-0.17-scigap/hosts b/dev-tools/ansible/inventories/testing-0.17-scigap/hosts
deleted file mode 100644
index b728b7b..0000000
--- a/dev-tools/ansible/inventories/testing-0.17-scigap/hosts
+++ /dev/null
@@ -1,23 +0,0 @@
-[zookeeper]
-149.165.168.5 ansible_user=centos
-
-[rabbitmq]
-149.165.168.5 ansible_user=centos
-
-[database]
-149.165.172.163 ansible_user=centos
-
-[api-orch]
-149.165.168.5 ansible_user=centos
-
-[gfac]
-149.165.168.5 ansible_user=centos
-
-# NOTE: the registry is NOT deployed separately from the API server, but some
-# of the playbooks assume that there is a 'registry' group, so this entry
-# needs to be here as a workaround
-[registry]
-149.165.168.5 ansible_user=centos
-
-[pga]
-149.165.156.52 ansible_user=centos

http://git-wip-us.apache.org/repos/asf/airavata/blob/ce376aac/dev-tools/ansible/inventories/testing-0.17-testdrive/group_vars/all/vars.yml
----------------------------------------------------------------------
diff --git a/dev-tools/ansible/inventories/testing-0.17-testdrive/group_vars/all/vars.yml b/dev-tools/ansible/inventories/testing-0.17-testdrive/group_vars/all/vars.yml
deleted file mode 100644
index 18fb094..0000000
--- a/dev-tools/ansible/inventories/testing-0.17-testdrive/group_vars/all/vars.yml
+++ /dev/null
@@ -1,111 +0,0 @@
-#
-#
-# 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.
-#
-
----
-
-user: centos
-group: centos
-user_home: "/home/{{ user }}"
-
-# deployment related variables
-deployment_dir: "{{ user_home }}/deployment"
-airavata_source_dir: "{{ user_home }}/source"
-airavata_repo: "https://git-wip-us.apache.org/repos/asf/airavata.git"
-airavata_dist: "apache-airavata-server-0.17-SNAPSHOT"
-airavata_dist_name: "{{ airavata_dist }}-bin.tar.gz"
-old_airavata_dist: "apache-airavata-server-0.17-SNAPSHOT"
-git_branch: develop
-
-# Database related variables
-db_server: "{{ groups['database'][0] }}"
-db_server_port: "3306"
-db_user: "airavata"
-db_password: "{{ vault_db_password }}"
-app_catalog: "app_catalog"
-exp_catalog: "exp_catalog"
-replica_catalog: "replica_catalog"
-sharing_catalog: "sharing_catalog"
-workflow_catalog: "wf_catalog"
-credential_store: "credential_store"
-
-mysql_connector_jar: "mysql-connector-java-5.1.37-bin.jar"
-
-# Rabbitmq related vareables
-rabbitmq_server: "{{ ansible_fqdn }}"
-rabbitmq_vhost: "develop"
-rabbitmq_user: "airavata"
-rabbitmq_password: "airavata"
-rabbitmq_port: "5672"
-rabbitmq_broker_url: "amqp://{{ rabbitmq_user }}:{{ rabbitmq_password }}@{{ rabbitmq_server}}:{{ rabbitmq_port }}/{{ rabbitmq_vhost }}"
-
-# Zoookeeper related variables
-zookeeper_client_port: 2181
-zookeeper_url: "{{ groups['zookeeper'][0] }}:{{ zookeeper_client_port }}"
-# API Server related variables
-api_server_name: "apiserver-node0"
-api_server_host: "{{ansible_fqdn}}"
-api_server_port: "8930"
-api_secured: "false"
-tls_enable: "false"
-api_server_tls_port: "9930"
-enable_sharing: "true"
-
-# Orchestrator  related variables
-orchestrator_name: "orchestrator-node0"
-orchestrator_host: "{{ansible_fqdn}}"
-orchestrator_port: "8940"
-api_orch_dir: "{{ deployment_dir }}/api-orchestrator"
-api_orch_server_names: "api-orch"
-
-# registry related variables
-registry_name: regserver-node0
-registry_host: "{{ ansible_fqdn }}"
-registry_port: 8970
-#registry_dir: "{{ deployment_dir }}/registry"
-default_gateway: "php_reference_gateway"
-
-# Credential and keystore related variables
-#authorization_server: "https://{{ groups['wso2is'][0]}}:9443/services/"
-authorization_server: "https://idp.scigap.org:9443/services/"
-keystore: "airavata.jks"
-keystore_passwd: "airavata"
-#client_truststore: "client_truststore.jks"
-client_truststore: "airavata.jks"
-client_truststore_passwd: "airavata"
-cred_keystore: "airavata_sym.jks"
-cred_keystore_passwd: "airavata"
-cred_keystore_alias: "airavata"
-cred_store_server_host: "{{ ansible_fqdn }}"
-cred_store_port: "8960"
-keystores_location: "{{ deployment_dir }}/keystores"
-
-# Gfac related variables
-gfac_name: "gfac-node0"
-gfac_host: "{{ ansible_fqdn }}"
-gfac_port: "8950"
-gfac_dir: "{{ deployment_dir }}/gfac-instance"
-
-# Monitoring variables
-monitor_email_address: "test.airavata@gmail.com"
-monitor_email_password: "airavata"
-
-# Sharing Registry related variables
-sharing_registry_host: "{{ ansible_fqdn }}"
-sharing_registry_port: 7878

http://git-wip-us.apache.org/repos/asf/airavata/blob/ce376aac/dev-tools/ansible/inventories/testing-0.17-testdrive/group_vars/all/vault.yml
----------------------------------------------------------------------
diff --git a/dev-tools/ansible/inventories/testing-0.17-testdrive/group_vars/all/vault.yml b/dev-tools/ansible/inventories/testing-0.17-testdrive/group_vars/all/vault.yml
deleted file mode 100644
index a1d18b5..0000000
--- a/dev-tools/ansible/inventories/testing-0.17-testdrive/group_vars/all/vault.yml
+++ /dev/null
@@ -1,7 +0,0 @@
-$ANSIBLE_VAULT;1.1;AES256
-36666132643537623138323138316561383434336231643237303337623462313834323462656434
-6362663032643235363133613463616663643731316438340a636336316333386434303635303961
-64626364363465366538666538643037366431326533366562393765313631363434323230666665
-3230633265386131360a316232386666613664383561663231346466353065393435376537653631
-36663363353964336464653964393931346530343139313465303730316562613937636566623038
-3637393433373136343934313266653665346665323765373261

http://git-wip-us.apache.org/repos/asf/airavata/blob/ce376aac/dev-tools/ansible/inventories/testing-0.17-testdrive/group_vars/pga/vars.yml
----------------------------------------------------------------------
diff --git a/dev-tools/ansible/inventories/testing-0.17-testdrive/group_vars/pga/vars.yml b/dev-tools/ansible/inventories/testing-0.17-testdrive/group_vars/pga/vars.yml
deleted file mode 100644
index adbb9c8..0000000
--- a/dev-tools/ansible/inventories/testing-0.17-testdrive/group_vars/pga/vars.yml
+++ /dev/null
@@ -1,51 +0,0 @@
-#
-#
-# 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: "develop"
-pga_user: "pga"
-pga_group: "pga"
-doc_root_dir: "/var/www/html/php-gateway"
-user_data_dir: "/var/www/user_data"
-#vhost_servername: "{{ groups['pga'][0] }}"
-
-## WSO2 IS related variables
-tenant_domain: "prod.testdrive"
-admin_username: "tdaadmin"
-admin_password: "{{ vault_admin_password }}"
-oauth_client_key: "{{ vault_oauth_client_key }}"
-oauth_client_secret: "{{ vault_oauth_client_secret }}"
-
-## Airavata Client related variables
-#airavata_server: "tls://gw77.iu.xsede.org"
-airavata_server: "{{ groups['api-orch'][0] }}"
-airavata_port: "8930"
-gateway_id: "default"
-# relative to document root dir
-experiment_data_dir: "{{ user_data_dir }}"
-gateway_data_store_resource_id: "149.165.156.148_13fd11a4-f2eb-4ba8-a2c7-0db07f96db6b"
-
-## Portal related variables
-super_admin_portal: "false"
-admin_emails: "['sgg@iu.edu']"
-portal_email_username: "pga.airavata@gmail.com"
-portal_email_password: "{{ vault_portal_email_password }}"
-...

http://git-wip-us.apache.org/repos/asf/airavata/blob/ce376aac/dev-tools/ansible/inventories/testing-0.17-testdrive/group_vars/pga/vault.yml
----------------------------------------------------------------------
diff --git a/dev-tools/ansible/inventories/testing-0.17-testdrive/group_vars/pga/vault.yml b/dev-tools/ansible/inventories/testing-0.17-testdrive/group_vars/pga/vault.yml
deleted file mode 100644
index 53570f3..0000000
--- a/dev-tools/ansible/inventories/testing-0.17-testdrive/group_vars/pga/vault.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-$ANSIBLE_VAULT;1.1;AES256
-61396665393731333432613331393939633062393863613563396331666232333863393432306336
-6535633534353532623634346238666437343761313430330a303039366262663334306264313733
-39656661373063353161633561303762303732323639656262633535303132383765393136663832
-3236623637343034660a653830323566653430313934383733363266393765633365663463333532
-36363863643635643734363434626566356131303664306239626538373237393532323965303136
-37343739306632633630343339336261363739313035363566356130386432386130316438646262
-30393939343336303733346436333766313830333036656262316234613038626138343838626665
-31303662616236616235366334643930346135386562663138383932643363363337333733623463
-64303438306666626666313736343037373564323536326637626636393565616261656236646139
-38393137343435663534663166306239633363306165323339303232303832316164636436323663
-35376331323533626438373633343731333463323665613037353431666162663737636236383736
-66373561356132303039663230313662333262306265363134333732396230346331643433383164
-33323161623439303933306466323036316366333464623161323265666238363730333465323761
-39663263393765363334323335393533336332353362386531653737363865333836353863663366
-65336433333362363362663935653561653438633738386130366539343565313735383530376465
-35666366373864313939306533343765313235643336613635393736353039633731383636643935
-30616338353238386638396332383038376466666632663737323239333934666138

http://git-wip-us.apache.org/repos/asf/airavata/blob/ce376aac/dev-tools/ansible/inventories/testing-0.17-testdrive/hosts
----------------------------------------------------------------------
diff --git a/dev-tools/ansible/inventories/testing-0.17-testdrive/hosts b/dev-tools/ansible/inventories/testing-0.17-testdrive/hosts
deleted file mode 100644
index af2a0cc..0000000
--- a/dev-tools/ansible/inventories/testing-0.17-testdrive/hosts
+++ /dev/null
@@ -1,23 +0,0 @@
-[zookeeper]
-149.165.168.5 ansible_user=centos
-
-[rabbitmq]
-149.165.168.5 ansible_user=centos
-
-[database]
-149.165.172.163 ansible_user=centos
-
-[api-orch]
-149.165.168.5 ansible_user=centos
-
-[gfac]
-149.165.168.5 ansible_user=centos
-
-# NOTE: the registry is NOT deployed separately from the API server, but some
-# of the playbooks assume that there is a 'registry' group, so this entry
-# needs to be here as a workaround
-[registry]
-149.165.168.5 ansible_user=centos
-
-[pga]
-149.165.156.148 ansible_user=centos

http://git-wip-us.apache.org/repos/asf/airavata/blob/ce376aac/dev-tools/ansible/inventories/testing-0.17/files/airavata.jks
----------------------------------------------------------------------
diff --git a/dev-tools/ansible/inventories/testing-0.17/files/airavata.jks b/dev-tools/ansible/inventories/testing-0.17/files/airavata.jks
deleted file mode 100644
index 4124c40..0000000
--- a/dev-tools/ansible/inventories/testing-0.17/files/airavata.jks
+++ /dev/null
@@ -1,76 +0,0 @@
-$ANSIBLE_VAULT;1.1;AES256
-32656330396637356236343162313734356339656337633933323238656630646566366533646333
-3139613434336665386532326136353266373839376563630a313865376639663637643130386364
-65313436343330303437613639653833333530383130383266643963336334373366353062393762
-6534303635313039320a643139666331343435303037356139663235613437653235326666396132
-38376233343461656232353963306362383435323061623164623135613538376161656533306464
-64613637303666323439306466666266363764306133346132393931383631393964363864343037
-31353737323039303961643933316164653635326333633930343665616135646338386661316231
-31303462366239326664326139353433343232363061363464356236353938343338306562363864
-30616137343539656237303030343863613432646366383232396262373538663030666332303061
-38383630613535663332323830303130313039393430656666316361383335326164393138393062
-37663535326533333239613364656638313239663365353261633934656132633732333332366337
-35613733666466363662633363633530376133663436653462656538346134353965303561643031
-65376462663964323137356264303831383933303862393435313633333337303635336133613932
-35356439326431353932333839643433326430653638626231663733326464643338323639656334
-31363433656163643136396132633766343937313331363537353930643331346135643663373535
-65343164313065396634636330626130643165336365663166343035363238316630626433653032
-65323561366363366561396562346533653135623565666166373230303862376463316637313734
-39373166626633626266306538373138303131343665316165346530363061656130333739363865
-31326631316130306331353034306663643531646635373638356164613333353536356634346236
-30663034613936303861636561633761663335326534393236646633333261663136643831396637
-62326135646265306662336239326363613736323162633933326636303536633263323437373262
-63393438623834626337626438393332353838316336666136663364353431623530653633626561
-66646238323238643963653162323136636265396333313236626632353237393565363462633734
-33666533303132306563346538393433663161623832613065346136376532343131383830353438
-65306235336534313733393238646235616366383035303566616330633437393132363262316337
-38626135626537353664376133323466373939323638616630633538663533313061373763373535
-33343564623963613336396463333361383534333735353261353639373435393466346131356562
-33366262376533393161613932343938396136663532373231626362356663386263613332323539
-38613666356430653537326663303331613431353434663737323935326566656461653630306436
-66393337323938373030616563373639623665653332643335653861643034346239666337336132
-31663463343530313964303232633662383535313436626361313236653466353538313663636235
-31316261323134646639383865613434643762346562323337333662306162333936373863656135
-35666462653631366136623137613131333962363030646531396366633030666632376439373036
-35393932633333653535363266626665363662663237303766666332326161306666333061646231
-37626637653365343962653336326332353739333664393831653132636431656439633134383139
-64363035353236333835393932616263346334346162376261643931396137656338373437643736
-37643364616264306531616534396332303932636336656434376663393265636135346262346562
-36633833393265356530646633343866646635643932336430363634313237363637653965633438
-32323534383164376563323136666533373338333766343663326566613364636136303461393232
-65306635326663633836386166383564363832356166616439373833346561623436373635393533
-34393930393764393363363330646161346331376636666132656662626434353338343861373964
-66633561396338306339393665633565643366666130643235613732626637643133656465316264
-37306230323665343730363761643637336665313437366366346139643137313165623339663436
-61663863366134666163616438326639636132643331613265353831383134356133376131333538
-30663132306633646264333931656233613039353830363135396364383730663133313730323739
-38336537663830333466663033653361636332303534356630333730303731613539633635636230
-33326233663763653039303131656437326361306537396130353162373333616339363930363637
-38333963306235333837303361386332383762306130393338373034633334313835613565623865
-32333330616337656566346231393636363061326364633136626539313634396337636661313838
-34636464303863636639666231363965316336646461383234656161663035366330643039386266
-62343564353835386637626165663438353739386538326463303832633765323563383036386437
-32633065303532303631356236383862316563346237653562393033623035636431343138646237
-62386463353862643865333836613938653561316335366563323338643834616634383361346162
-61343436356638333965396238623639303631386363373432323032636139633962366262316438
-33313065653130366235613133303130306362623133386239323637626561643536653830663038
-36363463313838366461626639636139616462336335373438613230663536346332656436653235
-61316439343731646631663133393065313462643230643162313462343365656431363438613933
-65343032653038633330653734356439353537363236343163623138333836663862383035373537
-31626136363232666362613036366536323533386534366264636131656362373963643137333830
-34373039653939313863303736643761376332313161343232323863323832313631366138396661
-64323638383532333263316132303538376631396637656463366430343865633061363636373834
-33373163376239356433373230323561343830326434316661346433323233353933313632666533
-63626130393866653866656231386532373461346236653363653338396165663431383438386166
-63636230643439626337386638613662646636326435313937623334333933303431653335663333
-35313935613034353865383633643334333865386262353632353632383933636161343638303033
-66373037353435386263396664333335323932616137653839323133323032386265306562393561
-64643831353835366365623531626661626466366563666431396233396634353731613033376265
-65366231653562393233386231333435366438663932393962326464666161643666303932306132
-35383338333533343133636662316635343531303535383237653866353563623333333838383138
-33333439383661666637306531313865343164653633323962346430653762386230313035336664
-63336634633434346164313664613539613832643939633331643132363232396637376234353539
-32653136363135646431376131373632353363383239303536343865373632366337333261353935
-34323466396430363830303332376434343534623037613862323732336566623366333861373134
-64373535336133616537613362646164366237343433363838663731353961376538346534646337
-373637313538306332616430383839623432

http://git-wip-us.apache.org/repos/asf/airavata/blob/ce376aac/dev-tools/ansible/inventories/testing-0.17/files/airavata_sym.jks
----------------------------------------------------------------------
diff --git a/dev-tools/ansible/inventories/testing-0.17/files/airavata_sym.jks b/dev-tools/ansible/inventories/testing-0.17/files/airavata_sym.jks
deleted file mode 100644
index 13ccf1b..0000000
--- a/dev-tools/ansible/inventories/testing-0.17/files/airavata_sym.jks
+++ /dev/null
@@ -1,30 +0,0 @@
-$ANSIBLE_VAULT;1.1;AES256
-66393935613465373265366662383133353632633262353839623837636364373339336564636265
-3862663231313565313064643833646530636361333866610a636266666561306263343632663734
-33306432363830323132653038326139323464393065313631373936346162386161626461396530
-3061376439346264310a346630616535326435626235393564643062326665313239373839336331
-38316134613764373336333338323263356563396638303932656562336538333137643131373366
-35653334383566313262336261623339626532333634363531313534353762356534643961646338
-34633938333436333135643736663437373532633061366464343632643366343337366262386465
-33373333333033303262316566346565613731633361333438363063616165333231323635646333
-34303463656431663932326464356332353235336238653462663463373332656231373562626664
-65346131663064376232643435653264383465323761373063366162663236323935373139386138
-39623734643064623635376261646465383663613238623531613066306464326662346532346365
-63623064383436303634393639316638366136653563663930303130643531373166613133653338
-36636433626539366661656164613032653931356561336336343561323962336462383164393463
-65353265363535616136306136353064346561666439663532626234363763653535663061386232
-61663566343361666634346134623538366664396236346365336431383937653761643235613661
-32373439656332306536623336343763386364363265306138356138616464656662363434636531
-30646163333462636236336532383964643234616131663465666663633333343366376134666263
-63353161336366613065303434656537396237643938376233333431663232356630373038333835
-37306162623439323062626532656633646138386131643037323566643264653432633735333362
-65613564393232393433646334376639356564376661663430353630626534336566663061303632
-64633235333463626435323134636333353536393936663539663539336233363934333931323961
-63313739333733613465376334336239306633636136383831396533326530616133373366653531
-33356137656636323037303430623065393930633731346634346161633334313362613136313138
-36633835353665626462363031653161646530366339363732373865343136356637326631386437
-30383235306538303261613262376634303164313862366330393463346261363866346336666136
-37333566396436383534633330316465306461383537616661343265663731363561323137303164
-36336532333233343463633064346162646562613332646331343931363838333739636335376331
-66626436313938346362303932336339636434666665373862306462646162393066303338383265
-64363138663564386332383032366265666565643633393236663830313936343637

http://git-wip-us.apache.org/repos/asf/airavata/blob/ce376aac/dev-tools/ansible/inventories/testing-0.17/files/client_truststore.jks
----------------------------------------------------------------------
diff --git a/dev-tools/ansible/inventories/testing-0.17/files/client_truststore.jks b/dev-tools/ansible/inventories/testing-0.17/files/client_truststore.jks
deleted file mode 100644
index 2a0ed76..0000000
--- a/dev-tools/ansible/inventories/testing-0.17/files/client_truststore.jks
+++ /dev/null
@@ -1,271 +0,0 @@
-$ANSIBLE_VAULT;1.1;AES256
-33336636616264313633616638666666666231363334663461343632666439373931623239363032
-6332343661356530396363386334656630616237373637610a303338633833366466326561326136
-61313637333530386661666430643336643535633835643564386164613432653265383263316661
-3062383235383866360a656532326339316261653538623832323962376230646239333664643138
-32333762353535303463326338663232366635613337623764383831326339316463623261643733
-31363961653330363534316332303833383361343036653635356532373132663361356535306133
-64643035393633653264396537356462343036306661616238613664383230316136356430376463
-31386436303038303337646364313537326437656433363139346233613162376661363565636664
-31333237636363373865626265383866373732303135356661646336343362666636653039366431
-32656435393835613963616437333366353333396233323237656365363765353137313037396566
-37653766333363356365306138663633613963653939663631383236623966663231336462313336
-37366565333765666434313738613562343163363439366138316335623033373265616334633330
-35316432613039316634333537333330646137623930313465666331623964356137376139373639
-62303130616338393366613736373633626432333335373161653866656239623732656533633139
-36396131636132353630353834376337393337366337336163346334663039373433376566313163
-31316132353963313966373832396537326438613237666432613962316333323635613933303331
-32313133636335386536633762666566336630376665616563383331633666656134386337666637
-31313839376137383364623366333161346165613164303834393661333663643062633032656563
-35616362333938346236313135326262386431356261303739343330646238636334666134623838
-37373364663130353630336664623161376163376136663062353464316366323335633230353161
-30363738303230373632303661623432613761313865393431613562376439383861393535356633
-32336234346635356339653563323433646562326237643333613733383231633738366164663739
-36656632313038633363343538656266323938383634633461653063303737356631616466636333
-64346535386436333761373230316435376136663061386339653731366137663237363239393632
-64623635333438363430653734656663663433353936333730356234643538633665666166383565
-33626239316334306536646231333030383732616537333937653138616362323636376461623366
-37386164383066353533393130326564396330383665363735363162656464393836393639386434
-33346432353132636636393337633430303333346230386666383837613039376234373064366135
-31643032346238323339366130363833643262653332356264646435396632383537633738356530
-63393733363232626538363666346337656235616333353961343937353536633836366531333638
-61303663303230396662333439393863376139636166666564636533323737656635353363373133
-65643539356664386535373430316635386334303635623863393830643132376661633930333431
-61333766663639613433613833643464656165303233323337353031313565383562346462333237
-61353036326139303436393365643930303333353030343736616237666331383862393766626366
-31633932373734383964613162643563303237323133623561613163313836396130306265313330
-37353239373762333334363730626465636364656539333664663330363464323938393662626134
-65313138353162303061643265666336313962306230323138616132363439646336306531333238
-64323433333437353761353937663966373838643766623530633961313935663764333061306535
-64386436346232343562383661373834373132343132376237363464333230343139346130663064
-66303137386537396363393331396661346237323432653261373237383039663165336665383436
-61346237636431303765653265623537623665623063313937663736316337623231343030626166
-36323437656434376631306335346637333432663465393365623366366538313963366631643438
-30363231663937346632383032383465633234613263346239376364356436383330353664333130
-34353965613534643563373165663436303662326664363230306539663737346238333632333461
-66383736363135343735613364646530386163393265363764613730643532336639333931363837
-39666632653365396537663664383439653737646166376635323638356162643065663261326139
-62386537623263646535663863623433363839636433383864663239313331353762383437643839
-33393563346335666563313765633032303235383661653635343962363436643064643531613435
-34393138633263363733333666306166353730666364663062343431313830336133366162326233
-63643161656137353066343832333063623636306565356233363064666461383935656530663332
-66663434383463326165646538346433366361306133393834356139373765313465623061343837
-33363636373330393537656263373161653663333130323938303836643764666137616365626664
-63366161346665343732333730346139656137656239343633663236353037643231306135363266
-64336364356130346135656566613433623063323765633632613931313731616434363064396138
-62663839613536356234653632623530656266656161636563643935313065356364656435623639
-65633064613339373636366363663736393333386436663662366436343735363439383638306465
-30333463666435363934653335633739643737323666343533303231336461363638313764616336
-35633265356330336335326330383439393530363535613832333738306536323832616165633335
-35383534386263376237343530666666656631313634396361666666353635653565356462373635
-39623066396162396132613631323163323530616636306538336262366132316264613366376664
-33636639666266313561376135333763633935656336663162643539336464346432626463666532
-34356432396636343864653832336237393561333031343465633834643264663164653035373863
-33346330633339333536623737373465656132663737303463633239386635663336373137643039
-62633366383365646530383032323736366466313833633362353736633461393661373331313266
-61353734633966653035633362643836636234323938376334623061646465626637613563656665
-30386161393937623430376235306632393462356630653738333431616666386163303737653135
-64396230393136643137303037653863373362653634323937633663383563363333633865653239
-37323862366164656333343635626638663136356532663161343339373932353732643865396238
-65363035326530333631623435363538653531353365396362323365393465336462623364656538
-31313731653236376136316462626566323965303236373063393734366139353931653133616130
-35393864383939633039643531656164396365333338616637333266373737396435663033343736
-31363861646464393062623062353564663233373233653164646162306163356138616531663838
-39313633323430616531663635626536656134376164636133613432373035663862633537366264
-64623963303937333436333230373537393266393437333863653165656431306239626536363636
-33363165636539396262623665336264653134303439333565346365656130353638323338643839
-32633534373733363461323131646265643239363533633765623565613739383465626534366231
-37333336393965326134643433313665373061623039623363366336353835646138353738363162
-34663535613562616233356638316235393332643963373364333538393635376337366230333337
-37653331653861656462343362326465613939363636663662386563643161303061656666323631
-37613762363832633237393436376462623036303837363237323730653834626137653565323831
-36303361643764626561396636663133386532666666343434326532366239373461373030393739
-34303734373533323961353935366334313839373432313363333631633334653562643965343030
-63636363613761653137373331353364343134326263636438346665383962353438396466626238
-38653962376561373661616533333165656266626232326439643538353536353735346238643862
-39393939396563333935336535363961313730343963386431656366336665333030393061643132
-62396437323065353463396533613937386463343066366135356563623334316436643763343632
-36656330376564396661633530383661636238633934366162646134386632663337636338656231
-34303434373738353337316265313261663066383531613736326665633136353939303462373238
-33333834326234323764326234646231653061643962653964666433383862323836653438303464
-31613964313761383161343836356565326664363532363339356433643536346266656532353164
-31333034663233353438323762396365383335616464623033326139663433393235313735393733
-36656638303539366133303963373466323832323566666132653366626633356134363339623534
-30613536323731373166643563316635336534653030326662323835326632386330323764313434
-63313837353739343135656234633933613266313033656233353332323530306233646538663539
-63333665623033363338396662306133616333323762346263386631326137303732303865393036
-61303962393638343862663833366336383931336565626136393638346631303036613630613466
-66643366396263303935383933333864633131386366613965616663323837363732356662346336
-64663165656366353864303535393263626534333439313163376130393665626165373036323366
-31353639613466656136616564633162666333393635356532386339346264636566643464663763
-32626664346561386435336332393961353331326137383937383263313063633165663630306633
-31346538663735613237633666393437326464363866363962643563306137333663616562343033
-65343665663136336237376334366365663436333464393931303635343732616238643762633639
-64396437303630653839346162616234366138646437633831646133663463343766653630656665
-38303536643334643635303737663135373335306234306335626661616364383136613236623262
-36626534646438396236396533323164323663363962613066643835636139393262383431343732
-62303334663735656632306530323061646632626262656464633733646266393133326165633963
-36623662366437303838383938613338343733356462626531373865313430306433336666306639
-61613465323937616134306232643563613232326134336135383162303636346338373534656165
-64656130343636656232643234313465313230323431663239316338626534633030386162303638
-62313264316134326664356238366166333065326534313930343863393666356161633262313466
-62646161343066613232323833633435376231323363366237323832653463663965323236383230
-61343361623031653864376239363063626264396565653737323634336432303434653461323961
-65343266646536646535666134396138306438626530316633346532383762656332343237656634
-63336162636236633964643334333563323032643366313934653337373939303536353830343038
-61653665306635396263616533326232383761623430363831643865323266613133356431656536
-35316536313034353764616631343564363331366136633665616432336630326438363762653433
-38353336616632623331666335613831636230333438326635646365666535343663663232383263
-33623439323162363338396531316235326363306262323331373766616437343330326130653230
-38653933623434333363653631633961373133336139353964663138366536373764643139393666
-38396432396136336365393732623638303630303832663536613037663433356135333764363530
-62666131366236623938623333346437353831633431623232653162393437316465393261376539
-34393031353831333137366533396637656362373061333932333534666639636261393036303637
-63643533363234636335366439326232343763643430623866363838373464616632646531306134
-61646262386337636161306534383863313231626434333838346535616232633633626130313237
-65633631356261313431306562353063626639363830363231323337653437373061393835613132
-31343766343337323361323230356633353664363661326533373163656639313537363331626364
-34663564306666303663636538316663653632646564323262633836336236393330656431333365
-34663938363661613765363037666536393033666432326338643564333533626535326437663531
-65663730303063333438373933353864326666636332653965396531393634323234336136353830
-32326436303034303561653839623532343736316634373530656233306631323139643461383934
-39343039613634393231623139346466356234333137653337653631336666656265313161636262
-34656362383333646166653035633161623339383236346333353666353637313433313765323739
-30373761323362323737643561336431346334633466363635323665336439366666633862343765
-31656333306165316164306465313164393166646636396462303436653832613133346164383133
-37656166326633313432323866386430613232633964323733356535323031316466636232623066
-37613266366430613362383337383535346663333336346431343539616137386338363236653737
-62363862623032303032333834653863306664643563376131363065636336636230333366393865
-61343862306130323139633731633534616336626564666333356130353530333532366361303264
-61366438356532313635613864663762616436623738356238353034313033383764363864383463
-35633261383963653462313463376264663264336534376232633736356632636631646630356535
-61316164663433636662376431356463666364313930616463393437303061363365646164373831
-66353965353830323733666666326234316461393462373065343964363038623734333233653666
-36353733613364666332643232623031376436376662323564396566616661653033363731616262
-31346634346362383336333766393336623932653839643838656432346465303539323265363138
-66326630623661636361386564366534303238366535396364333134623732356136663837396532
-63396337366533383161613330333234353935373732306237663730366439316535656430626437
-31393666303163363637383763343363313533303333303064346436343532396238386164613165
-64653664383937613765633835306331633433376135333539626562336434313730323230656131
-64306165316462356164323662313837363061393564306265613266363734646331383037386161
-63323064303431346337623630633938343561303265333335613364333436643964626631616462
-61346534353264656439353038393462303063356630383332326130633530393035613933356438
-30396230666239393263643464353765663439626632633738396137376535353533303232336564
-34356564316437356238653537303562323662376637383262313862626564623065653535363539
-31353764616636623533393364636361373562623561356466666464663633363435663230633861
-61316261356637383564396132373066343361396239633330396564396363363831346134343631
-65343136386137656365346130366132656332643161643336393262613864663163396139653038
-37376339306164383563623830323566616565623231393930353566343931333936353235343839
-61386634383132636134656165626566303335356462376233623531353335393230316563386261
-64653337316665393338323636353262616636613739353930656334336364343034363863326166
-61376366626336316433383464656464313037366361366531366430323562363264316262373234
-64353534373866656234353961396464366231396330616139326464303332343738653136303538
-38383663316365663262363530336166663735393564333439653964313633383838383164363035
-65633962346263343335376462343630383165633138633731366236313832323766366332386666
-30333834393135646136323430353963626435366566333366656562616234643465653466613632
-32316638356332316363626364636236346538613061656563613334626662336335386533633535
-39383963623065313664613237633962633735613862623736643562313232303265306534656338
-37626432303031653833613231363962343038386664323833653736393237396665316539386139
-35393136386561346361653738303961633265396135653936313734626362623164366235626133
-61626361356262313362383036613139636431356463353661323265366330383533666363306333
-39366165386131393062663231313237373532646431383134313161396664316466353662393634
-65646662346630323964303432376665316131373930343636633836306237393839356337633335
-30343536326139393830363132383030323238323839653262663732333666306438636461623964
-61383962393534346630333332303430306138343338616230626366323065333534623639356562
-32373665656130393232333930323636373065343332373162386536343239383332666131383430
-30663962353433653766663236653061393162346331333364623636653965306131303264666434
-64623736363637303330313837303530323031336534353730346530386132336138636439666430
-65353762326635383165386664363235643764643734323739323831336637306133303335393864
-66353363613133313764343965616537383435633836393433643935656532363539316463663034
-37323939633830373735346434343839386463656566613465383836623235616662313834653634
-30303939643533303930616365363939623762323163313761393366323961346262303965643666
-36323830333239386130303766343833613066313137666237396230383066626137346131646538
-39353030323763613464333065613332633438326165626436363437346131316437313166633839
-61303862383434396439633533633261386138316531353536616339306631623265376166363136
-39383461393137623562313833376463353633623361653561623162656563623234313964383937
-30386537366434636539653531336230663837306436306166656236653231646435663262396636
-32376434326533616132323665663734383630386365383466626533386263643330383863393735
-37356330623633363933616161326366636533353465666231393839636134613061363438616262
-38623238373966636232393133616639356663613565313533386631623537306463323730396266
-62373237346136313038316566396664623265346431373330306662313535333137353465646564
-36333731393036666131393963383764373439396331666231623263346433323238363463383737
-62393361623861653631303535383763613934316139363461646133373263396139383431346234
-61666336386339643463343239383963643830666138373636646239333633313931343330346165
-61376335343864633462643362353834653165376561373333313934393830386432303262323461
-38643038636164353231653461386637376232356463646533666230336163633563376539653132
-64636162383330353837653234366531386133393539306333343034366436323933306236333138
-62373639363461643934393936353961303737373561356137663930336264306364623035663661
-65343333393663396131303762336537396562643265393531373238313433386639393531316563
-34636365633436643236653830653531396365626536613039393664613162616262386637393334
-61623565396266336232626537383763353163363533373430656131346536323432353364336161
-33633565393331353563373432373238626437613663636463643331316131353937356637626562
-36386462306666643262396638323965353362373037643833346639323634336333343936363362
-64633765333133386332333233653062373564366639666338353836616363633434353235663664
-66323763373565626466646361353466323066363463646336386633376332323261356437336564
-65303830643131636130336435616130346437353965356232356538333964386530653362303535
-64616637363430376638616666623064326134373262336365323466383463316630323239366537
-38323537663065376562653461366262653334353363636463653932623733366136383563363538
-34313362643561323037393132643735333735656230643732343065376263663935623430356234
-32626134343737363135646264363135383664373761376461396531653962386165363465386632
-31666232643138633235393263336465626664353434656335626234393634643535353939353033
-34633663653239623762656331326665313266613035326538636131336164626237636634346137
-34643766623436613139643336306563636264623333313039613236353462333235386532636364
-61346236623735333364653461616362343865653666363631623132616265346335646634666533
-65633138613030656635626632623431376165666465356332663063346138333065343963303765
-63313237616630623063363034303230386538343333343363646437656232376134316462376537
-39333434613435653461633230303639663165643835643234643664633737323032303339336539
-35656233636534613233613734633333346339363130646164636532336361303134366636656631
-37376662306663613434333135333032333130323032333661653964626134656462373232326334
-38663435313737333834663436653639363863376633656266663764363839646561343866623233
-61353031663431626461396265653634336433656131343433626539626239303037366530316634
-32636234646633353163613764336539303263343431353130613538363963626331346664323939
-65623634376362643739333938373536383664396430653562396461316564623633323632363132
-39333739626430646530366339313332333665386165623031363935633836623963343364353037
-36393465313436623863313035356339313037613038376236663536386339383261353864643432
-35343863333838393433326331376263323632383063383032393265303739613738623462313161
-33326437646238353232313564623233633833356130323231336661633731346561383935363538
-64376437313138653432623162613638643566343333356538663565616433366133393564326434
-36643934346466636562623065313265656565623135383235326339623932666135653031393963
-64353961386235383034323537303530366265386166353463666463316562616134343731663338
-34623531303535323062643963396237353165666463346561376235616136336432343230613538
-61623938323631663564343865333665346337356339373033316534643665666664626161333537
-63653335623439313039636137396566343838643439656365313935363834646366346139343462
-35333036353933323330326235313539356661353464343337363132343965396362636637316663
-65363530346666623764366335646538393365313762326634323132643535353032363935626262
-34393561623532323061633661363134663934366463366235646461386462373034613734653464
-32343164663066313035633639386565613136616532333236623862393232323665643832373735
-33323734353165323536366435666233623235393266343239663665393966376661383765623930
-31646531613963613765336162326430326565353833303662316563386138336434343633393566
-30646464396138343961666133383333383137643131353432643161653033633532323031306333
-32363535633034326166613162363538383730346165326634636566396537333431613263383462
-32653536373966616166373135346361386531656337316439333738343662633534646232373761
-39336432633838316131343331383132383463323133663934663434343835346231343730666134
-66323666303135323961323336666637303966383030663065356236643237643737633532333031
-62303639326537366161613836633838346465366639613832363433663664396238363363313733
-61633064373334326535326365616435323662303463383337366134316665353566333138643339
-33363035643839663962666331643933346563626533643337393161303934336533366161323834
-32303838643435663631326361663537393864623439643538643264396431613637646164343330
-65663366346431646565393231396430646334666634363037626336333437643664623639623266
-31623337303962326163363531363430343733613431653664303462393534306535366639346462
-31643030363364383737666464363965346637653564616433393962373166623537336263633765
-64343739353436646132396636373638663966653836646566363064303835363463376333623531
-30633936333962303739363032383561353936623233613063616163346661306233636330353939
-64366332666163316363643634663130663033343739633234393337353537326537383833636463
-31343937333762306333323766653562656237643762623233316666616537393436393330643066
-35326634643533643430373839663733393665326664363133653065663230396466383066353162
-63363130393030323738353636643161343534356230373264386335373038626336663335613966
-38316131346236636133343832616364386437353063366665653732336264336237656563396433
-34386364373035333065643833366638623163343063633330616439373464633164346331643039
-37643238373337386139646663363163643539393131666661356138303862646134376664323633
-33613834343732616561616330306234363336353434643432646437316438613861643936343835
-66313232373439363264656663363632663161636237366434626363646366316338313136393530
-32363538323239626637636562636133653066666337323439626339353835643162326562616166
-35323636373261363061363332613661313862333632316537663539386136373839346161633835
-64646133633333663536656364646137366161303635353864353634653763373766663539386432
-63353239353137633663646439646632343964313837656231363539626536336438336562633835
-30386234373838306337313630393461326234613239623231613237656131383733366639666336
-62366461323633303966613335636533323965643963303963343032666433356562306333366565
-33626133643033353266663965393933376466353432636262303234383832623439316530653261
-63373930613661646536643130653036336363623631393661376538323833303131623133333063
-34623737313030343833313232316263666265313861666438613430373536373132376333343833
-3538303566326463306331633363653436616135643439323330

http://git-wip-us.apache.org/repos/asf/airavata/blob/ce376aac/dev-tools/ansible/inventories/testing-0.17/group_vars/all/vars.yml
----------------------------------------------------------------------
diff --git a/dev-tools/ansible/inventories/testing-0.17/group_vars/all/vars.yml b/dev-tools/ansible/inventories/testing-0.17/group_vars/all/vars.yml
deleted file mode 100644
index 7d04994..0000000
--- a/dev-tools/ansible/inventories/testing-0.17/group_vars/all/vars.yml
+++ /dev/null
@@ -1,115 +0,0 @@
-#
-#
-# 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.
-#
-
----
-
-user: centos
-group: centos
-user_home: "/home/{{ user }}"
-
-# deployment related variables
-deployment_dir: "{{ user_home }}/deployment"
-airavata_source_dir: "{{ user_home }}/source"
-airavata_repo: "https://git-wip-us.apache.org/repos/asf/airavata.git"
-airavata_dist: "apache-airavata-server-0.17-SNAPSHOT"
-airavata_dist_name: "{{ airavata_dist }}-bin.tar.gz"
-old_airavata_dist: "apache-airavata-server-0.17-SNAPSHOT"
-git_branch: develop
-
-# Database related variables
-db_server: "{{ groups['database'][0] }}"
-db_server_port: "3306"
-db_user: "airavata"
-db_password: "{{ vault_db_password }}"
-app_catalog: "master_app_catalog"
-exp_catalog: "master_exp_catalog"
-replica_catalog: "master_replica_catalog"
-sharing_catalog: "sharing_catalog"
-workflow_catalog: "master_wf_catalog"
-credential_store: "master_credential_store"
-profile_service: "profile_service"
-
-mysql_connector_jar: "mysql-connector-java-5.1.37-bin.jar"
-
-# Rabbitmq related vareables
-rabbitmq_server: "{{ ansible_fqdn }}"
-rabbitmq_vhost: "develop"
-rabbitmq_user: "airavata"
-rabbitmq_password: "airavata"
-rabbitmq_port: "5672"
-rabbitmq_broker_url: "amqp://{{ rabbitmq_user }}:{{ rabbitmq_password }}@{{ rabbitmq_server}}:{{ rabbitmq_port }}/{{ rabbitmq_vhost }}"
-
-# Zoookeeper related variables
-zookeeper_client_port: 2181
-zookeeper_url: "{{ groups['zookeeper'][0] }}:{{ zookeeper_client_port }}"
-# API Server related variables
-api_server_name: "apiserver-node0"
-api_server_host: "{{ansible_fqdn}}"
-api_server_port: "8930"
-api_secured: "false"
-tls_enable: "false"
-api_server_tls_port: "9930"
-enable_sharing: "true"
-iam_server_url: "https://iam.scigap.org/auth"
-
-# Orchestrator  related variables
-orchestrator_name: "orchestrator-node0"
-orchestrator_host: "{{ansible_fqdn}}"
-orchestrator_port: "8940"
-api_orch_dir: "{{ deployment_dir }}/api-orchestrator"
-api_orch_server_names: "api-orch"
-
-# registry related variables
-registry_name: regserver-node0
-registry_host: "{{ ansible_fqdn }}"
-registry_port: 8970
-#registry_dir: "{{ deployment_dir }}/registry"
-default_gateway: "php_reference_gateway"
-
-# Credential and keystore related variables
-#authorization_server: "https://{{ groups['wso2is'][0]}}:9443/services/"
-keystore_src_path: "{{inventory_dir}}/files/airavata.jks"
-keystore_passwd: "{{ vault_keystore_passwd }}"
-client_truststore_src_path: "{{inventory_dir}}/files/client_truststore.jks"
-client_truststore_passwd: "{{ vault_client_truststore_passwd }}"
-cred_keystore_src_path: "{{inventory_dir}}/files/airavata_sym.jks"
-cred_keystore_passwd: "{{ vault_cred_keystore_passwd }}"
-cred_keystore_alias: "airavata"
-cred_store_server_host: "{{ ansible_fqdn }}"
-cred_store_port: "8960"
-keystores_location: "{{ deployment_dir }}/keystores"
-
-# Gfac related variables
-gfac_name: "gfac-node0"
-gfac_host: "{{ ansible_fqdn }}"
-gfac_port: "8950"
-gfac_dir: "{{ deployment_dir }}/gfac-instance"
-
-# Monitoring variables
-monitor_email_address: "test.airavata@gmail.com"
-monitor_email_password: "airavata"
-
-# Sharing Registry related variables
-sharing_registry_host: "{{ ansible_fqdn }}"
-sharing_registry_port: 7878
-
-# Profile Service related variables
-profile_service_host: "{{ ansible_fqdn }}"
-profile_service_port: 8962

http://git-wip-us.apache.org/repos/asf/airavata/blob/ce376aac/dev-tools/ansible/inventories/testing-0.17/group_vars/all/vault.yml
----------------------------------------------------------------------
diff --git a/dev-tools/ansible/inventories/testing-0.17/group_vars/all/vault.yml b/dev-tools/ansible/inventories/testing-0.17/group_vars/all/vault.yml
deleted file mode 100644
index e9ec40e..0000000
--- a/dev-tools/ansible/inventories/testing-0.17/group_vars/all/vault.yml
+++ /dev/null
@@ -1,13 +0,0 @@
-$ANSIBLE_VAULT;1.1;AES256
-62376262353736363863613039383261613739356233336636303833313463653265623037396238
-3465316332653162633735636536643431386536613363350a353239306534343166393234316534
-30393561633235326335633962316537393239333731323737323734626438653663313230623139
-3734616630633662610a396633343539613262323938313937646333303562346462623364343665
-39653534383437393532343432613732303961616334626264353634313566386263326662306463
-63346630633439376435643866343639373461653635353031636563336233316564333338376435
-62326431643462333939656630303431633835383766653732326466353533313962643533356233
-32656530303532656563633030376536326262613336303939653038396530626438386530626334
-31663961333036663530313637623666633838663137393666396331333463656338366331623435
-65346566333261393633363234303132386133383535346330363838316562656165323839376166
-30343565653061376135313966373831383866326134356532343037356362393632393038323732
-64306564386138623432

http://git-wip-us.apache.org/repos/asf/airavata/blob/ce376aac/dev-tools/ansible/inventories/testing-0.17/group_vars/pga/vars.yml
----------------------------------------------------------------------
diff --git a/dev-tools/ansible/inventories/testing-0.17/group_vars/pga/vars.yml b/dev-tools/ansible/inventories/testing-0.17/group_vars/pga/vars.yml
deleted file mode 100644
index fd13aa9..0000000
--- a/dev-tools/ansible/inventories/testing-0.17/group_vars/pga/vars.yml
+++ /dev/null
@@ -1,55 +0,0 @@
-#
-#
-# 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: "keycloak-integration"
-user: "pga"
-group: "pga"
-doc_root_dir: "/var/www/html/php-gateway"
-user_data_dir: "/var/www/user_data"
-vhost_servername: "{{ groups['pga'][0] }}"
-vhost_ssl: False
-
-## Keycloak related variables
-tenant_domain: "seagrid"
-admin_username: "admin"
-admin_password: "{{ vault_admin_password }}"
-oauth_client_key: "{{ vault_oauth_client_key }}"
-oauth_client_secret: "{{ vault_oauth_client_secret }}"
-oauth_grant_type: "password"
-oidc_discovery_url: "https://iam.scigap.org/auth/realms/seagrid/.well-known/openid-configuration"
-
-## Airavata Client related variables
-#airavata_server: "tls://gw77.iu.xsede.org"
-airavata_server: "{{ groups['api-orch'][0] }}"
-airavata_port: "{{ api_server_port }}"
-airavata_profile_service_port: "{{ profile_service_port }}"
-gateway_id: "seagrid"
-# relative to document root dir
-experiment_data_dir: "{{ user_data_dir }}"
-gateway_data_store_resource_id: "149.165.156.11_b5f26430-14d5-4372-8a7e-39b125aa640b"
-
-## Portal related variables
-super_admin_portal: "false"
-admin_emails: "['sgg@iu.edu']"
-portal_email_username: "pga.airavata@gmail.com"
-portal_email_password: "{{ vault_portal_email_password }}"
-...

http://git-wip-us.apache.org/repos/asf/airavata/blob/ce376aac/dev-tools/ansible/inventories/testing-0.17/group_vars/pga/vault.yml
----------------------------------------------------------------------
diff --git a/dev-tools/ansible/inventories/testing-0.17/group_vars/pga/vault.yml b/dev-tools/ansible/inventories/testing-0.17/group_vars/pga/vault.yml
deleted file mode 100644
index 6647c9f..0000000
--- a/dev-tools/ansible/inventories/testing-0.17/group_vars/pga/vault.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-$ANSIBLE_VAULT;1.1;AES256
-61663832613632643332616561333966306365373962613030396666656138623135636231333165
-3130366338366535366633393635636430633263376335300a326633353562363137623735326238
-30633765353633633937373561323366346163323136663930376532393661396433396432303864
-6562343965313039360a643761643336666632613366626661633633313432653135306266383064
-31323536633430656136343138313661386237313033363061633166336630353666636364646539
-39323539373632653631373636373137313138376334396466363362383635663530376435653038
-65333534313363663230303464633265336133353631316537613363643063643539616630363961
-61323739616464356161623666303366623361363966663838303863346563393739376538373830
-37653962346434396333376462373931316139646531643634626163323736336265613564313665
-34353361383732343035323938316433363030376137643738393239626131363963306131626231
-32346631653436346666616435383339666537626265336330366631353031336162383766643334
-35356665343333626565663431336436313436376236323235396132303230336364633130383663
-63383939626464636261376531336265613938393461323765343138656138376562373437373162
-64623365623165356631353435363261346165313532346237383062613966396232656461646364
-30616235626264356139313161636565613135353838613631326336346664373137346130376531
-39663362656165376137613265386237653635376361643765373033663436643162623334643430
-3964

http://git-wip-us.apache.org/repos/asf/airavata/blob/ce376aac/dev-tools/ansible/inventories/testing-0.17/hosts
----------------------------------------------------------------------
diff --git a/dev-tools/ansible/inventories/testing-0.17/hosts b/dev-tools/ansible/inventories/testing-0.17/hosts
deleted file mode 100644
index 80b186e..0000000
--- a/dev-tools/ansible/inventories/testing-0.17/hosts
+++ /dev/null
@@ -1,23 +0,0 @@
-[zookeeper]
-149.165.168.5 ansible_user=centos
-
-[rabbitmq]
-149.165.168.5 ansible_user=centos
-
-[database]
-149.165.172.163 ansible_user=centos
-
-[api-orch]
-149.165.168.5 ansible_user=centos
-
-[gfac]
-149.165.168.5 ansible_user=centos
-
-# NOTE: the registry is NOT deployed separately from the API server, but some
-# of the playbooks assume that there is a 'registry' group, so this entry
-# needs to be here as a workaround
-[registry]
-149.165.168.5 ansible_user=centos
-
-[pga]
-149.165.156.11 ansible_user=centos