Skip to content
This repository was archived by the owner on Aug 4, 2020. It is now read-only.

Commit 1e90453

Browse files
author
Vaughn Dice
committed
chore(*): update key_json value
This value (json data) is expected to be pre-base64-encoded. Ref deis/workflow#672
1 parent c63f2b0 commit 1e90453

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

charts/registry-token-refresher/templates/registry-secret.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ metadata:
99
deis.io/registry-location: "{{ .Values.global.registry_location }}"
1010
type: Opaque
1111
data: {{ if eq .Values.global.registry_location "gcr" }}
12-
key.json: {{ .Values.gcr.key_json | b64enc }}
12+
key.json: {{ .Values.gcr.key_json }}
1313
hostname: {{ .Values.gcr.hostname | b64enc }}{{ else if eq .Values.global.registry_location "ecr" }}
1414
accesskey: {{ .Values.ecr.accesskey | b64enc }}
1515
secretkey: {{ .Values.ecr.secretkey | b64enc }}

charts/registry-token-refresher/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ ecr:
2222
registryid: ""
2323
hostname: ""
2424
gcr:
25-
key_json: 'Paste JSON data here.'
25+
key_json: <base64-encoded JSON data>
2626
hostname: ""
2727

2828
global:

0 commit comments

Comments
 (0)