Skip to content

Commit

Permalink
[op-node] fix entrypoint
Browse files Browse the repository at this point in the history
  • Loading branch information
VladStarr committed Jan 14, 2024
1 parent 1fc57f3 commit 38fd889
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions dysnix/op-node/templates/statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,12 @@ spec:
securityContext:
{{- toYaml . | nindent 10 }}
{{- end }}
{{- with .Values.command }}
{{- if .Values.command }}
command:
{{- tpl (toYaml .) $ | nindent 10 }}
{{- tpl (toYaml .Values.command) $ | nindent 10 }}
{{- else }}
command:
- op-node
{{- end }}
args:
- --l1={{ .Values.config.l1.url }}
Expand Down

0 comments on commit 38fd889

Please sign in to comment.