Skip to content

Commit ce282e8

Browse files
committed
refactor: include env in the genesis and config file name (#563)
1 parent f4742e2 commit ce282e8

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

infrastructure/nomad/playbooks/deploy.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -425,7 +425,7 @@
425425
echo "Error: No static nodes found."
426426
exit 1
427427
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"
429429
args:
430430
executable: bash
431431
delegate_to: localhost
@@ -538,7 +538,7 @@
538538
"extradata": "${EXTRADATA}"
539539
}
540540
EOH
541-
) | jq -c '.' > "{{ dist_dir }}/genesis_{{ environments[env].version }}.json"
541+
) | jq -c '.' > "{{ dist_dir }}/genesis_{{ env }}-{{ environments[env].version }}.json"
542542
args:
543543
executable: bash
544544
delegate_to: localhost

infrastructure/nomad/playbooks/templates/jobs/mev-commit-geth.nomad.j2

+6-6
Original file line numberDiff line numberDiff line change
@@ -75,20 +75,20 @@ job "{{ job.name }}" {
7575

7676
{% if env != 'devenv' %}
7777
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"
7979
}
8080
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"
8282
}
8383
artifact {
8484
source = "https://primev-infrastructure-artifacts.s3.us-west-2.amazonaws.com/mev-commit-geth_{{ version }}_Linux_{{ target_system_architecture }}.tar.gz"
8585
}
8686
{% else %}
8787
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"
8989
}
9090
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"
9292
}
9393
artifact {
9494
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 }}" {
100100
{%- raw %}
101101
GETH_DATA_DIR="/local/data/{% endraw %}{{ job.name }}{% raw %}/node-{{ env "NOMAD_ALLOC_INDEX" }}"
102102
{% 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"
105105
GETH_BIN_PATH="local/mev-commit-geth"
106106
NODE_IP="{{ job.env['ip'] }}"
107107
{% if job.env['type'] != 'signer' %}

infrastructure/nomad/playbooks/templates/jobs/mock-l1.nomad.j2

+3-3
Original file line numberDiff line numberDiff line change
@@ -63,11 +63,11 @@ job "{{ job.name }}" {
6363
}
6464
{% if env != 'devenv' %}
6565
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"
6767
}
6868
{% else %}
6969
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"
7171
}
7272
{% endif %}
7373

@@ -91,7 +91,7 @@ job "{{ job.name }}" {
9191
.[0].alloc = .[1].alloc
9292
| .[0].config.chainId = .[1].config.chainId
9393
| .[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
9595
${GETH_BIN} --datadir local/data init local/genesis.json
9696

9797
exec ${GETH_BIN} \

0 commit comments

Comments
 (0)