Skip to content

Commit

Permalink
refactor: aztec validator -> sequencer (#36)
Browse files Browse the repository at this point in the history
  • Loading branch information
0xDones authored Dec 10, 2024
1 parent 21848a0 commit cb44fd6
Show file tree
Hide file tree
Showing 16 changed files with 11 additions and 9 deletions.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
apiVersion: v2
name: aztec-validator
description: A Helm chart for deploying an Aztec validator
name: aztec-sequencer
description: A Helm chart for deploying an Aztec sequencer
type: application
home: https://docs.aztec.network/
version: 0.0.2
version: 0.0.1
maintainers:
- name: 0xDones
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
# aztec-validator
# aztec-sequencer

![Version: 0.0.2](https://img.shields.io/badge/Version-0.0.2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
![Version: 0.0.1](https://img.shields.io/badge/Version-0.0.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)

A Helm chart for deploying an Aztec validator
A Helm chart for deploying an Aztec sequencer

**Homepage:** <https://docs.aztec.network/>

## Installation

```bash
helm repo add nethermind https://nethermindeth.github.io/helm-charts
helm install aztec-validator nethermind/aztec-validator
helm install aztec-sequencer nethermind/aztec-sequencer
```

## Maintainers
Expand Down Expand Up @@ -107,6 +107,7 @@ helm install aztec-validator nethermind/aztec-validator
| securityContext.runAsNonRoot | bool | `true` | |
| securityContext.runAsUser | int | `1000` | |
| securityContext.seccompProfile.type | string | `"RuntimeDefault"` | |
| service.internalServiceType | string | `"ClusterIP"` | |
| service.ports.http | int | `8080` | |
| service.ports.p2p | int | `40400` | |
| service.type | string | `"NodePort"` | |
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ metadata:
labels:
{{- include "aztec-validator.labels" . | nindent 4 }}
spec:
type: {{ .Values.service.type }}
type: {{ .Values.service.internalServiceType }}
ports:
- port: {{ .Values.service.ports.http }}
targetPort: http
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
####################################
# Aztec prover node values
# Aztec Network
####################################

replicaCount: 1
Expand Down Expand Up @@ -89,6 +89,7 @@ podLabels: {}

service:
type: NodePort
internalServiceType: ClusterIP
ports:
p2p: 40400
http: 8080
Expand Down

0 comments on commit cb44fd6

Please sign in to comment.