Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
7ac9870
feat: init aztec-node
bussyjd Oct 7, 2025
6f3b3d0
feat: integrate aztec-node chart into repository
bussyjd Oct 7, 2025
c273faa
fix(aztec-node): remove invalid role references in main statefulset
bussyjd Oct 7, 2025
f3cd136
fix(aztec-node): fix volume indentation in prover-node statefulset
bussyjd Oct 7, 2025
01db569
chore: cleanup
bussyjd Oct 7, 2025
55fd125
chore: update README version badges for charon charts
bussyjd Oct 7, 2025
fa5bb0b
feat: add helm-lint pre-commit hook
bussyjd Oct 7, 2025
b4857a5
feat(ci): add CI values file for aztec-node chart
bussyjd Oct 7, 2025
01a7b31
docs(aztec-node): update README with current values.yaml defaults
bussyjd Oct 7, 2025
fecd1b5
fix(aztec-node): configure hostNetwork as default with NodePort fallback
bussyjd Oct 7, 2025
adb40d4
fix(aztec-node): correct StatefulSet serviceName reference
bussyjd Oct 7, 2025
4c8ef2e
docs(aztec-node): sync README with values.yaml L1 URL defaults
bussyjd Oct 7, 2025
4746dd7
docs: clarify helm-docs pre-commit hook behavior
bussyjd Oct 7, 2025
0f01e6c
fix(ci): enable aztec-node chart linting
bussyjd Oct 7, 2025
2c16279
chore: cleanup
bussyjd Oct 7, 2025
4d8a07a
fix(ci): prevent helm-lint from failing on arithmetic operations
bussyjd Oct 7, 2025
0f86c18
feat!: implement standardized service naming convention
bussyjd Oct 7, 2025
908109c
docs(aztec-node): fix resource naming in README examples
bussyjd Oct 7, 2025
94f7c70
Merge branch 'main' into feature/aztec-node
bussyjd Oct 9, 2025
0e5ddbf
chore: unskip aztec-node
bussyjd Oct 9, 2025
9f1c6ca
Merge branch 'main' into feature/aztec-node
bussyjd Oct 10, 2025
6377741
feat: staging-public network
bussyjd Nov 5, 2025
5e1175a
chore: fix linting
bussyjd Nov 5, 2025
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
51 changes: 51 additions & 0 deletions .github/helm-ci-values/values-aztec-node.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
# CI test values for aztec-node chart
# Minimal configuration for fullnode role

# Deployment role
role: fullnode

# Network to connect to
network: testnet

# Container image configuration
image:
repository: aztecprotocol/aztec
tag: latest
pullPolicy: IfNotPresent

# Node configuration
node:
replicas: 1
logLevel: "info"

# L1 Ethereum configuration (mock URLs for CI)
l1ExecutionUrls:
- "http://mock-l1-execution:8545"
l1ConsensusUrls:
- "http://mock-l1-consensus:5052"

# Resource allocation (minimal for CI)
resources:
requests:
cpu: "100m"
memory: "256Mi"
limits:
cpu: "200m"
memory: "512Mi"

# Persistence disabled for CI
persistence:
enabled: false

# Service configuration
service:
httpPort: 8080

p2p:
enabled: true
nodePortEnabled: false
port: 40400

admin:
enabled: true
port: 8081
15 changes: 14 additions & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,25 @@ repos:
- repo: local
hooks:
- id: helm-docs
name: Helm Docs
name: Helm Docs (auto-regenerates README files)
args: []
description: >
Uses 'helm-docs' to create documentation from the Helm chart's 'values.yaml' file,
and inserts the result into a corresponding 'README.md' file.
If this hook modifies files, stage the changes (git add) and commit again.
entry: jnorwood/helm-docs:v1.11.0
files: (README\.md\.gotmpl|(Chart|requirements|values)\.yaml)$
language: docker_image
require_serial: true

- id: helm-lint
name: Helm Lint
description: >
Lint Helm charts using the same logic as CI workflow.
Skips charts listed in .github/helm-ci-values/skip-charts.txt.
Uses CI-specific values files when available.
entry: bash -c 'scripts/helm-lint-pre-commit.sh'
language: system
files: ^charts/.+\.(yaml|yml|tpl)$
pass_filenames: false
require_serial: true
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ This repo contains Helm Charts for deploying Obol Distributed Validator [middlew
- [`charon-cluster`](charts/charon-cluster) - A chart for running a number of charon instances.
- [`charon-relay`](charts/charon-relay) - A chart for running a charon [relay](https://docs.obol.org/learn/charon/charon-cli-reference#host-a-relay).
- [`dv-pod`](charts/dv-pod) - A chart for running a Charon client + a Validator client, with automatic DKG completion as a feature.
- [`obol-app`](charts/obol-app) - A chart for running arbitrary docker images in the [Obol Stack](https://obol.org/stack).
- [`obol-app`](charts/obol-app) - A chart for running arbitrary docker images in the [Obol Stack](https://obol.org/stack).
- [`aztec-node`](charts/aztec-node) - Aztec network node deployment (Full Node, Sequencer, or Prover)

## Before you begin

Expand Down
6 changes: 6 additions & 0 deletions charts/aztec-node/Chart.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
apiVersion: v2
name: aztec-node
description: A Helm chart for deploying an Aztec node
type: application
version: 0.1.0
appVersion: "2.0.2"
Loading