Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions charts/redis-ha/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ keywords:
- redis
- keyvalue
- database
version: 4.37.0
appVersion: 8.2.4
version: 4.38.0
appVersion: 8.8.0
description: This Helm chart provides a highly available Redis implementation with a master/slave configuration and uses Sentinel sidecars for failover management
icon: https://img.icons8.com/external-tal-revivo-shadow-tal-revivo/24/external-redis-an-in-memory-data-structure-project-implementing-a-distributed-logo-shadow-tal-revivo.png
maintainers:
Expand Down
10 changes: 5 additions & 5 deletions charts/redis-ha/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,9 @@ The following table lists the configurable parameters of the Redis chart and the
| `authKey` | Defines the key holding the redis password in existing secret. | string | `"auth"` |
| `authSecretAnnotations` | Annotations for auth secret | object | `{}` |
| `configmap.labels` | Custom labels for the redis configmap | object | `{}` |
| `configmapTest.image` | Image for redis-ha-configmap-test hook | object | `{"repository":"koalaman/shellcheck","tag":"v0.10.0"}` |
| `configmapTest.image` | Image for redis-ha-configmap-test hook | object | `{"repository":"koalaman/shellcheck","tag":"v0.11.0"}` |
| `configmapTest.image.repository` | Repository of the configmap shellcheck test image. | string | `"koalaman/shellcheck"` |
| `configmapTest.image.tag` | Tag of the configmap shellcheck test image. | string | `"v0.10.0"` |
| `configmapTest.image.tag` | Tag of the configmap shellcheck test image. | string | `"v0.11.0"` |
| `configmapTest.resources` | Resources for the ConfigMap test pod | object | `{}` |
| `containerSecurityContext` | Security context to be added to the Redis containers. | object | `{"allowPrivilegeEscalation":false,"capabilities":{"drop":["ALL"]},"runAsNonRoot":true,"runAsUser":1000,"seccompProfile":{"type":"RuntimeDefault"}}` |
| `emptyDir` | Configuration of `emptyDir`, used only if persistentVolume is disabled and no hostPath specified | object | `{}` |
Expand All @@ -88,7 +88,7 @@ The following table lists the configurable parameters of the Redis chart and the
| `hostPath.path` | Use this path on the host for data storage. path is evaluated as template so placeholders are replaced | string | `""` |
| `image.pullPolicy` | Redis image pull policy | string | `"IfNotPresent"` |
| `image.repository` | Redis image repository | string | `"public.ecr.aws/docker/library/redis"` |
| `image.tag` | Redis image tag | string | `"8.2.1-alpine"` |
| `image.tag` | Redis image tag | string | `"8.8.0-alpine"` |
| `imagePullSecrets` | Reference to one or more secrets to be used when pulling redis images | list | `[]` |
| `init.resources` | Extra init resources | object | `{}` |
| `labels` | Custom labels for the redis pod | object | `{}` |
Expand Down Expand Up @@ -184,7 +184,7 @@ The following table lists the configurable parameters of the Redis chart and the
| `sysctlImage.registry` | sysctlImage Init container registry | string | `"public.ecr.aws/docker/library"` |
| `sysctlImage.repository` | sysctlImage Init container name | string | `"busybox"` |
| `sysctlImage.resources` | sysctlImage resources | object | `{}` |
| `sysctlImage.tag` | sysctlImage Init container tag | string | `"1.34.1"` |
| `sysctlImage.tag` | sysctlImage Init container tag | string | `"1.38.0"` |
| `tls.caCertFile` | Name of CA certificate file | string | `"ca.crt"` |
| `tls.certFile` | Name of certificate file | string | `"redis.crt"` |
| `tls.dhParamsFile` | Name of Diffie-Hellman (DH) key exchange parameters file (Example: redis.dh) | string | `nil` |
Expand Down Expand Up @@ -350,7 +350,7 @@ The following table lists the configurable parameters of the Redis chart and the
| `exporter.serviceMonitor.relabelings` | | list | `[]` |
| `exporter.serviceMonitor.telemetryPath` | Set path to redis-exporter telemtery-path (default is /metrics) | string | `""` |
| `exporter.serviceMonitor.timeout` | Set timeout for scrape (default is 10s) | string | `""` |
| `exporter.tag` | Exporter image tag | string | `"v1.67.0"` |
| `exporter.tag` | Exporter image tag | string | `"v1.86.0"` |
| `prometheusRule.additionalLabels` | Additional labels to be set in metadata. | object | `{}` |
| `prometheusRule.enabled` | If true, creates a Prometheus Operator PrometheusRule. | bool | `false` |
| `prometheusRule.interval` | How often rules in the group are evaluated (falls back to `global.evaluation_interval` if not set). | string | `"10s"` |
Expand Down
8 changes: 4 additions & 4 deletions charts/redis-ha/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ image:
# -- Redis image repository
repository: public.ecr.aws/docker/library/redis
# -- Redis image tag
tag: 8.2.4-alpine
tag: 8.8.0-alpine
# -- Redis image pull policy
pullPolicy: IfNotPresent

Expand Down Expand Up @@ -70,7 +70,7 @@ configmapTest:
# -- Repository of the configmap shellcheck test image.
repository: koalaman/shellcheck
# -- Tag of the configmap shellcheck test image.
tag: v0.10.0
tag: v0.11.0
# -- Resources for the ConfigMap test pod
resources: {}

Expand Down Expand Up @@ -361,7 +361,7 @@ sysctlImage:
# -- sysctlImage Init container name
repository: busybox
# -- sysctlImage Init container tag
tag: 1.34.1
tag: 1.38.0
# -- sysctlImage Init container pull policy
pullPolicy: Always
# -- Mount the host `/sys` folder to `/host-sys`
Expand Down Expand Up @@ -750,7 +750,7 @@ exporter:
# -- Exporter image
image: quay.io/oliver006/redis_exporter
# -- Exporter image tag
tag: v1.80.2
tag: v1.86.0
# -- Exporter image pullPolicy
pullPolicy: IfNotPresent

Expand Down
Loading