From 1f18aa5822f8c2927640705963a566241e2f54bb Mon Sep 17 00:00:00 2001 From: Greg Hill Date: Thu, 28 Feb 2019 12:20:54 +0000 Subject: [PATCH] fix hoard secrets id (#11835) Signed-off-by: Gregory Hill --- stable/hoard/Chart.yaml | 2 +- stable/hoard/templates/configmap.yaml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/stable/hoard/Chart.yaml b/stable/hoard/Chart.yaml index f962ed758062..486a7e40ef7c 100644 --- a/stable/hoard/Chart.yaml +++ b/stable/hoard/Chart.yaml @@ -1,5 +1,5 @@ name: hoard -version: 0.6.5 +version: 0.6.6 appVersion: 3.0.0 description: Hoard is a stateless, deterministically encrypted, content-addressed object store home: https://github.com/monax/hoard diff --git a/stable/hoard/templates/configmap.yaml b/stable/hoard/templates/configmap.yaml index ea8b01b0553c..e60eceacd82f 100644 --- a/stable/hoard/templates/configmap.yaml +++ b/stable/hoard/templates/configmap.yaml @@ -27,7 +27,7 @@ data: {{- if .Values.openpgp }} [Secrets.OpenPGP] - ID = "{{ .Values.openpgp.id }}" + PrivateID = "{{ .Values.openpgp.id }}" File = "/secrets/keyring" {{- end }} @@ -35,7 +35,7 @@ data: {{- range $key, $val := .Values.secrets }} [[Secrets.Symmetric]] - ID = {{ $key | quote }} + PublicID = {{ $key | quote }} Passphrase = {{ $val | quote }} {{- end }}