diff --git a/deploy/chart/local-path-provisioner/templates/configmap.yaml b/deploy/chart/local-path-provisioner/templates/configmap.yaml
index e19ae4faf2f7b3cfe050652b4af35f2927490454..20c6263db73cbe253a5a3d48bad8bb66735f07d6 100644
--- a/deploy/chart/local-path-provisioner/templates/configmap.yaml
+++ b/deploy/chart/local-path-provisioner/templates/configmap.yaml
@@ -36,10 +36,10 @@ data:
   helperPod.yaml: |-
     apiVersion: v1
     kind: Pod
-    namespace: {{ default .Release.Namespace .Values.helperPod.namespaceOverride }}
+    namespace: {{ default .Release.Namespace .Values.configmap.helperPod.namespaceOverride }}
     metadata:
-      name: {{ .Values.helperPod.name }}
-      {{- with .Values.helperPod.annotations }}
+      name: {{ .Values.configmap.helperPod.name }}
+      {{- with .Values.configmap.helperPod.annotations }}
       annotations:
         {{- toYaml . | nindent 8 }}
       {{- end }}
diff --git a/deploy/chart/local-path-provisioner/values.yaml b/deploy/chart/local-path-provisioner/values.yaml
index de76024d5032af283c515ef1c5d4a9d6185c05b9..9d515d95dc5b648e4f75480586204270783bb910 100644
--- a/deploy/chart/local-path-provisioner/values.yaml
+++ b/deploy/chart/local-path-provisioner/values.yaml
@@ -156,12 +156,11 @@ configmap:
     #!/bin/sh
     set -eu
     rm -rf "$VOL_DIR"
-
-helperPod:
-  # Allows to run the helper pod in another namespace. Uses release namespace by default.
-  namespaceOverride: ""
-  name: "helper-pod"
-  annotations: {}
+  helperPod:
+    # Allows to run the helper pod in another namespace. Uses release namespace by default.
+    namespaceOverride: ""
+    name: "helper-pod"
+    annotations: {}
 
 # Number of provisioner worker threads to call provision/delete simultaneously.
 # workerThreads: 4