diff options
author | sveneh <sven@ethdev.com> | 2015-03-17 19:00:45 +0800 |
---|---|---|
committer | sveneh <sven@ethdev.com> | 2015-03-17 19:00:45 +0800 |
commit | 8e44fd4a2009b3839c03a0aa0a693cddb2b3b931 (patch) | |
tree | 9634e0d25a949174fee2627ee396a6dad8821bac | |
parent | 99268f3d907ac74a09e93ba42285abf6d4769bcb (diff) | |
download | tangerine-tests-8e44fd4a2009b3839c03a0aa0a693cddb2b3b931.tar tangerine-tests-8e44fd4a2009b3839c03a0aa0a693cddb2b3b931.tar.gz tangerine-tests-8e44fd4a2009b3839c03a0aa0a693cddb2b3b931.tar.bz2 tangerine-tests-8e44fd4a2009b3839c03a0aa0a693cddb2b3b931.tar.lz tangerine-tests-8e44fd4a2009b3839c03a0aa0a693cddb2b3b931.tar.xz tangerine-tests-8e44fd4a2009b3839c03a0aa0a693cddb2b3b931.tar.zst tangerine-tests-8e44fd4a2009b3839c03a0aa0a693cddb2b3b931.zip |
possibility to launch more than one machine
-rw-r--r-- | ansible/ec2-setup.yml | 2 | ||||
-rw-r--r-- | ansible/roles/ec2/tasks/setup.yml | 11 | ||||
-rw-r--r-- | ansible/roles/ec2/vars/main.yml | 6 |
3 files changed, 7 insertions, 12 deletions
diff --git a/ansible/ec2-setup.yml b/ansible/ec2-setup.yml index 787d8670e..37396d523 100644 --- a/ansible/ec2-setup.yml +++ b/ansible/ec2-setup.yml @@ -1,6 +1,6 @@ --- - name: Provision EC2 instances - hosts: local + hosts: localhost gather_facts: false roles: - ec2 diff --git a/ansible/roles/ec2/tasks/setup.yml b/ansible/roles/ec2/tasks/setup.yml index 0876d8d2d..299b55c35 100644 --- a/ansible/roles/ec2/tasks/setup.yml +++ b/ansible/roles/ec2/tasks/setup.yml @@ -24,10 +24,9 @@ region: "{{ region }}" key_name: "{{ keypair }}" instance_tags: - Name: test_runner + Name: "{{ item }}" + Role: client-tests count_tag: - Name: test_runner - exact_count: "{{ total_no_instances }}" -# volumes: -# - device_name: /dev/xvda -# volume_size: "{{ volume_size_gb }}" + Name: "{{ item }}" + exact_count: 1 + with_sequence: start=0 end={{ total_no_instances - 1 }} format=testrunner-%1u diff --git a/ansible/roles/ec2/vars/main.yml b/ansible/roles/ec2/vars/main.yml index ea260c927..f5cf28596 100644 --- a/ansible/roles/ec2/vars/main.yml +++ b/ansible/roles/ec2/vars/main.yml @@ -4,13 +4,9 @@ instance_type: c4.xlarge security_group: client-tests -# image: ami-d6e7c084 image: ami-9eaa1cf6 -# region: ap-southeast-1 region: us-east-1 keypair: christoph -# keypair: client-tests -volume_size_gb: 50 # limit access to AWS to these clients in CDIR notation ip_access_range: 0.0.0.0/0 @@ -18,4 +14,4 @@ ip_access_range: 0.0.0.0/0 project_description: https://github.com/ethereum/tests -total_no_instances: 1 +total_no_instances: 3 |