Skip to content

Commit

Permalink
[bitnami/valkey-cluster] the redis_url for redis_exporter should use …
Browse files Browse the repository at this point in the history
…rediss/redis scheme, not valkeys/valkey. (bitnami#29589)

* change metrics url schema valkeys,valkey -> rediss,redis

Signed-off-by: a <[email protected]>

* bump version

Signed-off-by: a <[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: a <[email protected]>
Signed-off-by: a <[email protected]>
Signed-off-by: Bitnami Containers <[email protected]>
Co-authored-by: Bitnami Containers <[email protected]>
Signed-off-by: Michael Faherty <[email protected]>
  • Loading branch information
2 people authored and mike12806 committed Oct 30, 2024
1 parent 826773a commit 60e2abe
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion bitnami/valkey-cluster/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
# Changelog

## 1.0.1 (2024-09-26)

* [bitnami/valkey-cluster] the redis_url for redis_exporter should use rediss/redis scheme, not valkeys/valkey. ([#29589](https://github.com/bitnami/charts/pull/29589))

## 1.0.0 (2024-09-16)

* [bitnami/valkey-cluster] Release 1.0.0 ([#29450](https://github.com/bitnami/charts/pull/29450))
* [bitnami/valkey-cluster] Release 1.0.0 (#29450) ([a6c84c2](https://github.com/bitnami/charts/commit/a6c84c2362b2577ce78ead825292e6037e1a2c13)), closes [#29450](https://github.com/bitnami/charts/issues/29450)

## <small>0.1.11 (2024-09-09)</small>

Expand Down
2 changes: 1 addition & 1 deletion bitnami/valkey-cluster/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ name: valkey-cluster
sources:
- https://github.com/bitnami/charts/tree/main/bitnami/valkey-cluster
- https://github.com/bitnami/containers/tree/main/bitnami/vakey-cluster
version: 1.0.0
version: 1.0.1
2 changes: 1 addition & 1 deletion bitnami/valkey-cluster/templates/valkey-statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@ spec:
- name: REDIS_ALIAS
value: {{ template "common.names.fullname" . }}
- name: REDIS_ADDR
value: {{ printf "%s://127.0.0.1:%g" (ternary "valkeys" "valkey" .Values.tls.enabled) .Values.valkey.containerPorts.valkey | quote }}
value: {{ printf "%s://127.0.0.1:%g" (ternary "rediss" "redis" .Values.tls.enabled) .Values.valkey.containerPorts.valkey | quote }}
{{- if and .Values.usePassword (not .Values.usePasswordFile) }}
- name: REDIS_PASSWORD
valueFrom:
Expand Down

0 comments on commit 60e2abe

Please sign in to comment.