adjust branch names and memory for master

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2020-11-05 22:37:44 +01:00
parent 09bc4a49b4
commit f30a3c1314
No known key found for this signature in database
GPG Key ID: 4EF064D0E6D63020
2 changed files with 9 additions and 5 deletions

View File

@ -0,0 +1,4 @@
---
# Master host has more memory, but it should be for builds
beacon_node_mem_limit: '{{ (ansible_memtotal_mb * 0.25) | int }}'
beacon_node_mem_reserve: '{{ (ansible_memtotal_mb * 0.2) | int }}'

View File

@ -7,7 +7,7 @@
that: 'ansible_version.full is version_compare("2.8", ">=")'
msg: 'Your Ansible version is lower than 2.8. Upgrade it.'
- name: Configure shared testnet3
- name: Configure shared testnet3 using master
hosts: nimbus.test[0:3]
vars:
beacon_node_repo_branch: 'master'
@ -15,18 +15,18 @@
- { role: infra-role-beacon-node, tags: [ infra-role-beacon-node, beacon-node ] }
- { role: network-debug-script, tags: [ network-debug-script ] }
- name: Configure shared testnet2
- name: Configure shared testnet2 using devel
hosts: nimbus.test[4:7]
vars:
beacon_node_repo_branch: 'develop'
beacon_node_repo_branch: 'devel'
roles:
- { role: infra-role-beacon-node, tags: [ infra-role-beacon-node, beacon-node ] }
- { role: network-debug-script, tags: [ network-debug-script ] }
- name: Configure shared testnet2
- name: Configure shared testnet3 using libp2p
hosts: nimbus.test[8:9]
vars:
beacon_node_repo_branch: 'nim-libp2p-auto-bump'
beacon_node_repo_branch: 'libp2p'
roles:
- { role: infra-role-beacon-node, tags: [ infra-role-beacon-node, beacon-node ] }
- { role: network-debug-script, tags: [ network-debug-script ] }