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 2019/11/20 21:32:54 UTC

[airavata] branch develop updated: Ansible: update helix deploy to openjdk 11

This is an automated email from the ASF dual-hosted git repository.

machristie pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/airavata.git


View the commit online:
https://github.com/apache/airavata/commit/c4467de60a609928d77215d404e99015727f9428

The following commit(s) were added to refs/heads/develop by this push:
     new c4467de  Ansible: update helix deploy to openjdk 11
c4467de is described below

commit c4467de60a609928d77215d404e99015727f9428
Author: Marcus Christie <ma...@apache.org>
AuthorDate: Wed Nov 20 16:32:35 2019 -0500

    Ansible: update helix deploy to openjdk 11
---
 dev-tools/ansible/helix.yml                                          | 2 ++
 dev-tools/ansible/inventories/scigap/develop/group_vars/all/vars.yml | 2 ++
 dev-tools/ansible/roles/java/tasks/main.yml                          | 1 +
 3 files changed, 5 insertions(+)

diff --git a/dev-tools/ansible/helix.yml b/dev-tools/ansible/helix.yml
index 056c1f7..f080958 100644
--- a/dev-tools/ansible/helix.yml
+++ b/dev-tools/ansible/helix.yml
@@ -29,6 +29,8 @@
 - hosts: helix
   tags: helix, airavata
   roles:
+    - env_setup
+    - java
     - role: common
       become: yes
       become_user: "{{user}}"
diff --git a/dev-tools/ansible/inventories/scigap/develop/group_vars/all/vars.yml b/dev-tools/ansible/inventories/scigap/develop/group_vars/all/vars.yml
index fd07982..a5f80a8 100644
--- a/dev-tools/ansible/inventories/scigap/develop/group_vars/all/vars.yml
+++ b/dev-tools/ansible/inventories/scigap/develop/group_vars/all/vars.yml
@@ -151,6 +151,8 @@ helix_url: http://www-us.apache.org/dist//helix/{{helix_version}}/binaries/helix
 helix_dir: "{{ deployment_dir }}/airavata-helix"
 helix_cluster_name: "AiravataDevCluster"
 snapshot_version: "0.19-SNAPSHOT"
+helix_pre_wm_load_balance_clusters: "false"
+helix_post_wm_load_balance_clusters: "false"
 
 # Listening port for kafka installations
 kafka_listener_port: 9092
diff --git a/dev-tools/ansible/roles/java/tasks/main.yml b/dev-tools/ansible/roles/java/tasks/main.yml
index 9709631..bc04add 100644
--- a/dev-tools/ansible/roles/java/tasks/main.yml
+++ b/dev-tools/ansible/roles/java/tasks/main.yml
@@ -21,6 +21,7 @@
 ---
 - name: Install OpenJDK 11
   yum: name=java-11-openjdk-devel state=latest update_cache=yes
+  become: yes
   tags:
     - always