Skip to content

Commit

Permalink
[stable/falco] Fix bug in Google Cloud Security Command Center integr…
Browse files Browse the repository at this point in the history
…ation with Falco (helm#15020)

Signed-off-by: Néstor Salceda <[email protected]>
  • Loading branch information
Néstor Salceda authored and k8s-ci-robot committed Jun 26, 2019
1 parent 5357374 commit 407ca2a
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions stable/falco/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
This file documents all notable changes to Sysdig Falco Helm Chart. The release
numbering uses [semantic versioning](http://semver.org).

## v0.7.10

### Minor Changes

* Fix bug with Google Cloud Security Command Center and Falco integration

## v0.7.9

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion stable/falco/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v1
name: falco
version: 0.7.9
version: 0.7.10
appVersion: 0.15.3
description: Falco
keywords:
Expand Down
4 changes: 2 additions & 2 deletions stable/falco/templates/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -124,10 +124,10 @@ data:
# Also, the program will be closed and reopened if falco is signaled with
# SIGUSR1.
{{- if .Values.integrations.gcscc.enabled }}
programOutput:
program_output:
enabled: true
keep_alive: false
program: "\"curl -d @- -X POST --header 'Content-Type: application/json' --header 'Authorization: {{ .Values.integrations.gcscc.webhookAuthenticationToken }}' {{ .Values.integrations.gcscc.webhookUrl }}/\""
program: "curl -d @- -X POST --header 'Content-Type: application/json' --header 'Authorization: {{ .Values.integrations.gcscc.webhookAuthenticationToken }}' {{ .Values.integrations.gcscc.webhookUrl }}"
{{- else }}
program_output:
enabled: {{ .Values.falco.programOutput.enabled }}
Expand Down
2 changes: 1 addition & 1 deletion stable/falco/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ integrations:
# * program_output:
# enabled: true
# keep_alive: false
# program: "\"curl -d @- -X POST --header 'Content-Type: application/json' --header 'Authorization: authentication_token' url \""
# program: "curl -d @- -X POST --header 'Content-Type: application/json' --header 'Authorization: authentication_token' url"
gcscc:
enabled: false
webhookUrl: http://sysdig-gcscc-connector.default.svc.cluster.local:8080/events
Expand Down

0 comments on commit 407ca2a

Please sign in to comment.