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 }}