diff --git a/spartan/aztec-network/templates/boot-node.yaml b/spartan/aztec-network/templates/boot-node.yaml index 62dbcab873c..f6f52b4b9b2 100644 --- a/spartan/aztec-network/templates/boot-node.yaml +++ b/spartan/aztec-network/templates/boot-node.yaml @@ -175,8 +175,6 @@ spec: value: "{{ .Values.bootNode.logLevel }}" - name: LOG_JSON value: "1" - - name: DEBUG - value: "{{ .Values.bootNode.debug }}" - name: P2P_ENABLED value: "{{ .Values.bootNode.p2p.enabled }}" - name: COINBASE diff --git a/spartan/aztec-network/templates/prover-node.yaml b/spartan/aztec-network/templates/prover-node.yaml index 3cdfb76721c..908c30902bd 100644 --- a/spartan/aztec-network/templates/prover-node.yaml +++ b/spartan/aztec-network/templates/prover-node.yaml @@ -125,8 +125,6 @@ spec: value: "{{ .Values.proverNode.logLevel }}" - name: LOG_JSON value: "1" - - name: DEBUG - value: "{{ .Values.proverNode.debug }}" - name: PROVER_REAL_PROOFS value: "{{ .Values.aztec.realProofs }}" - name: PROVER_AGENT_COUNT diff --git a/spartan/aztec-network/templates/validator.yaml b/spartan/aztec-network/templates/validator.yaml index 7d7c131b176..b866f154ef7 100644 --- a/spartan/aztec-network/templates/validator.yaml +++ b/spartan/aztec-network/templates/validator.yaml @@ -162,8 +162,6 @@ spec: value: "{{ .Values.validator.logLevel }}" - name: LOG_JSON value: "1" - - name: DEBUG - value: "{{ .Values.validator.debug }}" - name: P2P_ENABLED value: "{{ .Values.validator.p2p.enabled }}" - name: VALIDATOR_DISABLED diff --git a/spartan/aztec-network/values.yaml b/spartan/aztec-network/values.yaml index dd218203c29..8c58606c7cd 100644 --- a/spartan/aztec-network/values.yaml +++ b/spartan/aztec-network/values.yaml @@ -45,8 +45,7 @@ bootNode: p2pTcpPort: 40400 p2pUdpPort: 40400 nodePort: 8080 - logLevel: "debug" - debug: "" + logLevel: "debug; info: aztec:simulator, json-rpc" coinbaseAddress: "0xaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" sequencer: maxSecondsBetweenBlocks: 0 @@ -90,8 +89,7 @@ validator: p2pTcpPort: 40400 p2pUdpPort: 40400 nodePort: 8080 - logLevel: "debug" - debug: "" + logLevel: "debug; info: aztec:simulator, json-rpc" sequencer: maxSecondsBetweenBlocks: 0 minTxsPerBlock: 1 @@ -123,8 +121,7 @@ proverNode: p2pTcpPort: 40400 p2pUdpPort: 40400 nodePort: 8080 - logLevel: "debug" - debug: "" + logLevel: "debug; info: aztec:simulator, json-rpc" proverAgent: count: 0 pollIntervalMs: 1000 @@ -142,7 +139,7 @@ proverNode: storage: "8Gi" pxe: - logLevel: "debug" + logLevel: "debug; info: aztec:simulator, json-rpc" replicas: 1 service: nodePort: 8081 @@ -160,7 +157,7 @@ pxe: bot: enabled: true nodeUrl: "" - logLevel: "debug" + logLevel: "debug; info: aztec:simulator, json-rpc" replicas: 1 botPrivateKey: "0xcafe" txIntervalSeconds: 24 @@ -221,7 +218,7 @@ proverAgent: proofTypes: ["foo", "bar", "baz"] gke: spotEnabled: false - logLevel: "debug" + logLevel: "debug; info: aztec:simulator, json-rpc" bb: hardwareConcurrency: "" nodeSelector: {} @@ -236,9 +233,12 @@ proverBroker: pollIntervalMs: 1000 jobMaxRetries: 3 dataDirectory: "" - logLevel: "debug" + logLevel: "debug; info: aztec:simulator, json-rpc" nodeSelector: {} - resources: {} + resources: + requests: + memory: "2Gi" + cpu: "200m" jobs: deployL1Verifier: diff --git a/spartan/aztec-network/values/exp-1.yaml b/spartan/aztec-network/values/exp-1.yaml index 05247cd7722..0f086a93c65 100644 --- a/spartan/aztec-network/values/exp-1.yaml +++ b/spartan/aztec-network/values/exp-1.yaml @@ -117,7 +117,8 @@ validator: - 0x3c3E2E178C69D4baD964568415a0f0c84fd6320A resources: requests: - memory: "512Mi" + memory: "8Gi" + cpu: "3.5" validator: disabled: false sequencer: @@ -129,12 +130,28 @@ bootNode: storageSize: "100Gi" validator: disabled: true + resources: + requests: + memory: "8Gi" + cpu: "3.5" proverAgent: - replicas: 4 + replicas: 8 + +proverBroker: + resources: + requests: + memory: "8Gi" + cpu: "3.5" + +proverNode: + resources: + requests: + memory: "8Gi" + cpu: "3.5" bot: - replicas: 6 + replicas: 10 followChain: "NONE" enabled: true txIntervalSeconds: 1 @@ -142,3 +159,9 @@ bot: jobs: deployL1Verifier: enable: false + +ethereum: + resources: + requests: + memory: "8Gi" + cpu: "3.5"