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 dd88e3d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 10 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
7 changes: 1 addition & 6 deletions yarn-project/Earthfile
Original file line number Diff line number Diff line change
Expand Up @@ -206,12 +206,7 @@ end-to-end-base:
&& apt-get install -y wget gnupg \
&& wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - \
&& echo "deb [arch=$(dpkg --print-architecture)] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google-chrome.list \
&& wget -O kubectl "https://dl.k8s.io/release/$(wget -qO- https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl" \
&& chmod +x kubectl && mv kubectl /usr/local/bin/kubectl \
&& wget -O ./kind https://kind.sigs.k8s.io/dl/v0.23.0/kind-$(uname)-amd64 \
&& chmod +x ./kind && mv ./kind /usr/local/bin/kind \
&& wget -O - https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | bash \
&& apt update && apt install wget chromium nodejs netcat-openbsd -y \
&& apt update && apt install curl chromium nodejs netcat-openbsd -y \
&& rm -rf /var/lib/apt/lists/*
ENV CHROME_BIN="/usr/bin/chromium"
ENV PATH=/opt/foundry/bin:$PATH
Expand Down

0 comments on commit dd88e3d

Please sign in to comment.