diff --git a/charts/redis/Chart.yaml b/charts/redis/Chart.yaml
index 7a435e716f4037c81e35b2dbbcd57df4d294604c..8613cb161dd1e5556639faee13c9fcb5ce59c01c 100644
--- a/charts/redis/Chart.yaml
+++ b/charts/redis/Chart.yaml
@@ -8,7 +8,7 @@ maintainers:
   - name: groundhog2k
 
 # This is the chart version
-version: 0.4.5
+version: 0.4.6
 
 # This is the version number of the application being deployed.
 appVersion: "6.2.4"
diff --git a/charts/redis/README.md b/charts/redis/README.md
index f4d06bd15e02ae5f607098f46a7026c57c222dcd..fef2d836418233ef8fa35b557883ffee33a215a0 100644
--- a/charts/redis/README.md
+++ b/charts/redis/README.md
@@ -1,6 +1,6 @@
 # Redis
 
-![Version: 0.4.5](https://img.shields.io/badge/Version-0.4.5-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 6.2.4](https://img.shields.io/badge/AppVersion-6.2.4-informational?style=flat-square)
+![Version: 0.4.6](https://img.shields.io/badge/Version-0.4.6-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 6.2.4](https://img.shields.io/badge/AppVersion-6.2.4-informational?style=flat-square)
 
 A Helm chart for Redis on Kubernetes
 
diff --git a/charts/redis/templates/statefulset.yaml b/charts/redis/templates/statefulset.yaml
index b080d16e683efd8eaea0de3b6213b819ea5b8418..6639124ea6758691243b3a8581312da016d0fb76 100644
--- a/charts/redis/templates/statefulset.yaml
+++ b/charts/redis/templates/statefulset.yaml
@@ -123,10 +123,10 @@ spec:
           command:
             - redis-server
           args:
+            - /data/conf/redis.conf
             {{- range .Values.args }}
             - {{ . }}
             {{- end }}
-            - /data/conf/redis.conf
           {{- with .Values.env }}
           env:
             {{- toYaml . | nindent 12 }}
@@ -193,10 +193,10 @@ spec:
           command:
             - redis-sentinel
           args:
+            - /data/conf/sentinel.conf
             {{- range .Values.sentinelArgs }}
             - {{ . }}
             {{- end }}
-            - /data/conf/sentinel.conf
           {{- with .Values.env }}
           env:
             {{- toYaml . | nindent 12 }}