Skip to content

Commit

Permalink
Add a condition to create the secrets for the redis only if the webui…
Browse files Browse the repository at this point in the history
… is deployed

Signed-off-by: Thomas Labarussias <issif+github@gadz.org>
  • Loading branch information
Issif committed Jul 17, 2024
1 parent ebf1ff8 commit 9c033b4
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 9 deletions.
18 changes: 11 additions & 7 deletions charts/falcosidekick/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,25 +5,29 @@ 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.8.3

- Add a condition to create the secrets for the redis only if the webui is deployed

## 0.8.2

- Fix redis-availability check of the UI init-container in case externalRedis is enabled

## 0.8.1

- allow to set resources, securityContext and image overwrite for wait-redis initContainer
- Allow to set resources, securityContext and image overwrite for wait-redis initContainer

## 0.8.0

- ugrade to Falcosidekick 2.29.0
- allow to set custom labels and annotations to set to all resources
- allow to use an existing secrets and values for the env vars at the same time
- fix missing ingressClassName settings in the values.yaml
- add of an initContainer to check if the redis for falcosidekick-ui is up
- Ugrade to Falcosidekick 2.29.0
- Allow to set custom labels and annotations to set to all resources
- Allow to use an existing secrets and values for the env vars at the same time
- Fix missing ingressClassName settings in the values.yaml
- Add of an initContainer to check if the redis for falcosidekick-ui is up

## 0.7.22

- upgrade redis-stack image to 7.2.0-v11
- Upgrade redis-stack image to 7.2.0-v11

## 0.7.21

Expand Down
2 changes: 1 addition & 1 deletion charts/falcosidekick/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ appVersion: 2.29.0
description: Connect Falco to your ecosystem
icon: https://raw.githubusercontent.com/falcosecurity/falcosidekick/master/imgs/falcosidekick_color.png
name: falcosidekick
version: 0.8.2
version: 0.8.3
keywords:
- monitoring
- security
Expand Down
2 changes: 1 addition & 1 deletion charts/falcosidekick/templates/secrets-ui.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ data:
{{- if .Values.webui.redis.password }}
FALCOSIDEKICK_UI_REDIS_PASSWORD: "{{ .Values.webui.redis.password | b64enc}}"
{{- end }}
{{- end }}
{{- if eq .Values.webui.redis.existingSecret "" }}
---
apiVersion: v1
Expand All @@ -46,4 +45,5 @@ data:
{{- if .Values.webui.redis.password }}
REDIS_ARGS: "{{ printf "--requirepass %s" .Values.webui.redis.password | b64enc}}"
{{- end }}
{{- end }}
{{- end }}

0 comments on commit 9c033b4

Please sign in to comment.