diff --git a/ansible/group_vars/nimbus-toledo-devel.yml b/ansible/group_vars/nimbus-toledo-devel.yml deleted file mode 100644 index a846707..0000000 --- a/ansible/group_vars/nimbus-toledo-devel.yml +++ /dev/null @@ -1,9 +0,0 @@ ---- -beacon_node_network: 'toledo' -beacon_node_cont_tag: 'devel-{{ (hostname is search("large")) | ternary("large", "small") }}' -beacon_node_cont_entrypoint: '/usr/local/bin/nimbus_beacon_node' - -# Distribution of validators and their keys -dist_validators_layout: - "toledo-01.aws-eu-central-1a.nimbus.test": { start: 0, end: 1024 } - "toledo-02.aws-eu-central-1a.nimbus.test": { start: 1024, end: 2048 } diff --git a/ansible/master.yml b/ansible/master.yml deleted file mode 100644 index 4acb941..0000000 --- a/ansible/master.yml +++ /dev/null @@ -1,13 +0,0 @@ ---- -- name: Pre-playbook checks - hosts: localhost - tasks: - - name: 'Verify Ansible version is 2.8 or newer' - assert: - that: 'ansible_version.full is version_compare("2.8", ">=")' - msg: 'Your Ansible version is lower than 2.8. Upgrade it.' - -- name: Configure beacon node builds - hosts: nimbus-master - roles: - - { role: beacon-node-builds, tags: beacon-node-builds } diff --git a/ansible/toledo.yml b/ansible/toledo.yml deleted file mode 100644 index 8559a55..0000000 --- a/ansible/toledo.yml +++ /dev/null @@ -1,14 +0,0 @@ ---- -- name: Pre-playbook checks - hosts: localhost - tasks: - - name: 'Verify Ansible version is 2.8 or newer' - assert: - that: 'ansible_version.full is version_compare("2.8", ">=")' - msg: 'Your Ansible version is lower than 2.8. Upgrade it.' - -- name: Configure network toledo using develop - hosts: nimbus-toledo-devel - roles: - - { role: distribute-validators, tags: [ distribute-validators ] } - - { role: infra-role-beacon-node, tags: [ infra-role-beacon-node, beacon-node ] }