Skip to content

Commit afa0008

Browse files
feat(chart): add extra env support (#26)
1 parent 288215e commit afa0008

3 files changed

Lines changed: 11 additions & 3 deletions

File tree

charts/abstract-node/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apiVersion: v2
22
name: abstract-node
33
description: External node for syncing and serving blockchain data for Abstract
4-
version: 0.1.37
4+
version: 0.1.38
55
type: application
66
icon: https://abstract-assets.abs.xyz/icons/light.png
77
keywords:
@@ -11,7 +11,7 @@ keywords:
1111
home: https://abs.xyz
1212
sources:
1313
- https://github.com/matter-labs/zksync-era
14-
appVersion: "29.14.0"
14+
appVersion: "29.19.0"
1515

1616
dependencies:
1717
- name: common

charts/abstract-node/templates/statefulset.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -222,6 +222,10 @@ spec:
222222
- name: EN_API_SEND_RAW_TX_SYNC_DEFAULT_TIMEOUT_MS
223223
value: {{ .Values.rpc.sendRawTxSyncDefaultTimeout | quote }}
224224
{{- end }}
225+
{{- range $name, $value := .Values.node.extraEnv }}
226+
- name: {{ $name | quote }}
227+
value: {{ $value | quote }}
228+
{{- end }}
225229
ports:
226230
{{- if .Values.rpc.http.enabled }}
227231
- name: http

charts/abstract-node/values.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ image:
7979
registry: docker.io
8080
repository: matterlabs/external-node
8181
pullPolicy: IfNotPresent
82-
tag: "v29.14.0"
82+
tag: "v29.19.0"
8383

8484
shutdownWrapper:
8585
enabled: false
@@ -253,6 +253,10 @@ database:
253253
poolSizeMaster: null
254254

255255
node:
256+
## Additional environment variables for the external node container.
257+
## Values are rendered as strings.
258+
##
259+
extraEnv: {}
256260
## The URL of the Ethereum client.
257261
##
258262
ethClientUrl: "https://eth.drpc.org"

0 commit comments

Comments
 (0)