fix(argo-cd): Correct oliver006/redis_exporter image tag (#3231)

* fix(argo-cd): Correct oliver006/redis_exporter image tag

Signed-off-by: yu-croco <yu.croco@gmail.com>

* fix: add CI for redis-ha redis-exporter sidecar

Signed-off-by: yu-croco <yu.croco@gmail.com>

* chore: enable redis-exporter in defaut ci

Signed-off-by: yu-croco <yu.croco@gmail.com>

---------

Signed-off-by: yu-croco <yu.croco@gmail.com>
This commit is contained in:
Aikawa 2025-04-02 15:07:41 +09:00 committed by GitHub
parent e7a05a7bc8
commit eb0f0af836
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 10 additions and 4 deletions

View file

@ -3,7 +3,7 @@ appVersion: v2.14.8
kubeVersion: ">=1.25.0-0" kubeVersion: ">=1.25.0-0"
description: A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes. description: A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes.
name: argo-cd name: argo-cd
version: 7.8.19 version: 7.8.20
home: https://github.com/argoproj/argo-helm home: https://github.com/argoproj/argo-helm
icon: https://argo-cd.readthedocs.io/en/stable/assets/logo.png icon: https://argo-cd.readthedocs.io/en/stable/assets/logo.png
sources: sources:
@ -27,4 +27,4 @@ annotations:
url: https://argoproj.github.io/argo-helm/pgp_keys.asc url: https://argoproj.github.io/argo-helm/pgp_keys.asc
artifacthub.io/changes: | artifacthub.io/changes: |
- kind: fixed - kind: fixed
description: Moved to oliver006/redis_exporter to support multi-arch images (also for non-HA redis) description: Correct oliver006/redis_exporter image tag

View file

@ -1262,7 +1262,7 @@ NOTE: Any values you put under `.Values.configs.cm` are passed to argocd-cm Conf
| redis.exporter.env | list | `[]` | Environment variables to pass to the Redis exporter | | redis.exporter.env | list | `[]` | Environment variables to pass to the Redis exporter |
| redis.exporter.image.imagePullPolicy | string | `""` (defaults to global.image.imagePullPolicy) | Image pull policy for the redis-exporter | | redis.exporter.image.imagePullPolicy | string | `""` (defaults to global.image.imagePullPolicy) | Image pull policy for the redis-exporter |
| redis.exporter.image.repository | string | `"ghcr.io/oliver006/redis_exporter"` | Repository to use for the redis-exporter | | redis.exporter.image.repository | string | `"ghcr.io/oliver006/redis_exporter"` | Repository to use for the redis-exporter |
| redis.exporter.image.tag | string | `"1.69.0"` | Tag to use for the redis-exporter | | redis.exporter.image.tag | string | `"v1.69.0"` | Tag to use for the redis-exporter |
| redis.exporter.livenessProbe.enabled | bool | `false` | Enable Kubernetes liveness probe for Redis exporter | | redis.exporter.livenessProbe.enabled | bool | `false` | Enable Kubernetes liveness probe for Redis exporter |
| redis.exporter.livenessProbe.failureThreshold | int | `5` | Minimum consecutive failures for the [probe] to be considered failed after having succeeded | | redis.exporter.livenessProbe.failureThreshold | int | `5` | Minimum consecutive failures for the [probe] to be considered failed after having succeeded |
| redis.exporter.livenessProbe.initialDelaySeconds | int | `30` | Number of seconds after the container has started before [probe] is initiated | | redis.exporter.livenessProbe.initialDelaySeconds | int | `30` | Number of seconds after the container has started before [probe] is initiated |

View file

@ -1,3 +1,7 @@
# Test with default values # Test with default values
crds: crds:
keep: false keep: false
redis:
exporter:
enabled: true

View file

@ -4,6 +4,8 @@ crds:
redis-ha: redis-ha:
enabled: true enabled: true
exporter:
enabled: true
server: server:
autoscaling: autoscaling:

View file

@ -1308,7 +1308,7 @@ redis:
# -- Repository to use for the redis-exporter # -- Repository to use for the redis-exporter
repository: ghcr.io/oliver006/redis_exporter repository: ghcr.io/oliver006/redis_exporter
# -- Tag to use for the redis-exporter # -- Tag to use for the redis-exporter
tag: 1.69.0 tag: v1.69.0
# -- Image pull policy for the redis-exporter # -- Image pull policy for the redis-exporter
# @default -- `""` (defaults to global.image.imagePullPolicy) # @default -- `""` (defaults to global.image.imagePullPolicy)
imagePullPolicy: "" imagePullPolicy: ""