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
6 changes: 4 additions & 2 deletions Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,20 +21,22 @@ annotations:
- name: wolfi-base
image: cgr.dev/chainguard/wolfi-base:latest
- name: redis-exporter
image: docker.io/oliver006/redis_exporter:v1.80.0
image: cgr.dev/chainguard/prometheus-redis-exporter:latest
- name: kubectl
image: cgr.dev/chainguard/kubectl:latest
artifacthub.io/containsSecurityUpdates: "true"
artifacthub.io/prerelease: "false"
artifacthub.io/changes: |
- kind: security
description: Switch to Chainguard images for zero CVE (valkey, kubectl, wolfi-base)
description: Switch to Chainguard images for zero CVE (valkey, kubectl, wolfi-base, prometheus-redis-exporter)
- kind: changed
description: Update container user from 999 to 65532 (Chainguard default)
- kind: changed
description: Simplify health check scripts for distroless compatibility
- kind: changed
description: Update pre-upgrade hook to work without shell
- kind: added
description: Automated version checking workflow for weekly updates
keywords:
- valkey
- redis
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -203,8 +203,8 @@ helm install my-valkey valkey/valkey \
| Parameter | Description | Default |
|-----------|-------------|---------|
| `metrics.enabled` | Enable Prometheus exporter | `false` |
| `metrics.image.repository` | Exporter image | `oliver006/redis_exporter` |
| `metrics.image.tag` | Exporter tag | `v1.80.0` |
| `metrics.image.repository` | Exporter image | `chainguard/prometheus-redis-exporter` |
| `metrics.image.tag` | Exporter tag | `latest` |
| `metrics.serviceMonitor.enabled` | Create ServiceMonitor | `false` |
| `metrics.podMonitor.enabled` | Create PodMonitor | `false` |

Expand Down
6 changes: 3 additions & 3 deletions values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -523,15 +523,15 @@
"properties": {
"registry": {
"type": "string",
"default": "docker.io"
"default": "cgr.dev"
},
"repository": {
"type": "string",
"default": "oliver006/redis_exporter"
"default": "chainguard/prometheus-redis-exporter"
},
"tag": {
"type": "string",
"default": "v1.80.0"
"default": "latest"
},
"pullPolicy": {
"type": "string",
Expand Down
7 changes: 4 additions & 3 deletions values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -453,10 +453,11 @@ metrics:
enabled: false
port: 9121

# Using Chainguard image for zero CVE security (same as Valkey)
image:
registry: docker.io
repository: oliver006/redis_exporter
tag: "v1.80.0"
registry: cgr.dev
repository: chainguard/prometheus-redis-exporter
tag: "latest"
pullPolicy: IfNotPresent

containerSecurityContext:
Expand Down