Skip to content

Commit

Permalink
add substreams-sink-webhook
Browse files Browse the repository at this point in the history
  • Loading branch information
coutug committed Apr 2, 2024
1 parent 9167f67 commit aa61eaa
Show file tree
Hide file tree
Showing 4 changed files with 167 additions and 0 deletions.
29 changes: 29 additions & 0 deletions charts/substreams-sink-webhook/Chart.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
apiVersion: v2
name: substreams-sink-webhook
description: substreams-sink-webhook

# 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: 1.0.0

# 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: "v0.9.2"

dependencies:
- name: substreams-sink
version: 1.1.3
repository: https://pinax-network.github.io/helm-charts
1 change: 1 addition & 0 deletions charts/substreams-sink-webhook/README
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# This should appear as readme in artifacthub
62 changes: 62 additions & 0 deletions charts/substreams-sink-webhook/templates/_helpers.tpl
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
{{/*
Expand the name of the chart.
*/}}
{{- define "substreams-sink-prometheus.name" -}}
{{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" }}
{{- end }}

{{/*
Create a default fully qualified app name.
We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec).
If release name contains chart name it will be used as a full name.
*/}}
{{- define "substreams-sink-prometheus.fullname" -}}
{{- if .Values.fullnameOverride }}
{{- .Values.fullnameOverride | trunc 63 | trimSuffix "-" }}
{{- else }}
{{- $name := default .Chart.Name .Values.nameOverride }}
{{- if contains $name .Release.Name }}
{{- .Release.Name | trunc 63 | trimSuffix "-" }}
{{- else }}
{{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" }}
{{- end }}
{{- end }}
{{- end }}

{{/*
Create chart name and version as used by the chart label.
*/}}
{{- define "substreams-sink-prometheus.chart" -}}
{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" }}
{{- end }}

{{/*
Common labels
*/}}
{{- define "substreams-sink-prometheus.labels" -}}
helm.sh/chart: {{ include "substreams-sink-prometheus.chart" . }}
{{ include "substreams-sink-prometheus.selectorLabels" . }}
{{- if .Chart.AppVersion }}
app.kubernetes.io/version: {{ .Chart.AppVersion | quote }}
{{- end }}
app.kubernetes.io/managed-by: {{ .Release.Service }}
{{- end }}

{{/*
Selector labels
*/}}
{{- define "substreams-sink-prometheus.selectorLabels" -}}
app.kubernetes.io/name: {{ include "substreams-sink-prometheus.name" . }}
app.kubernetes.io/instance: {{ include "substreams-sink-prometheus.fullname" . }}
{{- end }}

{{/*
Create the name of the service account to use
*/}}
{{- define "substreams-sink-prometheus.serviceAccountName" -}}
{{- if .Values.serviceAccount.create }}
{{- default (include "substreams-sink-prometheus.fullname" .) .Values.serviceAccount.name }}
{{- else }}
{{- default "default" .Values.serviceAccount.name }}
{{- end }}
{{- end }}
75 changes: 75 additions & 0 deletions charts/substreams-sink-webhook/values.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
nameOverride: ""
fullnameOverride: ""

substreams-sink:

# chain and type of substreams-sink
chain: "eth"
sinkType: "webhook"

replicaCount: 1

image:
repository: "ghcr.io/pinax-network/substreams-sink-webhook"
tag: "v0.9.2"

# pull secrets required to fetch the image
imagePullSecrets: []

# resources used by the pod(s)
resources: {}
# limits:
# cpu: 100m
# memory: 128Mi
# requests:
# cpu: 100m
# memory: 128Mi


# environment variables to be use by the applications <key>: <value>
# refer to https://github.com/pinax-network/substreams-sink-webhook?tab=readme-ov-file#env-environment-variables
env:
port: 9102
webhook_url: "http://substreams-sink-clickhouse:3000/webhook"
manifest: "https://github.com/pinax-network/substreams-antelope-tokens/releases/download/v0.3.1/antelope-tokens-v0.3.1.spkg"
module_name: "graph_out"
start_block: -1
cursor_path: "/cursor/cursor.lock"
production_mode: false
maximum_attempts: 100
verbose: true

# secretName is the name of the Secret that contains SUBSTREAMS_API_KEY, PRIVATE_KEY
secret:
# secretName is the name of the sealed secret to use. Leave empty to use no secret
secretName: ""
# true to create the secret and fill it with following values
# false if the secret is created elsewhere
create: false
# each of these values should come from a sealed secret and be encrypted
secrets:
substreams_api_key: ""
private_key: "" # optional

# path to mount the pvc as a volume if the pvc is enabled. Adjust the cursor_file env variable accordingly
volumeMountPath: /cursor

livenessProbe:
enabled: false
path: /health
initialDelaySeconds: 20
timeoutSeconds: 2
periodSeconds: 5

service:
type: ClusterIP
port: 9102

# pvc is used to persist the cursor.lock file
pvc:
# if true, make sure the volumeMountPath and the env.cursor_file match
enabled: false
# name of the storageClass to use
storageClassName: ""
accessModes: [ReadWriteOnce]
storage: 1Gi

0 comments on commit aa61eaa

Please sign in to comment.