Remove the toJson pipeline when adding Google Cloud Credentials (#13272)

Signed-off-by: Néstor Salceda <nestor.salceda@sysdig.com>
This commit is contained in:
Néstor Salceda
2019-04-25 01:22:46 -07:00
committed by Kubernetes Prow Robot
parent 77bd3d2087
commit df108b1b9f
3 changed files with 17 additions and 2 deletions
+15
View File
@@ -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
+1 -1
View File
@@ -1,6 +1,6 @@
apiVersion: v1
name: falco
version: 0.7.2
version: 0.7.3
appVersion: 0.14.0
description: Sysdig Falco
keywords:
+1 -1
View File
@@ -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 }}