Skip to content

Commit

Permalink
add auctioneer chart and just commands
Browse files Browse the repository at this point in the history
  • Loading branch information
itamarreif committed Oct 29, 2024
1 parent 5429bdd commit 2bb00cf
Show file tree
Hide file tree
Showing 12 changed files with 349 additions and 1 deletion.
24 changes: 24 additions & 0 deletions charts/auctioneer/Chart.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
apiVersion: v2
name: auctioneer
description: Astria auctioneer helm chart

# A chart can be either an 'application' or a 'library' chart.
#
# Application charts are a collection of templates that can be packaged into versioned archives
# to be deployed.
#
# Library charts provide useful utilities or functions for the chart developer. They're included as
# a dependency of application charts to inject those utilities and functions into the rendering
# pipeline. Library charts do not define any templates and therefore cannot be deployed.
type: application

# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.0.1

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: "0.0.1"
31 changes: 31 additions & 0 deletions charts/auctioneer/templates/_helpers.tpl
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{{/*
Namepsace to deploy elements into.
*/}}
{{- define "auctioneer.namespace" -}}
{{- default .Release.Namespace .Values.global.namespaceOverride | trunc 63 | trimSuffix "-" -}}
{{- end }}

{{/*
application name to deploy elements into.
*/}}
{{- define "auctioneer.appName" -}}
auctioneer
{{- end }}

{{/*
Common labels
*/}}
{{- define "auctioneer.labels" -}}
{{ include "rollup.selectorLabels" . }}
{{- end }}

{{/*
Selector labels
*/}}
{{- define "auctioneer.selectorLabels" -}}
app: {{ include "rollup.appName" . }}
{{- end }}

{{- define "auctioneer.image" -}}
{{ .Values.images.auctioneer.repo }}:{{ if .Values.global.dev }}{{ .Values.images.auctioneer.devTag }}{{ else }}{{ .Values.images.auctioneer.tag }}{{ end }}
{{- end }}
46 changes: 46 additions & 0 deletions charts/auctioneer/templates/configmap.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
apiVersion: v1
kind: ConfigMap
metadata:
name: auctioneer-env
namespace: {{ include "auctioneer.namespace" . }}
data:
ASTRIA_AUCTIONEER_SEQUENCER_GRPC_ENDPOINT: "{{ .Values.config.sequencerGrpcEndpoint }}"
ASTRIA_AUCTIONEER_SEQUENCER_ABCI_ENDPOINT: "{{ .Values.config.sequencerAbciEndpoint }}"
ASTRIA_AUCTIONEER_SEQUENCER_CHAIN_ID: "{{ .Values.config.sequencerChainId }}"
ASTRIA_AUCTIONEER_SEQUENCER_PRIVATE_KEY_PATH: "/var/secrets/{{ .Values.config.sequencerPrivateKey.secret.filename }}"
ASTRIA_AUCTIONEER_FEE_ASSET_DENOMINATION: "{{ .Values.config.feeAssetDenomination }}"
ASTRIA_AUCTIONEER_SEQUENCER_ADDRESS_PREFIX: "{{ .Values.config.sequencerAddressPrefix }}"
ASTRIA_AUCTIONEER_ROLLUP_GRPC_ENDPOINT: "{{ .Values.config.rollupGrpcEndpoint }}"
ASTRIA_AUCTIONEER_ROLLUP_ID: "{{ .Values.config.rollupId }}"
ASTRIA_AUCTIONEER_LATENCY_MARGIN_MS: "{{ .Values.config.latencyMarginMs }}"
ASTRIA_AUCTIONEER_LOG: "astria_auctioneer={{ .Values.config.logLevel }}"
ASTRIA_AUCTIONEER_FORCE_STDOUT: "{{ .Values.global.useTTY }}"
ASTRIA_AUCTIONEER_PRETTY_PRINT: "{{ .Values.global.useTTY }}"
NO_COLOR: "{{ .Values.global.useTTY }}"
ASTRIA_AUCTIONEER_NO_METRICS: "{{ not .Values.metrics.enabled }}"
ASTRIA_AUCTIONEER_METRICS_HTTP_LISTENER_ADDR: "0.0.0.0:{{ .Values.ports.metrics }}"
ASTRIA_AUCTIONEER_NO_OTEL: "{{ not .Values.otel.enabled }}"
ASTRIA_AUCTIONEER_NO_METRICS: "{{ not .Values.metrics.enabled }}"
ASTRIA_AUCTIONEER_METRICS_HTTP_LISTENER_ADDR: "0.0.0.0:{{ .Values.ports.metrics }}"
OTEL_EXPORTER_OTLP_ENDPOINT: "{{ tpl .Values.otel.endpoint . }}"
OTEL_EXPORTER_OTLP_TRACES_ENDPOINT: "{{ tpl .Values.otel.tracesEndpoint . }}"
OTEL_EXPORTER_OTLP_TRACES_TIMEOUT: "{{ tpl .Values.otel.tracesTimeout . }}"
OTEL_EXPORTER_OTLP_TRACES_COMPRESSION: "{{ tpl .Values.otel.tracesCompression . }}"
OTEL_EXPORTER_OTLP_HEADERS: "{{ tpl .Values.otel.otlpHeaders . }}"
OTEL_EXPORTER_OTLP_TRACE_HEADERS: "{{ tpl .Values.otel.traceHeaders . }}"
OTEL_SERVICE_NAME: "{{ tpl .Values.otel.serviceName . }}"
{{- if not .Values.global.dev }}
{{- else }}
{{- end }}
---
{{- if not .Values.secretProvider.enabled }}
apiVersion: v1
kind: ConfigMap
metadata:
namespace: {{ include "auctioneer.namespace" . }}
name: auctioneer-private-key
data:
{{ .Values.config.sequencerPrivateKey.secret.filename }}: |
{{ .Values.config.sequencerPrivateKey.devContent }}
---
{{- end }}
49 changes: 49 additions & 0 deletions charts/auctioneer/templates/deployment.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: auctioneer
namespace: {{ include "auctioneer.namespace" . }}
labels:
app: auctioneer
spec:
replicas: {{ .Values.global.replicaCount }}
selector:
matchLabels:
app: auctioneer
template:
metadata:
labels:
app: auctioneer
spec:
containers:
- name: auctioneer
image: {{ include "auctioneer.image" . }}
imagePullPolicy: {{ .Values.images.auctioneer.pullPolicy }}
command: ["/usr/local/bin/astria-auctioneer"]
stdin: {{ .Values.global.useTTY }}
tty: {{ .Values.global.useTTY }}
envFrom:
- configMapRef:
name: auctioneer-env
volumeMounts:
- mountPath: "/var/secrets"
name: auctioneer-private-key
{{- if .Values.metrics.enabled }}
ports:
- containerPort: {{ .Values.ports.metrics }}
name: auctioneer-metrics
{{- end }}
resources:
{{- toYaml .Values.resources | trim | nindent 12 }}
volumes:
- name: auctioneer-private-key
{{- if .Values.secretProvider.enabled }}
csi:
driver: secrets-store.csi.k8s.io
readOnly: true
volumeAttributes:
secretProviderClass: auctioneer-private-key
{{- else }}
configMap:
name: auctioneer-private-key
{{- end }}
13 changes: 13 additions & 0 deletions charts/auctioneer/templates/secretproviderclass.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---
{{- if .Values.secretProvider.enabled }}
apiVersion: secrets-store.csi.x-k8s.io/v1
kind: SecretProviderClass
metadata:
name: auctioneer-private-key
spec:
provider: {{ .Values.secretProvider.provider }}
parameters:
{{- $_ := set $ "key" .Values.config.privateKey.secret }}
{{- tpl $.Values.secretProvider.parametersTemplate $ | nindent 4 }}
---
{{- end }}
16 changes: 16 additions & 0 deletions charts/auctioneer/templates/service.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{{- if .Values.metrics.enabled }}
kind: Service
apiVersion: v1
metadata:
name: auctioneer-metrics
namespace: {{ include "auctioneer.namespace" . }}
labels:
app: auctioneer
spec:
selector:
app: auctioneer
ports:
- name: auctioneer-metrics
port: {{ .Values.ports.metrics }}
targetPort: auctioneer-metrics
{{- end }}
27 changes: 27 additions & 0 deletions charts/auctioneer/templates/servicemonitor.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{{- if .Values.serviceMonitor.enabled }}
apiVersion: monitoring.coreos.com/v1
kind: ServiceMonitor
metadata:
name: auctioneer-metrics
labels:
{{- with .Values.serviceMonitor.additionalLabels }}
{{- toYaml . | nindent 4 }}
{{- end }}
spec:
jobLabel: auctioneer-metrics
namespaceSelector:
matchNames:
- {{ include "auctioneer.namespace" . }}
selector:
matchLabels:
app: auctioneer
endpoints:
- port: auctioneer-metrics
path: /
{{- with .Values.serviceMonitor.interval }}
interval: {{ . }}
{{- end }}
{{- with .Values.serviceMonitor.scrapeTimeout }}
scrapeTimeout: {{ . }}
{{- end }}
{{- end }}
95 changes: 95 additions & 0 deletions charts/auctioneer/values.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,95 @@
global:
namespaceOverride: ""
replicaCount: 1
# Whether to use tty readable logging for astria services, when false use json.
useTTY: false
dev: true

images:
auctioneer:
repo: ghcr.io/astriaorg/astria-auctioneer
pullPolicy: IfNotPresent
tag: 1.0.0-rc.1
devTag: local

config:
sequencerGrpcEndpoint: ""
sequencerAbciEndpoint: ""
sequencerChainId: ""
sequencerPrivateKey:
devContent: ""
secret:
filename: "key.hex"
resourceName: "projects/$PROJECT_ID/secrets/sequencerPrivateKey/versions/latest"
feeAssetDenomination: ""
sequencerAddressPrefix: astria
rollupGrpcEndpoint: ""
rollupId: ""
latencyMarginMs: ""
logLevel: "info"

otel:
enabled: false
serviceName: "auctioneer"
endpoint: ""
tracesEndpoint: ""
tracesCompression: "gzip"
tracesTimeout: "10"
otlpHeaders: ""
traceHeaders: ""

metrics:
enabled: false

serviceMonitor:
# set to enable port svc and service monitor
enabled: false
port: 6060
additionalLabels:
release: kube-prometheus-stack

alerting:
enabled: false
interval: ""
additionalLabels:
release: kube-prometheus-stack
annotations: {}
# scrapeTimeout: 10s
# path: /metrics
prometheusRule:
enabled: true
additionalLabels:
release: kube-prometheus-stack
namespace: monitoring
rules:
- alert: Auctioneer_Node_Down
expr: up{container="auctioneer"} == 0 # Insert your query Expression
for: 1m # Rough number but should be enough to init warn
labels:
severity: warning
annotations:
summary: Auctioneer is Down (instance {{ $labels.instance }})
description: "auctioneer node '{{ $labels.namespace }}' has disappeared from Prometheus target discovery.\n VALUE = {{ $value }}\n LABELS = {{ $labels }}"

# When deploying in a production environment should use a secret provider
# This is configured for use with GCP, need to set own resource names
# and keys
secretProvider:
enabled: false
provider: gcp
parametersTemplate: |-
secrets: |
- resourceName: {{ .key.resourceName }}
fileName: "{{ .key.filename }}"
resources:
requests:
cpu: 100m
memory: 100Mi
limits:
cpu: 1000m
memory: 1Gi

# Default service ports
ports:
metrics: 6060
14 changes: 13 additions & 1 deletion charts/deploy.just
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ deploy-astrotrek:
-n astria-dev-cluster \

delete-astrotrek:
@just delete chart astrotrek
@just delete chart astrotrek

deploy-hermes-local:
helm install hermes-local-chart ./charts/hermes \
Expand Down Expand Up @@ -136,6 +136,18 @@ delete-dev-rollup rollupName=defaultRollupName:
wait-for-dev-rollup rollupName=defaultRollupName:
kubectl rollout status --watch statefulset/{{rollupName}}-geth -n astria-dev-cluster --timeout=600s

deploy-auctioneer:
helm dependency update charts/auctioneer > /dev/null
helm install auctioneer-chart ./charts/auctioneer \
--namespace astria-dev-cluster \
-f dev/values/auctioneer/values.yaml

delete-auctioneer:
@just delete chart auctioneer astria-dev-cluster

wait-for-auctioneer:
kubectl wait -n astria-dev-cluster deployment auctioneer --for=condition=Available=True --timeout=600s

deploy-bridge-withdrawer:
helm install evm-bridge-withdrawer-chart ./charts/evm-bridge-withdrawer \
--namespace astria-dev-cluster \
Expand Down
4 changes: 4 additions & 0 deletions charts/evm-rollup/templates/service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ spec:
- name: ws-rpc-svc
port: {{ .Values.ports.wsRPC }}
targetPort: ws-rpc
# TODO: fix this to match bharath's work in the geth repo
- name: bundle-grpc-svc
port: {{ .Values.ports.bundleGRPC }}
targetPort: bundle-grpc
---
{{- if .Values.metrics.enabled }}
kind: Service
Expand Down
28 changes: 28 additions & 0 deletions dev/values/auctioneer/values.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
global:
namespaceOverride: ""
replicaCount: 1
# Whether to use tty readable logging for astria services, when false use json.
useTTY: true
dev: true

config:
sequencerGrpcEndpoint: "http://node0-sequencer-grpc-service.astria-dev-cluster.svc.cluster.local:8080"
sequencerAbciEndpoint: "http://node0-sequencer-rpc-service.astria-dev-cluster.svc.cluster.local:26657"
sequencerChainId: "sequencer-test-chain-0"
sequencerPrivateKey:
devContent: "b8da3289343cb92a235af079d74bae435f16272df38b9ab3ab468e62c632e2f8"
feeAssetDenomination: "nria"
sequencerAddressPrefix: astria
rollupGrpcEndpoint: "http://astria-evm-service.astria-dev-cluster.svc.cluster.local:50051"
rollupId: "astriachain"
latencyMarginMs: 1000
logLevel: "debug"

otel:
enabled: false

metrics:
enabled: false

serviceMonitor:
enabled: false
3 changes: 3 additions & 0 deletions dev/values/validators/all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@ genesis:
# address of the bridge account. needs funds to sign bridge init tx
- address: astria1d7zjjljc0dsmxa545xkpwxym86g8uvvwhtezcr
balance: "69000000"
# address of the auctioneer account. needs funds to submit auction results.
- address: astria1l5hg09ak99cfua5gu33j2m2se8eunv8nazyxtr
balance: "69000420"

resources:
cometbft:
Expand Down

0 comments on commit 2bb00cf

Please sign in to comment.