[bitnami/logstash] fix #29129 missing protocol in networkPolicy (#29277)

* fix #29129 missing protocol in networkPolicy

Signed-off-by: Christophe Drevet <cdr@antemeta.fr>

* bump chart version

Signed-off-by: Christophe Drevet <cdr@antemeta.fr>

* Update CHANGELOG.md

Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>

---------

Signed-off-by: Christophe Drevet <cdr@antemeta.fr>
Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>
Co-authored-by: Bitnami Containers <bitnami-bot@vmware.com>
This commit is contained in:
Christophe Drevet
2024-09-11 17:45:55 +02:00
committed by GitHub
parent e870d71f3b
commit 35015385d5
3 changed files with 11 additions and 3 deletions

View File

@@ -1,8 +1,12 @@
# Changelog
## 6.3.3 (2024-09-06)
## 6.3.4 (2024-09-06)
* [bitnami/logstash] Release 6.3.3 ([#29250](https://github.com/bitnami/charts/pull/29250))
* [bitnami/logstash] fix #29129 missing protocol in networkPolicy ([#29277](https://github.com/bitnami/charts/pull/29277))
## <small>6.3.3 (2024-09-06)</small>
* [bitnami/logstash] Release 6.3.3 (#29250) ([8a7a49b](https://github.com/bitnami/charts/commit/8a7a49b1f3070436c4bb0cf7074c827b16116852)), closes [#29250](https://github.com/bitnami/charts/issues/29250)
## <small>6.3.2 (2024-08-08)</small>

View File

@@ -30,4 +30,4 @@ maintainers:
name: logstash
sources:
- https://github.com/bitnami/charts/tree/main/bitnami/logstash
version: 6.3.3
version: 6.3.4

View File

@@ -39,9 +39,11 @@ spec:
- ports:
{{- range .Values.containerPorts }}
- port: {{ .containerPort }}
protocol: {{ default "TCP" .protocol }}
{{- end }}
{{- range .Values.service.ports }}
- port: {{ .port }}
protocol: {{ default "TCP" .protocol }}
{{- end }}
to:
- podSelector:
@@ -54,9 +56,11 @@ spec:
- ports:
{{- range .Values.containerPorts }}
- port: {{ .containerPort }}
protocol: {{ default "TCP" .protocol }}
{{- end }}
{{- range .Values.extraContainerPorts }}
- port: {{ . }}
protocol: {{ default "TCP" .protocol }}
{{- end }}
{{- if .Values.enableMonitoringAPI }}
- port: {{ .Values.monitoringAPIPort }}