Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Configuration updates for exp-1 #10840

Merged
merged 11 commits into from
Dec 19, 2024
Merged
2 changes: 0 additions & 2 deletions spartan/aztec-network/templates/boot-node.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 0 additions & 2 deletions spartan/aztec-network/templates/prover-node.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 0 additions & 2 deletions spartan/aztec-network/templates/validator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
22 changes: 11 additions & 11 deletions spartan/aztec-network/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand All @@ -142,7 +139,7 @@ proverNode:
storage: "8Gi"

pxe:
logLevel: "debug"
logLevel: "debug; info: aztec:simulator, json-rpc"
replicas: 1
service:
nodePort: 8081
Expand All @@ -160,7 +157,7 @@ pxe:
bot:
enabled: true
nodeUrl: ""
logLevel: "debug"
logLevel: "debug; info: aztec:simulator, json-rpc"
replicas: 1
botPrivateKey: "0xcafe"
txIntervalSeconds: 24
Expand Down Expand Up @@ -221,7 +218,7 @@ proverAgent:
proofTypes: ["foo", "bar", "baz"]
gke:
spotEnabled: false
logLevel: "debug"
logLevel: "debug; info: aztec:simulator, json-rpc"
bb:
hardwareConcurrency: ""
nodeSelector: {}
Expand All @@ -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:
Expand Down
29 changes: 26 additions & 3 deletions spartan/aztec-network/values/exp-1.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,8 @@ validator:
- 0x3c3E2E178C69D4baD964568415a0f0c84fd6320A
resources:
requests:
memory: "512Mi"
memory: "8Gi"
cpu: "3.5"
validator:
disabled: false
sequencer:
Expand All @@ -129,16 +130,38 @@ 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

jobs:
deployL1Verifier:
enable: false

ethereum:
resources:
requests:
memory: "8Gi"
cpu: "3.5"
Loading