Skip to content

Commit

Permalink
use specified service url
Browse files Browse the repository at this point in the history
  • Loading branch information
puppetninja committed Sep 16, 2024
1 parent d9b0c8a commit 138c9f6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion charts/tezos/scripts/smart-rollup-observer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ $TEZ_BIN/octez-smart-rollup-node init observer \
--force

CMD="$TEZ_BIN/octez-smart-rollup-node \
--endpoint http://tezos-node-rpc:8732 \
--endpoint ${NODE_RPC_URL} \
run \
--data-dir ${ROLLUP_DATA_DIR} \
--acl-override allow-all \
Expand Down
2 changes: 1 addition & 1 deletion charts/tezos/scripts/smart-rollup-operator.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ $TEZ_BIN/octez-smart-rollup-node \
--force

CMD="$TEZ_BIN/octez-smart-rollup-node \
--endpoint http://tezos-node-rpc:8732 \
--endpoint ${NODE_RPC_URL} \
-d $CLIENT_DIR \
run \
--data-dir ${ROLLUP_DATA_DIR}"
Expand Down
2 changes: 2 additions & 0 deletions charts/tezos/templates/octez-rollup-node.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,8 @@ spec:
{{- $cleanKey := regexReplaceAll "[0-9]+$" $key "" }}
{{ $cleanKey }}:{{ $value }}
{{- end }}
- name: NODE_RPC_URL
value: {{ $v.node_rpc_url }}
{{- if $v.resources }}
{{- with $v.resources }}
resources:
Expand Down

0 comments on commit 138c9f6

Please sign in to comment.