We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d488da0 commit 0c61338Copy full SHA for 0c61338
2 files changed
charts/firehose-ethereum/Chart.yaml
@@ -2,8 +2,8 @@ apiVersion: v2
2
name: firehose-ethereum
3
description: A Helm chart for Kubernetes
4
type: application
5
-version: 1.7.0
6
-appVersion: geth-v1.16.5-fh3.0
+version: 1.7.1
+appVersion: geth-v1.16.9-fh3.0
7
keywords:
8
- firehose
9
- substreams
charts/firehose-ethereum/templates/full-firehose/reader/jwt-secret.yaml
@@ -8,7 +8,8 @@
{{- if $existingSecret }}
{{- $jwt = index $existingSecret.data "jwt.hex" | b64dec }}
10
{{- else }}
11
- {{- $jwt = printf "%s%s" (uuidv4 | replace "-" "") (uuidv4 | replace "-" "") }}
+ {{- /* deterministic so Argo / `helm template` renders are stable */ -}}
12
+ {{- $jwt = sha256sum (printf "firehose-jwt-%s-%s" .Release.Namespace .Release.Name) }}
13
{{- end }}
14
apiVersion: v1
15
kind: Secret
0 commit comments