From a86c3c2bf8b052898636caeeef6fda12809765de Mon Sep 17 00:00:00 2001 From: Jon Ander Novella Date: Fri, 12 Jan 2018 08:00:22 +0100 Subject: [PATCH] Bump Pachyderm chart to 0.1.2 (#3302) * Added Pachyderm chart * Added appVersion field and updated instructions * Added namespace flag to deployment commands * Added OWNERS file * Updated OWNERS file and changed names with github ids * Fixed quotation marks in NOTES.txt * Fixed brackets in secret --- stable/pachyderm/Chart.yaml | 2 +- stable/pachyderm/templates/pachd_secret.yaml | 20 ++++++++++---------- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/stable/pachyderm/Chart.yaml b/stable/pachyderm/Chart.yaml index 70a72a321c..e84b18fef8 100755 --- a/stable/pachyderm/Chart.yaml +++ b/stable/pachyderm/Chart.yaml @@ -10,7 +10,7 @@ keywords: - reproducibility - distributed - processing -version: 0.1.1 +version: 0.1.2 appVersion: 1.6.6 home: "https://pachyderm.io" sources: diff --git a/stable/pachyderm/templates/pachd_secret.yaml b/stable/pachyderm/templates/pachd_secret.yaml index 21571d86b7..21701d1bd0 100644 --- a/stable/pachyderm/templates/pachd_secret.yaml +++ b/stable/pachyderm/templates/pachd_secret.yaml @@ -18,16 +18,16 @@ data: minio-secure: {{ .Values.s3.secure | b64enc | quote }} minio-signature: {{ .Values.s3.signature | b64enc | quote }} {{- else if eq .Values.credentials "google" }} - google-bucket: { .Values.google.bucketName | b64enc | quote }} + google-bucket: {{ .Values.google.bucketName | b64enc | quote }} {{- else if eq .Values.credentials "amazon" }} - amazon-bucket: { .Values.amazon.bucketName | b64enc | quote }} - amazon-distribution: { .Values.amazon.distribution | b64enc | quote }} - amazon-id: { .Values.amazon.id | b64enc | quote }} - amazon-region: { .Values.amazon.region | b64enc | quote }} - amazon-secret: { .Values.amazon.secret | b64enc | quote }} - amazon-token: { .Values.amazon.token | b64enc | quote }} + amazon-bucket: {{ .Values.amazon.bucketName | b64enc | quote }} + amazon-distribution: {{ .Values.amazon.distribution | b64enc | quote }} + amazon-id: {{ .Values.amazon.id | b64enc | quote }} + amazon-region: {{ .Values.amazon.region | b64enc | quote }} + amazon-secret: {{ .Values.amazon.secret | b64enc | quote }} + amazon-token: {{ .Values.amazon.token | b64enc | quote }} {{- else if eq .Values.credentials "microsoft" }} - microsoft-container: { .Values.microsoft.container | b64enc | quote }} - microsoft-id: { .Values.microsoft.id | b64enc | quote }} - microsoft-secret: { .Values.microsoft.secret | b64enc | quote }} + microsoft-container: {{ .Values.microsoft.container | b64enc | quote }} + microsoft-id: {{ .Values.microsoft.id | b64enc | quote }} + microsoft-secret: {{ .Values.microsoft.secret | b64enc | quote }} {{- end }}