Skip to content

Commit

Permalink
review feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
just-mitch committed Aug 20, 2024
1 parent 81816a5 commit 7f852cd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion helm-charts/aztec-network/templates/anvil.deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ spec:
command: ["/bin/sh", "-c"]
args:
- |
ARGS="";
[ -n "$FORK_URL" ] && ARGS="$ARGS --fork-url $FORK_URL";
[ -n "$FORK_BLOCK_NUMBER" ] && ARGS="$ARGS --fork-block-number $FORK_BLOCK_NUMBER";
echo anvil -p $ANVIL_PORT --host 0.0.0.0 --chain-id {{ .Values.ethereum.chainId }} $ARGS;
Expand All @@ -38,6 +37,8 @@ spec:
value: {{ .Values.ethereum.forkBlockNumber | quote }}
- name: ANVIL_PORT
value: {{ .Values.ethereum.service.port | quote }}
- name: ARGS
value: {{ .Values.ethereum.args | quote }}
readinessProbe:
exec:
command:
Expand Down
1 change: 1 addition & 0 deletions helm-charts/aztec-network/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ ethereum:
chainId: 31337
forkUrl: ""
forkBlockNumber: ""
args: ""
service:
type: ClusterIP
port: 8545
Expand Down

0 comments on commit 7f852cd

Please sign in to comment.