Skip to content

Commit

Permalink
fix: remove prover start option. template ports
Browse files Browse the repository at this point in the history
  • Loading branch information
just-mitch committed Aug 23, 2024
1 parent 44e6be9 commit bc53f9d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ spec:
[
"/bin/bash",
"-c",
"source /shared/contracts.env && env && node --no-warnings /usr/src/yarn-project/aztec/dest/bin/index.js start --node p2pEnabled=true --archiver --sequencer --prover --pxe",
"source /shared/contracts.env && env && node --no-warnings /usr/src/yarn-project/aztec/dest/bin/index.js start --node --archiver --sequencer",
]
volumeMounts:
- name: shared-volume
Expand Down Expand Up @@ -91,8 +91,8 @@ spec:
- name: VALIDATOR_PRIVATE_KEY
value: "0x47e179ec197488593b187f80a00eb0da91f1b9d0b13f8733639f19c30a34926a"
ports:
- containerPort: 8080
- containerPort: 40400
- containerPort: "{{ .Values.bootNode.service.nodePort }}"
- containerPort: "{{ .Values.bootNode.service.p2pPort }}"
resources:
{{- toYaml .Values.bootNode.resources | nindent 12 }}
volumes:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ spec:
command:
- "/bin/bash"
- "-c"
- "source /shared/contracts.env && env && node --no-warnings /usr/src/yarn-project/aztec/dest/bin/index.js start --node --archiver --sequencer --prover"
- "source /shared/contracts.env && env && node --no-warnings /usr/src/yarn-project/aztec/dest/bin/index.js start --node --archiver --sequencer"
volumeMounts:
- name: shared-volume
mountPath: /shared
Expand Down

0 comments on commit bc53f9d

Please sign in to comment.