This is an automated email from the ASF dual-hosted git repository.
eroma pushed a commit to branch RPID+SEAGrid
in repository https://gitbox.apache.org/repos/asf/airavata.git
The following commit(s) were added to refs/heads/RPID+SEAGrid by this push:
new d6abe82 Adding vars properties for standalone airavata installation
d6abe82 is described below
commit d6abe82a0622bd998c9ba690c30d4993a60c5fd7
Author: Eroma Abeysinghe <[email protected]>
AuthorDate: Wed Jan 29 13:15:51 2020 -0500
Adding vars properties for standalone airavata installation
---
.../scigap/RPID+SEAGrid/group_vars/helix/vars.yml | 49 ++++++++++++++++++++++
1 file changed, 49 insertions(+)
diff --git
a/dev-tools/ansible/inventories/scigap/RPID+SEAGrid/group_vars/helix/vars.yml
b/dev-tools/ansible/inventories/scigap/RPID+SEAGrid/group_vars/helix/vars.yml
new file mode 100644
index 0000000..7f9b52f
--- /dev/null
+++
b/dev-tools/ansible/inventories/scigap/RPID+SEAGrid/group_vars/helix/vars.yml
@@ -0,0 +1,49 @@
+#
+#
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements. See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership. The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied. See the License for the
+# specific language governing permissions and limitations
+# under the License.
+#
+
+---
+helix_version: 0.7.1
+helix_url:
http://www-us.apache.org/dist//helix/{{helix_version}}/binaries/helix-core-{{helix_version}}-pkg.tar
+helix_dir: "{{ deployment_dir }}/airavata-helix"
+helix_cluster_name: "AiravataDemoCluster"
+
+snapshot_version: "0.19-SNAPSHOT"
+
+# Listening port for kafka installations
+kafka_listener_port: 9092
+kafka_rest_proxy_listener_port: 8082
+
+# Realtime Monitoring related variables
+realtime_monitor_broker_url: "{{ groups['kafka'][0] }}:{{ kafka_listener_port
}}"
+realtime_monitor_broker_publisher: "RealtimeProducer"
+realtime_monitor_broker_consumer_group: "monitor"
+realtime_monitor_broker_topic: "helix-airavata-mq"
+
+# Variables related to the broker in which parsed job statuses are published
+job_monitor_broker_url: "{{ groups['kafka'][0] }}:{{ kafka_listener_port }}"
+job_monitor_broker_topic: "parsed-data"
+job_monitor_broker_consumer_group: "MonitoringConsumer"
+
+# Variables related to parser framework
+parser_broker_url: "{{ groups['kafka'][0] }}:{{ kafka_listener_port }}"
+parser_broker_topic: "completed-messages"
+parser_broker_consumer_group: "ParsingConsumer"
+parser_storage_resource_id: "CHANGEME"
+parser_broker_publisher_id: "ParserProducer"