diff --git a/charts/sonarr/Chart.yaml b/charts/sonarr/Chart.yaml
index 58ce7eac..344287b5 100644
--- a/charts/sonarr/Chart.yaml
+++ b/charts/sonarr/Chart.yaml
@@ -2,7 +2,7 @@ apiVersion: v1
 appVersion: 2.0.0.5344-ls60
 description: Sonarr is a television show downloading client
 name: sonarr
-version: 4.0.0
+version: 4.1.0
 keywords:
   - sonarr
   - usenet
diff --git a/charts/sonarr/README.md b/charts/sonarr/README.md
index fb6d2bb3..f099ac01 100644
--- a/charts/sonarr/README.md
+++ b/charts/sonarr/README.md
@@ -89,12 +89,14 @@ The following tables lists the configurable parameters of the Sentry chart and t
 | `persistence.config.size`                   | Size of persistent volume claim                                                              | `1Gi`                                          |
 | `persistence.config.existingClaim`          | Use an existing PVC to persist data                                                          | `nil`                                          |
 | `persistence.config.storageClass`           | Type of persistent volume claim                                                              | `-`                                            |
+| `persistence.config.subPath`                | Mount a sub directory if set                                                                    | `nil          `                              |
 | `persistence.config.accessMode`             | Persistence access mode                                                                      | `ReadWriteOnce`                                |
 | `persistence.config.skipuninstall`          | Do not delete the pvc upon helm uninstall                                                    | `false`                                        |
 | `persistence.media.enabled`                 | Use persistent volume for media                                                              | `true`                                         |
 | `persistence.media.size`                    | Size of persistent volume claim                                                              | `10Gi`                                         |
 | `persistence.media.existingClaim`           | Use an existing PVC to persist data                                                          | `nil`                                          |
 | `persistence.media.storageClass`            | Type of persistent volume claim                                                              | `-`                                            |
+| `persistence.media.subPath`                | Mount a sub directory if set                                                                    | `nil          `                              |
 | `persistence.media.accessMode`              | Persistence access mode                                                                      | `ReadWriteOnce`                                |
 | `persistence.media.skipuninstall`           | Do not delete the pvc upon helm uninstall                                                    | `false`                                        |
 | `persistence.extraExistingClaimMounts`      | Optionally add multiple existing claims                                                      | `[]`                                           |
diff --git a/charts/sonarr/templates/deployment.yaml b/charts/sonarr/templates/deployment.yaml
index 96c5939d..15d010c6 100644
--- a/charts/sonarr/templates/deployment.yaml
+++ b/charts/sonarr/templates/deployment.yaml
@@ -66,6 +66,9 @@ spec:
           volumeMounts:
             - mountPath: /config
               name: config
+            {{- if .Values.persistence.config.subPath }}
+              subPath: "{{ .Values.persistence.config.subPath }}"
+            {{- end }}
             - mountPath: /media
               name: media
             {{- if .Values.persistence.media.subPath }}
diff --git a/charts/sonarr/values.yaml b/charts/sonarr/values.yaml
index 66bd269a..d0e2e2a3 100644
--- a/charts/sonarr/values.yaml
+++ b/charts/sonarr/values.yaml
@@ -97,6 +97,7 @@ persistence:
     ## If you want to reuse an existing claim, you can pass the name of the PVC using
     ## the existingClaim variable
     # existingClaim: your-claim
+    # subPath: some-subpath
     accessMode: ReadWriteOnce
     size: 1Gi
     ## Do not delete the pvc upon helm uninstall