Skip to content

Commit

Permalink
[stable/prometheus-redis-exporter] Fix secret key path in deployment (h…
Browse files Browse the repository at this point in the history
…elm#21259)

* Update secret key path in deployment

Signed-off-by: Ken Thompson <ken.thompson23@gmail.com>

* Clarify use of SSL connections in redis address

Signed-off-by: Ken Thompson <ken.thompson23@gmail.com>

* Update chart version

Signed-off-by: Ken Thompson <ken.thompson23@gmail.com>
  • Loading branch information
k8s-ci-robot authored and Ian Levesque committed Jul 13, 2020
1 parent 57c7dfb commit 7fd8b69
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion stable/prometheus-redis-exporter/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v1
appVersion: 1.3.4
description: Prometheus exporter for Redis metrics
name: prometheus-redis-exporter
version: 3.2.2
version: 3.2.3
home: https://github.com/oliver006/redis_exporter
sources:
- https://github.com/oliver006/redis_exporter
Expand Down
2 changes: 1 addition & 1 deletion stable/prometheus-redis-exporter/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ The following table lists the configurable parameters and their default values.
| `service.port` | service external port | `9121` |
| `service.annotations` | Custom annotations for service | `{}` |
| `service.labels` | Additional custom labels for the service | `{}` |
| `redisAddress` | Address of the Redis instance to scrape | `redis://myredis:6379` |
| `redisAddress` | Address of the Redis instance to scrape. Use `rediss://` for SSL. | `redis://myredis:6379` |
| `annotations` | pod annotations for easier discovery | {} |
| `rbac.create` | Specifies whether RBAC resources should be created.| `true` |
| `rbac.pspEnabled` | Specifies whether a PodSecurityPolicy should be created.| `true` |
Expand Down
2 changes: 1 addition & 1 deletion stable/prometheus-redis-exporter/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ spec:
valueFrom:
secretKeyRef:
name: {{ .Values.auth.secret.name }}
key: {{ .Values.secret.key }}
key: {{ .Values.auth.secret.key }}
{{- else }}
value: {{ .Values.auth.redisPassword }}
{{- end }}
Expand Down

0 comments on commit 7fd8b69

Please sign in to comment.