File tree 3 files changed +11
-11
lines changed
infrastructure/nomad/playbooks
3 files changed +11
-11
lines changed Original file line number Diff line number Diff line change 425
425
echo "Error: No static nodes found."
426
426
exit 1
427
427
fi
428
- cat "${STATIC_NODES}" | remarshal --if json --of toml - > "{{ dist_dir }}/config_{{ environments[env].version }}.toml"
428
+ cat "${STATIC_NODES}" | remarshal --if json --of toml - > "{{ dist_dir }}/config_{{ env }}-{{ environments[env].version }}.toml"
429
429
args :
430
430
executable : bash
431
431
delegate_to : localhost
538
538
"extradata": "${EXTRADATA}"
539
539
}
540
540
EOH
541
- ) | jq -c '.' > "{{ dist_dir }}/genesis_{{ environments[env].version }}.json"
541
+ ) | jq -c '.' > "{{ dist_dir }}/genesis_{{ env }}-{{ environments[env].version }}.json"
542
542
args :
543
543
executable : bash
544
544
delegate_to : localhost
Original file line number Diff line number Diff line change @@ -75,20 +75,20 @@ job "{{ job.name }}" {
75
75
76
76
{% if env != 'devenv' %}
77
77
artifact {
78
- source = "https://primev-infrastructure-artifacts.s3.us-west-2.amazonaws.com/config_{{ version }}.toml"
78
+ source = "https://primev-infrastructure-artifacts.s3.us-west-2.amazonaws.com/config_{{ env }}-{{ version }}.toml"
79
79
}
80
80
artifact {
81
- source = "https://primev-infrastructure-artifacts.s3.us-west-2.amazonaws.com/genesis_{{ version }}.json"
81
+ source = "https://primev-infrastructure-artifacts.s3.us-west-2.amazonaws.com/genesis_{{ env }}-{{ version }}.json"
82
82
}
83
83
artifact {
84
84
source = "https://primev-infrastructure-artifacts.s3.us-west-2.amazonaws.com/mev-commit-geth_{{ version }}_Linux_{{ target_system_architecture }}.tar.gz"
85
85
}
86
86
{% else %}
87
87
artifact {
88
- source = "http://{{ ansible_facts['default_ipv4'] ['address'] }}:1111/config_{{ version }}.toml"
88
+ source = "http://{{ ansible_facts['default_ipv4'] ['address'] }}:1111/config_{{ env }}-{{ version }}.toml"
89
89
}
90
90
artifact {
91
- source = "http://{{ ansible_facts['default_ipv4'] ['address'] }}:1111/genesis_{{ version }}.json"
91
+ source = "http://{{ ansible_facts['default_ipv4'] ['address'] }}:1111/genesis_{{ env }}-{{ version }}.json"
92
92
}
93
93
artifact {
94
94
source = "http://{{ ansible_facts['default_ipv4'] ['address'] }}:1111/mev-commit-geth_{{ version }}_Linux_{{ target_system_architecture }}.tar.gz"
@@ -100,8 +100,8 @@ job "{{ job.name }}" {
100
100
{%- raw %}
101
101
GETH_DATA_DIR =" /local/data/{% endraw %}{{ job.name }}{% raw %}/node-{{ env " NOMAD_ALLOC_INDEX " }}"
102
102
{% endraw %}
103
- GETH_CONFIG =" local/config_{{ version }}.toml"
104
- GENESIS_L1_PATH =" local/genesis_{{ version }}.json"
103
+ GETH_CONFIG =" local/config_{{ env }}-{{ version }}.toml"
104
+ GENESIS_L1_PATH =" local/genesis_{{ env }}-{{ version }}.json"
105
105
GETH_BIN_PATH =" local/mev-commit-geth"
106
106
NODE_IP =" {{ job.env['ip'] }}"
107
107
{% if job.env[ ' type' ] ! = ' signer' %}
Original file line number Diff line number Diff line change @@ -63,11 +63,11 @@ job "{{ job.name }}" {
63
63
}
64
64
{% if env != 'devenv' %}
65
65
artifact {
66
- source = "https://primev-infrastructure-artifacts.s3.us-west-2.amazonaws.com/genesis_{{ version }}.json"
66
+ source = "https://primev-infrastructure-artifacts.s3.us-west-2.amazonaws.com/genesis_{{ env }}-{{ version }}.json"
67
67
}
68
68
{% else %}
69
69
artifact {
70
- source = "http://{{ ansible_facts['default_ipv4'] ['address'] }}:1111/genesis_{{ version }}.json"
70
+ source = "http://{{ ansible_facts['default_ipv4'] ['address'] }}:1111/genesis_{{ env }}-{{ version }}.json"
71
71
}
72
72
{% endif %}
73
73
@@ -91,7 +91,7 @@ job "{{ job.name }}" {
91
91
.[0].alloc = .[1].alloc
92
92
| .[0].config.chainId = .[1].config.chainId
93
93
| .[0]
94
- ' local/default_genesis.json local/genesis_{{ version }}.json > local/genesis.json
94
+ ' local/default_genesis.json local/genesis_{{ env }}-{{ version }}.json > local/genesis.json
95
95
${GETH_BIN} --datadir local/data init local/genesis.json
96
96
97
97
exec ${GETH_BIN} \
You can’t perform that action at this time.
0 commit comments