-
Notifications
You must be signed in to change notification settings - Fork 0
/
build_box.yml
88 lines (63 loc) · 1.69 KB
/
build_box.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
---
- name: Provision the VM and pull client images
hosts: all
become: true
vars:
docker_package_state: present
docker_install_compose_plugin: true
enable_firewall: false
pre_tasks:
- name: Update apt cache
ansible.builtin.apt:
update_cache: true
- name: Update all packages to their latest version
ansible.builtin.apt:
name: "*"
state: latest
roles:
- name: Install Docker
role: geerlingguy.docker
- name: Pull Geth & Lighthouse
role: slingnode.ethereum
vars:
clients:
execution: geth
consensus: lighthouse
validator: lighthouse
- name: Pull Nethermind & Prysm
role: slingnode.ethereum
vars:
clients:
execution: nethermind
consensus: prysm
validator: prysm
- name: Pull Besu & Teku
role: slingnode.ethereum
vars:
clients:
execution: besu
consensus: teku
validator: teku
- name: Pull Erigon & Nimbus
role: slingnode.ethereum
vars:
clients:
execution: erigon
consensus: nimbus
validator: nimbus
- name: Pull Lodestar
role: slingnode.ethereum
vars:
deploy_execution: false
clients:
consensus: lodestar
validator: lodestar
post_tasks:
- name: Stop all containers
ansible.builtin.shell: docker stop $(docker ps -q)
- name: Clear directories
ansible.builtin.shell: |
rm -rf /opt/blockchain/blockchain_dc/*
rm -rf /opt/blockchain/execution/*
rm -rf /opt/blockchain/consensus/*
rm -rf /opt/blockchain/validator/*