Skip to content

Commit 0c61338

Browse files
authored
fix secret and update geth
1 parent d488da0 commit 0c61338

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

charts/firehose-ethereum/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ apiVersion: v2
22
name: firehose-ethereum
33
description: A Helm chart for Kubernetes
44
type: application
5-
version: 1.7.0
6-
appVersion: geth-v1.16.5-fh3.0
5+
version: 1.7.1
6+
appVersion: geth-v1.16.9-fh3.0
77
keywords:
88
- firehose
99
- substreams

charts/firehose-ethereum/templates/full-firehose/reader/jwt-secret.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@
88
{{- if $existingSecret }}
99
{{- $jwt = index $existingSecret.data "jwt.hex" | b64dec }}
1010
{{- else }}
11-
{{- $jwt = printf "%s%s" (uuidv4 | replace "-" "") (uuidv4 | replace "-" "") }}
11+
{{- /* deterministic so Argo / `helm template` renders are stable */ -}}
12+
{{- $jwt = sha256sum (printf "firehose-jwt-%s-%s" .Release.Namespace .Release.Name) }}
1213
{{- end }}
1314
apiVersion: v1
1415
kind: Secret

0 commit comments

Comments
 (0)