Skip to content

Commit

Permalink
stabilize secret key base (#1348)
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeljguarino authored Aug 24, 2024
1 parent 946e6b0 commit 1444e3f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion plural/helm/plural/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: plural
description: A helm chart for installing plural
appVersion: 0.11.8
version: 0.10.99
version: 0.10.100
dependencies:
- name: hydra
version: 0.26.5
Expand Down
2 changes: 1 addition & 1 deletion plural/helm/plural/templates/secrets.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ data:
BUCKET: {{ .Values.api.bucket | b64enc | quote }}
DKR_DNS: {{ .Values.ingress.dkr_dns | b64enc | quote }}
JWT_SECRET: {{ .Values.secrets.jwt | b64enc | quote }}
SECRET_KEY_BASE: {{ randAlphaNum 10 | b64enc | quote }}
SECRET_KEY_BASE: {{ .Values.secrets.key_base | default (randAlphaNum 24) | b64enc | quote }}
ERLANG_COOKIE: {{ .Values.secrets.erlang | b64enc | quote }}
JWT_PRIVATE_KEY: {{ .Values.secrets.jwt_pk | b64enc | quote }}
JWT_CERT: {{ .Values.secrets.jwt_cert | b64enc | quote }}
Expand Down

0 comments on commit 1444e3f

Please sign in to comment.