Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ services:
fi;
done;

node /usr/src/yarn-project/aztec/dest/bin/index.js start --node --archiver
node /usr/src/yarn-project/aztec/dest/bin/index.js start --node
'
volumes:
- aztec:/var/lib/aztec
Expand Down
1 change: 0 additions & 1 deletion docs/docs-operate/operators/monitoring/troubleshooting.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ services:
/usr/src/yarn-project/aztec/dest/bin/index.js
start
--node
--archiver
--network #release_network
networks:
- aztec
Expand Down
5 changes: 1 addition & 4 deletions docs/docs-operate/operators/reference/cli-reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ tags:
**Configuration notes:**

- The environment variable name corresponding to each flag is shown as $ENV_VAR on the right hand side.
- If two subsystems can contain the same configuration option, only one needs to be provided. For example, `--archiver.blobSinkUrl` and `--sequencer.blobSinkUrl` point to the same value if the node is started with both the `--archiver` and `--sequencer` options.
- If two subsystems can contain the same configuration option, only one needs to be provided. For example, `--archiver.blobSinkUrl` and `--sequencer.blobSinkUrl` point to the same value.

```bash
MISC
Expand Down Expand Up @@ -119,9 +119,6 @@ tags:

ARCHIVER

--archiver
Starts Aztec Archiver with options

--archiver.blobSinkUrl <value> ($BLOB_SINK_URL)
The URL of the blob sink

Expand Down
1 change: 0 additions & 1 deletion docs/docs-operate/operators/setup/running-a-node.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,6 @@ services:
/usr/src/yarn-project/aztec/dest/bin/index.js
start
--node
--archiver
--network #release_network
networks:
- aztec
Expand Down
1 change: 0 additions & 1 deletion docs/docs-operate/operators/setup/running-a-prover.md
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,6 @@ services:
/usr/src/yarn-project/aztec/dest/bin/index.js
start
--prover-node
--archiver
--network #release_network
depends_on:
prover-broker:
Expand Down
1 change: 0 additions & 1 deletion docs/docs-operate/operators/setup/sequencer-setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,6 @@ services:
/usr/src/yarn-project/aztec/dest/bin/index.js
start
--node
--archiver
--sequencer
--network #release_network
networks:
Expand Down
4 changes: 1 addition & 3 deletions spartan/aztec-node/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ node:

startCmd:
- --node
- --archiver

startupProbe:
# -- Period seconds
Expand Down Expand Up @@ -91,7 +90,6 @@ node:

startCmd:
- --node
- --archiver
- --sequencer

startupProbe:
Expand Down Expand Up @@ -144,7 +142,7 @@ service:
| node.l1ConsensusUrls | [] | L1 consensus host URLs (comma-separated list) |
| node.l1ConsensusHostApiKeys | [] | API keys for L1 consensus hosts |
| node.l1ConsensusHostApiKeyHeaders | [] | API key headers for L1 consensus hosts |
| node.startCmd | ["--node", "--archiver"] | Startup command for the node |
| node.startCmd | ["--node"] | Startup command for the node |
| node.remoteUrl.archiver | - | Remote URL for archiver |
| node.remoteUrl.proverBroker | - | Remote URL for prover broker |
| node.remoteUrl.proverCoordinationNodes | [] | Remote URLs for prover coordination nodes |
Expand Down
1 change: 0 additions & 1 deletion spartan/aztec-node/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,6 @@ node:

startCmd:
- --node
- --archiver

image:
repository: ""
Expand Down
1 change: 0 additions & 1 deletion spartan/aztec-prover-stack/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ node:

startCmd:
- --prover-node
- --archiver

configMap:
envEnabled: true
Expand Down
1 change: 0 additions & 1 deletion spartan/aztec-validator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ validator:

startCmd:
- --node
- --archiver
- --sequencer

web3signerUrl: ""
Expand Down
1 change: 0 additions & 1 deletion spartan/terraform/deploy-aztec-infra/values/archive.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,3 @@ node:
OTEL_SERVICE_NAME: "archival-node"
startCmd:
- --node
- --archiver
1 change: 0 additions & 1 deletion spartan/terraform/deploy-aztec-infra/values/blob-sink.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,3 @@ node:

startCmd:
- --node
- --archiver
1 change: 0 additions & 1 deletion spartan/terraform/deploy-aztec-infra/values/full-node.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,3 @@ node:

startCmd:
- --node
- --archiver
1 change: 0 additions & 1 deletion spartan/terraform/deploy-aztec-infra/values/rpc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,3 @@ node:

startCmd:
- --node
- --archiver
6 changes: 1 addition & 5 deletions yarn-project/aztec/src/cli/aztec_start_options.ts
Original file line number Diff line number Diff line change
Expand Up @@ -268,11 +268,7 @@ export const aztecStartOptions: { [key: string]: AztecStartOption[] } = {
defaultValue: undefined,
env: undefined,
},
...getOptions(
'proverBroker',
// filter out archiver options from prover node options as they're passed separately in --archiver
proverBrokerConfigMappings,
),
...getOptions('proverBroker', proverBrokerConfigMappings),
],
'PROVER AGENT': [
{
Expand Down
8 changes: 3 additions & 5 deletions yarn-project/aztec/src/cli/cmds/start_bot.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,9 @@ export async function startBot(
services: NamespacedApiHandlers,
userLog: LogFn,
) {
const { proverNode, archiver, sequencer, p2pBootstrap, txe, prover } = options;
if (proverNode || archiver || sequencer || p2pBootstrap || txe || prover) {
userLog(
`Starting a bot with --prover-node, --prover, --archiver, --sequencer, --p2p-bootstrap, or --txe is not supported.`,
);
const { proverNode, sequencer, p2pBootstrap, txe, prover } = options;
if (proverNode || sequencer || p2pBootstrap || txe || prover) {
userLog(`Starting a bot with --prover-node, --prover, --sequencer, --p2p-bootstrap, or --txe is not supported.`);
process.exit(1);
}

Expand Down
Loading