Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated secrets for Fission output #256

Merged
merged 2 commits into from
Aug 19, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion falcosidekick/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,17 @@ numbering uses [semantic versioning](http://semver.org).

Before release 0.1.20, the helm chart can be found in `falcosidekick` [repository](https://github.com/falcosecurity/falcosidekick/tree/master/deploy/helm/falcosidekick).

## 0.3.15

### Major Changes

* Add `Fission` output

## 0.3.14

### Major Changes

* Add `Grafana` output
* Add `Fission` output
* Add `Yandex Cloud S3` output
* Add `Kafka REST` output

Expand Down
2 changes: 1 addition & 1 deletion falcosidekick/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ appVersion: 2.24.0
description: Connect Falco to your ecosystem
icon: https://raw.githubusercontent.com/falcosecurity/falcosidekick/master/imgs/falcosidekick_color.png
name: falcosidekick
version: 0.3.14
version: 0.3.15
keywords:
- monitoring
- security
Expand Down
9 changes: 9 additions & 0 deletions falcosidekick/templates/secrets.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -262,6 +262,15 @@ data:
KAFKAREST_MUTUALTLS : "{{ .Values.config.kafkarest.mutualtls | printf "%t" | b64enc}}"
KAFKAREST_CHECKCERT : "{{ .Values.config.kafkarest.checkcert | printf "%t" | b64enc}}"

# Fission Output
FISSION_FUNCTION: "{{ .Values.config.fission.function | b64enc }}"
FISSION_ROUTERNAMESPACE: "{{ .Values.config.fission.routernamespace | b64enc }}"
FISSION_ROUTERSERVICE: "{{ .Values.config.fission.routerservice | toString | b64enc }}"
FISSION_ROUTERPORT: "{{ .Values.config.fission.routerport | toString | b64enc }}"
FISSION_MINIMUMPRIORITY: "{{ .Values.config.fission.minimumpriority | b64enc }}"
FISSION_MUTUALTLS: "{{ .Values.config.fission.mutualtls | printf "%t" | b64enc }}"
FISSION_CHECKCERT: "{{ .Values.config.fission.checkcert | printf "%t" | b64enc }}"

# WebUI Output
{{- if .Values.webui.enabled -}}
{{ $weburl := printf "http://%s-ui:2802" (include "falcosidekick.fullname" .) }}
Expand Down