Skip to content

Commit

Permalink
updated helm chart run command
Browse files Browse the repository at this point in the history
  • Loading branch information
hubchub committed Jun 26, 2023
1 parent 037ee17 commit 1240a4a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 3 additions & 1 deletion helm/templates/_statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
- image: {{ .Values.goQuai.image.name -}}:{{- .Values.goQuai.image.version }}
imagePullPolicy: Always
name: prime-go-quai
command: ["./build/bin/go-quai", --$(NETWORK), "--slices", $(SLICES)", "--syncmode", "full", "--http", "--http.vhosts=*", "--ws", <MINER_ETHERBASE>, "--http.addr", "0.0.0.0", "--http.api", "eth,net,web3,quai,txpool,debug", "--ws.addr", "0.0.0.0", "--ws.api", "eth,net,web3,quai,txpool,debug", "--port", $(TCP_PORT), "--http.port", $(HTTP_PORT), "--ws.port", $(WS_PORT), "--ws.origins=*", "--http.corsdomain=*", "--gcmode", "archive", "--nonce", $(NONCE), <REGION>, <ZONE>, <SUB>, <DOM>]
command: ["./build/bin/go-quai", --$(NETWORK), "--verbosity", $(VERBOSITY), "--slices", $(SLICES), "--syncmode", "full", "--http", "--http.vhosts=*", "--ws", <MINER_ETHERBASE>, "--http.addr", "0.0.0.0", "--http.api", "eth,net,web3,quai,txpool,debug", "--ws.addr", "0.0.0.0", "--ws.api", "eth,net,web3,quai,txpool,debug", "--port", $(TCP_PORT), "--http.port", $(HTTP_PORT), "--ws.port", $(WS_PORT), "--ws.origins=*", "--http.corsdomain=*", "--gcmode", "archive", "--nonce", $(NONCE), <REGION>, <ZONE>, <SUB>, <DOM>]
env:
- name: COINBASE_ADDR
valueFrom:
Expand All @@ -38,6 +38,8 @@
value: {{ .Values.goQuai.network }}
- name: SLICES
value: {{ .Values.goQuai.slices }}
- name: VERBOSITY
value: {{ quote .Values.goQuai.verbosity }}
ports:
- containerPort: <HTTP>
name: prime-http
Expand Down
1 change: 1 addition & 0 deletions helm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ goQuai:
replicas: 1
network: garden
slices: '"[0 0],[0 1],[0 2],[1 0],[1 1],[1 2],[2 0],[2 1],[2 2]"'
verbosity: 4
chains:
- name: prime
ports:
Expand Down

0 comments on commit 1240a4a

Please sign in to comment.