Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
puppetninja committed Jul 25, 2024
1 parent 93a5e31 commit c287b20
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions charts/tezos/templates/octez-rollup-node.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{{- range $k, $v := .Values.smartRollupNodes }}

{{- if $v.evm | default false }}
{{- if $v.evm }}
apiVersion: v1
kind: Service
metadata:
Expand Down Expand Up @@ -76,7 +76,7 @@ spec:
{{- $cleanKey := regexReplaceAll "[0-9]+$" $key "" }}
{{ $cleanKey }}:{{ $value }}
{{- end }}
{{- if $v.evm | default false }}
{{- if $v.evm }}
- name: octez-evm-{{ $v.evm.mode }}
image: "{{ $v.evm.image.name | default $.Values.images.octez }}"
imagePullPolicy: {{ $v.evm.image.pullPolicy | default $.Values.images_pull_policy }}
Expand Down Expand Up @@ -131,7 +131,7 @@ spec:
env:
- name: NODE_RPC_URL
value: { { $v.node_rpc_url } }
{{- if $v.evm | default false }}
{{- if $v.evm }}
- name: evm-state-importer
image: "{{ $v.evm.image.name | default $.Values.images.octez }}"
imagePullPolicy: {{ $v.evm.image.pullPolicy | default $.Values.images_pull_policy }}
Expand Down

0 comments on commit c287b20

Please sign in to comment.