diff --git a/charts/ghost/Chart.yaml b/charts/ghost/Chart.yaml
index cf1b714c6b5daa407a92ca1db455ae680d6fabcc..61ab3e00c6a880d53c625ccc9aa3270489839f11 100644
--- a/charts/ghost/Chart.yaml
+++ b/charts/ghost/Chart.yaml
@@ -7,7 +7,7 @@ type: application
 maintainers:
   - name: groundhog2k
 
-version: 0.35.1
+version: 0.35.2
 
 appVersion: "4.34.3"
 
diff --git a/charts/ghost/README.md b/charts/ghost/README.md
index 4de700569aca741240423050344f4c9d1cec13ea..88779b06283bc70f27fc0d5157ef5d46c922cb0f 100644
--- a/charts/ghost/README.md
+++ b/charts/ghost/README.md
@@ -1,6 +1,6 @@
 # Ghost
 
-![Version: 0.35.1](https://img.shields.io/badge/Version-0.35.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 4.34.3](https://img.shields.io/badge/AppVersion-4.34.3-informational?style=flat-square)
+![Version: 0.35.2](https://img.shields.io/badge/Version-0.35.2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 4.34.3](https://img.shields.io/badge/AppVersion-4.34.3-informational?style=flat-square)
 
 ## Changelog
 
diff --git a/charts/ghost/RELEASENOTES.md b/charts/ghost/RELEASENOTES.md
index 1e579565c42bb04b75c908a3c485fd83a6a205c5..536b0e8490a319c08becfcafaa10bb8d579fab42 100644
--- a/charts/ghost/RELEASENOTES.md
+++ b/charts/ghost/RELEASENOTES.md
@@ -9,4 +9,5 @@
 | 0.34.0 | 4.33.1 | Upgraded to Ghost 4.33.1 |
 | 0.35.0 | 4.34.0 | Upgraded to Ghost 4.34.0 |
 | 0.35.1 | 4.34.3 | Upgraded to Ghost 4.34.3 |
+| 0.35.2 | 4.34.3 | Removed chart workaround introduced with #686 |
 | | | |
diff --git a/charts/ghost/templates/deployment.yaml b/charts/ghost/templates/deployment.yaml
index 9cf6f694b66653936561fabdb68a0e13ea735241..997f6828e82e0bb4711a921d128e43d90250e9f2 100644
--- a/charts/ghost/templates/deployment.yaml
+++ b/charts/ghost/templates/deployment.yaml
@@ -35,18 +35,6 @@ spec:
       securityContext:
         {{- toYaml . | nindent 8 }}
       {{- end }}
-      initContainers:
-        - name: {{ .Chart.Name }}-init
-          {{- with .Values.securityContext }}
-          securityContext:
-            {{- toYaml . | nindent 12 }}
-          {{- end }}
-          image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
-          imagePullPolicy: {{ .Values.image.pullPolicy }}
-          volumeMounts:
-            - name: versions
-              mountPath: /versions
-          command: [ "/bin/bash", "-c", "cp -R /var/lib/ghost/versions/* /versions" ]
       containers:
         - name: {{ .Chart.Name }}
           {{- with .Values.securityContext }}
@@ -172,8 +160,6 @@ spec:
           volumeMounts:
             - mountPath: /tmp
               name: tmp
-            - mountPath: /var/lib/ghost/versions
-              name: versions
             - mountPath: /var/lib/ghost/content
               name: ghost-vol
       {{- with .Values.nodeSelector }}
@@ -191,8 +177,6 @@ spec:
       volumes:
         - name: tmp
           emptyDir: {}
-        - name: versions
-          emptyDir: {}
         - name: ghost-vol
         {{- if .Values.storage.persistentVolumeClaimName }}
           persistentVolumeClaim: