Skip to content

Commit

Permalink
[bitnami/logstash] fix #29129 missing protocol in networkPolicy (#29277)
Browse files Browse the repository at this point in the history
* fix #29129 missing protocol in networkPolicy

Signed-off-by: Christophe Drevet <[email protected]>

* bump chart version

Signed-off-by: Christophe Drevet <[email protected]>

* Update CHANGELOG.md

Signed-off-by: Bitnami Containers <[email protected]>

---------

Signed-off-by: Christophe Drevet <[email protected]>
Signed-off-by: Bitnami Containers <[email protected]>
Co-authored-by: Bitnami Containers <[email protected]>
  • Loading branch information
dr4Ke and bitnami-bot authored Sep 11, 2024
1 parent e870d71 commit 3501538
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
8 changes: 6 additions & 2 deletions bitnami/logstash/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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>

Expand Down
2 changes: 1 addition & 1 deletion bitnami/logstash/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
4 changes: 4 additions & 0 deletions bitnami/logstash/templates/networkpolicy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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 }}
Expand Down

0 comments on commit 3501538

Please sign in to comment.