Skip to content

Commit 5c8de02

Browse files
authoredJul 16, 2024··
[bitnami/redis] Global StorageClass as default value (#28089)
1 parent e1d2920 commit 5c8de02

File tree

5 files changed

+26
-19
lines changed

5 files changed

+26
-19
lines changed
 

‎bitnami/redis/CHANGELOG.md

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
# Changelog
22

3-
## 19.6.1 (2024-07-03)
3+
## 19.6.2 (2024-07-16)
44

5-
* [bitnami/redis] Release 19.6.1 ([#27712](https://github.com/bitnami/charts/pull/27712))
5+
* [bitnami/redis] Global StorageClass as default value ([#28089](https://github.com/bitnami/charts/pull/28089))
6+
7+
## <small>19.6.1 (2024-07-03)</small>
8+
9+
* [bitnami/redis] Release 19.6.1 (#27712) ([a8f05c6](https://github.com/bitnami/charts/commit/a8f05c665a810762b420864a29460d8c84421f73)), closes [#27712](https://github.com/bitnami/charts/issues/27712)
610

711
## 19.6.0 (2024-06-26)
812

‎bitnami/redis/Chart.lock

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
dependencies:
22
- name: common
33
repository: oci://registry-1.docker.io/bitnamicharts
4-
version: 2.20.3
5-
digest: sha256:569e1c9d81abdcad3891e065c0f23c83786527d2043f2bc68193c43d18886c19
6-
generated: "2024-06-18T12:08:13.68013931Z"
4+
version: 2.20.5
5+
digest: sha256:5b98791747a148b9d4956b81bb8635f49a0ae831869d700d52e514b8fd1a2445
6+
generated: "2024-07-16T12:17:39.814241+02:00"

‎bitnami/redis/Chart.yaml

+12-12
Original file line numberDiff line numberDiff line change
@@ -18,22 +18,22 @@ annotations:
1818
apiVersion: v2
1919
appVersion: 7.2.5
2020
dependencies:
21-
- name: common
22-
repository: oci://registry-1.docker.io/bitnamicharts
23-
tags:
24-
- bitnami-common
25-
version: 2.x.x
21+
- name: common
22+
repository: oci://registry-1.docker.io/bitnamicharts
23+
tags:
24+
- bitnami-common
25+
version: 2.x.x
2626
description: Redis(R) is an open source, advanced key-value store. It is often referred to as a data structure server since keys can contain strings, hashes, lists, sets and sorted sets.
2727
home: https://bitnami.com
2828
icon: https://bitnami.com/assets/stacks/redis/img/redis-stack-220x234.png
2929
keywords:
30-
- redis
31-
- keyvalue
32-
- database
30+
- redis
31+
- keyvalue
32+
- database
3333
maintainers:
34-
- name: Broadcom, Inc. All Rights Reserved.
35-
url: https://github.com/bitnami/charts
34+
- name: Broadcom, Inc. All Rights Reserved.
35+
url: https://github.com/bitnami/charts
3636
name: redis
3737
sources:
38-
- https://github.com/bitnami/charts/tree/main/bitnami/redis
39-
version: 19.6.1
38+
- https://github.com/bitnami/charts/tree/main/bitnami/redis
39+
version: 19.6.2

‎bitnami/redis/README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -437,7 +437,8 @@ helm install my-release --set master.persistence.existingClaim=PVC_NAME oci://RE
437437
| ----------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------ |
438438
| `global.imageRegistry` | Global Docker image registry | `""` |
439439
| `global.imagePullSecrets` | Global Docker registry secret names as an array | `[]` |
440-
| `global.storageClass` | Global StorageClass for Persistent Volume(s) | `""` |
440+
| `global.defaultStorageClass` | Global default StorageClass for Persistent Volume(s) | `""` |
441+
| `global.storageClass` | DEPRECATED: use global.defaultStorageClass instead | `""` |
441442
| `global.redis.password` | Global Redis&reg; password (overrides `auth.password`) | `""` |
442443
| `global.compatibility.openshift.adaptSecurityContext` | Adapt the securityContext sections of the deployment to make them compatible with Openshift restricted-v2 SCC: remove runAsUser, runAsGroup and fsGroup and let the platform use their allowed default IDs. Possible values: auto (apply if the detected running cluster is Openshift), force (perform the adaptation always), disabled (do not perform adaptation) | `auto` |
443444

‎bitnami/redis/values.yaml

+3-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@
99

1010
## @param global.imageRegistry Global Docker image registry
1111
## @param global.imagePullSecrets Global Docker registry secret names as an array
12-
## @param global.storageClass Global StorageClass for Persistent Volume(s)
12+
## @param global.defaultStorageClass Global default StorageClass for Persistent Volume(s)
13+
## @param global.storageClass DEPRECATED: use global.defaultStorageClass instead
1314
## @param global.redis.password Global Redis&reg; password (overrides `auth.password`)
1415
##
1516
global:
@@ -19,6 +20,7 @@ global:
1920
## - myRegistryKeySecretName
2021
##
2122
imagePullSecrets: []
23+
defaultStorageClass: ""
2224
storageClass: ""
2325
redis:
2426
password: ""

0 commit comments

Comments
 (0)
Please sign in to comment.