make playbook more selective

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2019-11-04 01:04:03 +01:00
parent b417df663e
commit ef4f18bc5f
No known key found for this signature in database
GPG Key ID: 4EF064D0E6D63020

View File

@ -1,8 +1,9 @@
---
- name: Configure Nimbus master
hosts: nimbus-master
hosts:
- nimbus-master
roles:
- { role: origin-cert }
- { role: origin-cert, tags: origin-cert }
- { role: nimbus-stats, tags: nimbus-stats }
- name: Configure Nimbus cluster
@ -12,7 +13,7 @@
tasks:
- include_role:
name: infra-role-beacon-node
tags: beacon-node
tags: beacon-node
with_sequence: count=2
vars:
beacon_node_network: 'testnet0'
@ -23,7 +24,7 @@
- include_role:
name: infra-role-beacon-node
tags: beacon-node
tags: beacon-node
with_sequence: count=2
vars:
beacon_node_network: 'testnet1'