-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11 from SeqWare/feature/test_environment
Feature/test environment
- Loading branch information
Showing
7 changed files
with
76 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# Created by .ignore support plugin (hsz.mobi) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
--- | ||
# file: docker-start.yml | ||
# This file is used for installing a seqware container | ||
|
||
- hosts: all | ||
sudo: True | ||
tasks: | ||
- name: Start all required services | ||
service: name={{ item }} state=restarted | ||
with_items: | ||
- postgresql | ||
- hadoop-hdfs-datanode | ||
- hadoop-hdfs-namenode | ||
- hadoop-0.20-mapreduce-jobtracker | ||
- hadoop-0.20-mapreduce-tasktracker | ||
- oozie | ||
- gridengine-master | ||
- gridengine-exec | ||
- name: Bump up control node memory allocation for high-mem machines | ||
lineinfile: dest=~seqware/.seqware/settings regexp='^SW_CONTROL_NODE_MEMORY.*' line='SW_CONTROL_NODE_MEMORY=4000' state=present | ||
when: ansible_memtotal_mb > 100000 | ||
- name: Redirect oozie working directory so that workflow runs are persisted | ||
lineinfile: dest=~seqware/.seqware/settings regexp='^OOZIE_WORK_DIR.*' line='OOZIE_WORK_DIR=/datastore' state=present | ||
|
||
- hosts: all | ||
sudo: True | ||
roles: | ||
- { role: grid-engine, single_node: True , grid_engine_master: True } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
--- | ||
dependencies: | ||
- { role: java, java_provider: Cloudera } | ||
- { role: java, java_provider: Oracle8 } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters