Skip to content

Commit

Permalink
bugfix helm -> fixed slices escape chars
Browse files Browse the repository at this point in the history
  • Loading branch information
hubchub committed Jun 26, 2023
1 parent 1240a4a commit 980479a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion helm/templates/_statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
- name: NETWORK
value: {{ .Values.goQuai.network }}
- name: SLICES
value: {{ .Values.goQuai.slices }}
value: {{ squote .Values.goQuai.slices }}
- name: VERBOSITY
value: {{ quote .Values.goQuai.verbosity }}
ports:
Expand Down
2 changes: 1 addition & 1 deletion helm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ goQuai:
env: quai-dev
replicas: 1
network: garden
slices: '"[0 0],[0 1],[0 2],[1 0],[1 1],[1 2],[2 0],[2 1],[2 2]"'
slices: "[0 0],[0 1],[0 2],[1 0],[1 1],[1 2],[2 0],[2 1],[2 2]"
verbosity: 4
chains:
- name: prime
Expand Down

0 comments on commit 980479a

Please sign in to comment.