Skip to content

Commit

Permalink
[binami/valkey] fix: wrong port set for sentinel setup (#26393)
Browse files Browse the repository at this point in the history
* [binami/valkey] fix: wrong port set for sentinel setup

Signed-off-by: Dennis Haney <[email protected]>

* Update CHANGELOG.md

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

* Update CHANGELOG.md

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

---------

Signed-off-by: Dennis Haney <[email protected]>
Signed-off-by: Bitnami Containers <[email protected]>
Signed-off-by: Miguel Ruiz <[email protected]>
Co-authored-by: Bitnami Containers <[email protected]>
Co-authored-by: Miguel Ruiz <[email protected]>
  • Loading branch information
3 people authored May 30, 2024
1 parent f51e2c4 commit 1440310
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions bitnami/valkey/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Changelog

## 0.3.0 (2024-05-30)
## 0.3.1 (2024-05-30)

* [bitnami/valkey] Enable PodDisruptionBudgets ([#26408](https://github.com/bitnami/charts/pull/26408))
* [binami/valkey] fix: wrong port set for sentinel setup ([#26393](https://github.com/bitnami/charts/pull/26393))

## <small>0.2.1 (2024-05-30)</small>

Expand Down
2 changes: 1 addition & 1 deletion bitnami/valkey/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,4 @@ maintainers:
name: valkey
sources:
- https://github.com/bitnami/charts/tree/main/bitnami/valkey
version: 0.3.0
version: 0.3.1
2 changes: 1 addition & 1 deletion bitnami/valkey/templates/headless-svc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ spec:
{{- end }}
ports:
- name: tcp-redis
port: {{ if .Values.sentinel.enabled }}{{ .Values.sentinel.containerPorts.sentinel }}{{ else }} {{ .Values.master.containerPorts.valkey }}{{ end }}
port: {{ if .Values.sentinel.enabled }}{{ .Values.replica.containerPorts.valkey }}{{ else }} {{ .Values.master.containerPorts.valkey }}{{ end }}
targetPort: redis
{{- if .Values.sentinel.enabled }}
- name: tcp-sentinel
Expand Down

0 comments on commit 1440310

Please sign in to comment.