Skip to content

Commit 80f0af7

Browse files
authored
[aztec-prover] fix: args and default envs (#143)
* fix: args * fix: bump version * feat: comment default envs * fix: example * docs: update readme
1 parent 3992ec9 commit 80f0af7

File tree

3 files changed

+44
-48
lines changed

3 files changed

+44
-48
lines changed

charts/aztec-prover/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: 0.1.0
18+
version: 0.1.1
1919
maintainers:
2020
- name: 0xDones

charts/aztec-prover/README.md

+15-21
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,15 @@
11
# aztec-prover
22

3-
![Version: 0.1.0](https://img.shields.io/badge/Version-0.1.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
3+
![Version: 0.1.1](https://img.shields.io/badge/Version-0.1.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
44

55
A Helm chart for Kubernetes
66

7+
## Maintainers
8+
9+
| Name | Email | Url |
10+
| ---- | ------ | --- |
11+
| 0xDones | | |
12+
713
## Values
814

915
| Key | Type | Default | Description |
@@ -32,35 +38,23 @@ A Helm chart for Kubernetes
3238
| nameOverride | string | `""` | |
3339
| nodeSelector | object | `{}` | |
3440
| persistence.accessModes[0] | string | `"ReadWriteOnce"` | |
35-
| persistence.enabled | bool | `false` | |
41+
| persistence.enabled | bool | `true` | |
3642
| persistence.mountPath | string | `"/data"` | |
3743
| persistence.size | string | `"50Gi"` | |
3844
| persistence.storageClass | string | `""` | |
3945
| podAnnotations | object | `{}` | |
4046
| podLabels | object | `{}` | |
4147
| podSecurityContext | object | `{}` | |
42-
| proverAgent.args[0] | string | `"start --prover"` | |
48+
| proverAgent.args[0] | string | `"start"` | |
49+
| proverAgent.args[1] | string | `"--prover"` | |
4350
| proverAgent.enabled | bool | `false` | |
44-
| proverAgent.env.AZTEC_NODE_URL | string | `"http://aztec-prover-node:8080"` | |
45-
| proverAgent.env.IS_DEV_NET | string | `"true"` | |
46-
| proverAgent.env.LOG_JSON | string | `"false"` | |
47-
| proverAgent.env.LOG_LEVEL | string | `"debug"` | |
48-
| proverAgent.env.OTEL_EXPORTER_OTLP_ENDPOINT | string | `""` | |
49-
| proverAgent.env.PROVER_AGENTS | string | `"1"` | |
50-
| proverAgent.env.PROVER_REAL_PROOFS | string | `"true"` | |
51+
| proverAgent.env | object | `{}` | |
5152
| proverAgent.name | string | `"agent"` | |
52-
| proverNode.args[0] | string | `"start --prover-node --archiver"` | |
53+
| proverNode.args[0] | string | `"start"` | |
54+
| proverNode.args[1] | string | `"--prover-node"` | |
55+
| proverNode.args[2] | string | `"--archiver"` | |
5356
| proverNode.enabled | bool | `true` | |
54-
| proverNode.env.AZTEC_PORT | string | `"8080"` | |
55-
| proverNode.env.DATA_DIRECTORY | string | `"/data"` | |
56-
| proverNode.env.ETHEREUM_HOST | string | `"https://provernet-mainnet-fork.aztec.network:8545/$APIKEY"` | |
57-
| proverNode.env.IS_DEV_NET | string | `"true"` | |
58-
| proverNode.env.L1_CHAIN_ID | string | `"677692"` | |
59-
| proverNode.env.LOG_JSON | string | `"false"` | |
60-
| proverNode.env.LOG_LEVEL | string | `"debug"` | |
61-
| proverNode.env.OTEL_EXPORTER_OTLP_ENDPOINT | string | `""` | |
62-
| proverNode.env.PROVER_REAL_PROOFS | string | `"true"` | |
63-
| proverNode.env.TX_PROVIDER_NODE_URL | string | `"https://api.aztec.network/provernet/aztec-node-1/$APIKEY"` | |
57+
| proverNode.env | object | `{}` | |
6458
| proverNode.name | string | `"node"` | |
6559
| readinessProbe.httpGet.path | string | `"/status"` | |
6660
| readinessProbe.httpGet.port | string | `"http"` | |

charts/aztec-prover/values.yaml

+28-26
Original file line numberDiff line numberDiff line change
@@ -18,67 +18,69 @@ proverNode:
1818
enabled: true
1919
name: node
2020
args:
21-
- "start --prover-node --archiver"
21+
- "start"
22+
- "--prover-node"
23+
- "--archiver"
2224
env:
25+
{}
2326
# URL to an Ethereum node.
24-
ETHEREUM_HOST: "https://provernet-mainnet-fork.aztec.network:8545/$APIKEY"
27+
# ETHEREUM_HOST: "https://provernet-mainnet-fork.aztec.network:8545/$APIKEY"
2528
# Chain ID for the L1 Ethereum chain.
26-
L1_CHAIN_ID: "677692"
29+
# L1_CHAIN_ID: "677692"
2730
# Local folder where archive and world state data is stored.
28-
DATA_DIRECTORY: "/data"
31+
# DATA_DIRECTORY: "/data"
2932
# Port where the JSON-RPC APIs will be served.
30-
AZTEC_PORT: "8080"
33+
# AZTEC_PORT: "8080"
3134
# URL to an Aztec node that acts as transaction provider and as source of truth for the L1 contract addresses.
32-
TX_PROVIDER_NODE_URL: "https://api.aztec.network/provernet/aztec-node-1/$APIKEY"
33-
# Private key used for publishing proofs to L1. Ensure it corresponds to an address with ETH to pay for gas.
34-
# PROVER_PUBLISHER_PRIVATE_KEY: ""
35+
# TX_PROVIDER_NODE_URL: "https://api.aztec.network/provernet/aztec-node-1/$APIKEY"
3536
####################
3637
# Common Envs
3738
####################
3839
# Whether to generate actual proofs, as opposed to only simulating the circuit and outputting fake proofs. Set to true for the scope of the integration.
39-
PROVER_REAL_PROOFS: "true"
40+
# PROVER_REAL_PROOFS: "true"
4041
# Whether to skip consensus checks. Set to true for the scope of the integration.
41-
IS_DEV_NET: "true"
42+
# IS_DEV_NET: "true"
4243
# One of debug, verbose, info, warn, or error.
43-
LOG_LEVEL: "debug"
44+
# LOG_LEVEL: "debug"
4445
# Set to true to output logs in ndJSON format (unreleased).
45-
LOG_JSON: "false"
46+
# LOG_JSON: "false"
4647
# Optional URL for pushing telemetry data to a remote OpenTelemetry data collector.
47-
OTEL_EXPORTER_OTLP_ENDPOINT: ""
48+
# OTEL_EXPORTER_OTLP_ENDPOINT: ""
4849

4950
proverAgent:
5051
enabled: false
5152
name: agent
5253
args:
53-
- "start --prover"
54+
- "start"
55+
- "--prover"
5456
env:
57+
{}
5558
# URL to the prover node that acts as a proving job source.
56-
AZTEC_NODE_URL: "http://aztec-prover-node:8080"
59+
# AZTEC_NODE_URL: "http://aztec-prover-node:8080"
5760
# Maximum concurrency for this given prover agent. Defaults to 1.
58-
PROVER_AGENTS: "1"
59-
####################
61+
# PROVER_AGENTS: "1"
62+
# ###################
6063
# Common Envs
61-
####################
64+
# ###################
6265
# Whether to generate actual proofs, as opposed to only simulating the circuit and outputting fake proofs. Set to true for the scope of the integration.
63-
PROVER_REAL_PROOFS: "true"
66+
# PROVER_REAL_PROOFS: "true"
6467
# Whether to skip consensus checks. Set to true for the scope of the integration.
65-
IS_DEV_NET: "true"
68+
# IS_DEV_NET: "true"
6669
# One of debug, verbose, info, warn, or error.
67-
LOG_LEVEL: "debug"
70+
# LOG_LEVEL: "debug"
6871
# Set to true to output logs in ndJSON format (unreleased).
69-
LOG_JSON: "false"
72+
# LOG_JSON: "false"
7073
# Optional URL for pushing telemetry data to a remote OpenTelemetry data collector.
71-
OTEL_EXPORTER_OTLP_ENDPOINT: ""
74+
# OTEL_EXPORTER_OTLP_ENDPOINT: ""
7275

7376
extraObjects:
7477
[]
7578
# - apiVersion: v1
7679
# kind: Secret
7780
# metadata:
7881
# name: '{{ include "aztec-prover.fullname" . }}'
79-
# spec:
80-
# stringData:
81-
# PROVER_PUBLISHER_PRIVATE_KEY: "0x1234567890abcdef"
82+
# stringData:
83+
# PROVER_PUBLISHER_PRIVATE_KEY: "<PRIVATE KEY>"
8284

8385
envFrom:
8486
[]

0 commit comments

Comments
 (0)