Skip to content

Commit

Permalink
refactor(redis): re-order values, update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
pascaliske committed Jul 29, 2024
1 parent 8fb7a29 commit 2220a4c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion charts/redis/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

> A Helm chart for Redis
[![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ](https://charts.pascaliske.dev/charts/redis/)[![Version: 1.3.0](https://img.shields.io/badge/Version-1.3.0-informational?style=flat-square) ](https://charts.pascaliske.dev/charts/redis/)[![AppVersion: 7.2.5](https://img.shields.io/badge/AppVersion-7.2.5-informational?style=flat-square) ](https://charts.pascaliske.dev/charts/redis/)
[![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ](https://charts.pascaliske.dev/charts/redis/)[![Version: 1.4.0](https://img.shields.io/badge/Version-1.4.0-informational?style=flat-square) ](https://charts.pascaliske.dev/charts/redis/)[![AppVersion: 7.2.5](https://img.shields.io/badge/AppVersion-7.2.5-informational?style=flat-square) ](https://charts.pascaliske.dev/charts/redis/)

* <https://github.com/pascaliske/helm-charts>
* <https://github.com/docker-library/redis>
Expand Down Expand Up @@ -67,6 +67,7 @@ The following values can be used to adjust the helm chart.
| ports.redis.nodePort | string | `nil` | The external port used if `.service.type` == `NodePort`. |
| ports.redis.port | int | `6379` | The port used as internal port and cluster-wide port if `.service.type` == `ClusterIP`. |
| ports.redis.protocol | string | `"TCP"` | The protocol used for the service. |
| priorityClassName | string | `""` | Optional priority class name to be used for pods. |
| redisExporter.enabled | bool | `false` | Enable optional redis exporter instance as sidecar container. |
| redisExporter.image | object | `{"pullPolicy":"IfNotPresent","repository":"oliver006/redis_exporter","tag":"latest"}` | Image for the metric exporter |
| redisExporter.image.pullPolicy | string | `"IfNotPresent"` | The pull policy for the exporter. |
Expand Down
6 changes: 3 additions & 3 deletions charts/redis/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,9 @@ serviceAccount:
# -- Specify the service account used for the controller.
name: ''

# -- Optional priority class name to be used for pods.
priorityClassName: ''

# -- Pod-level security attributes. More info [here](https://kubernetes.io/docs/reference/kubernetes-api/workload-resources/pod-v1/#security-context).
securityContext: {}
# fsGroup: 1000
Expand All @@ -140,6 +143,3 @@ resources: {}
# requests:
# cpu: 100m
# memory: 128Mi

# -- Optional priority class to be used for Redis pods
priorityClassName: ""

0 comments on commit 2220a4c

Please sign in to comment.