From df108b1b9f14293d3d2acde6c922ae2dccff9777 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?N=C3=A9stor=20Salceda?= Date: Thu, 25 Apr 2019 10:22:46 +0200 Subject: [PATCH] Remove the toJson pipeline when adding Google Cloud Credentials (#13272) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Néstor Salceda --- stable/falco/CHANGELOG.md | 15 +++++++++++++++ stable/falco/Chart.yaml | 2 +- stable/falco/templates/secret.yaml | 2 +- 3 files changed, 17 insertions(+), 2 deletions(-) diff --git a/stable/falco/CHANGELOG.md b/stable/falco/CHANGELOG.md index 5ab2189ccf..26eb3e5126 100644 --- a/stable/falco/CHANGELOG.md +++ b/stable/falco/CHANGELOG.md @@ -3,8 +3,23 @@ This file documents all notable changes to Sysdig Falco Helm Chart. The release numbering uses [semantic versioning](http://semver.org). +## v0.7.3 + +### Minor Changes + +* Remove the toJson pipeline when storing Google Credentials. It makes strange + stuff with double quotes and does not allow to use base64 encoded credentials + +## v0.7.2 + +### Minor Changes + +* Fix typos in README.md + ## v0.7.1 +### Minor Changes + * Add Google Pub/Sub Output integration ## v0.7.0 diff --git a/stable/falco/Chart.yaml b/stable/falco/Chart.yaml index 08e3bb6636..bfe5e86a04 100644 --- a/stable/falco/Chart.yaml +++ b/stable/falco/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v1 name: falco -version: 0.7.2 +version: 0.7.3 appVersion: 0.14.0 description: Sysdig Falco keywords: diff --git a/stable/falco/templates/secret.yaml b/stable/falco/templates/secret.yaml index 5b315cb562..fb9265e1f8 100644 --- a/stable/falco/templates/secret.yaml +++ b/stable/falco/templates/secret.yaml @@ -16,7 +16,7 @@ data: aws_secret_access_key: {{ .Values.integrations.snsOutput.aws_secret_access_key | b64enc | quote }} {{- end }} {{- if .Values.integrations.pubsubOutput.enabled }} - gcp-credentials-data: {{ .Values.integrations.pubsubOutput.credentialsData | toJson | b64enc | quote }} + gcp-credentials-data: {{ .Values.integrations.pubsubOutput.credentialsData | b64enc | quote }} gcp-project-id: {{ .Values.integrations.pubsubOutput.projectID | b64enc | quote }} {{- end }} {{- end }}