diff --git a/docs/upgrading.rst b/docs/upgrading.rst
index ba810f1ef325c4632a658474e6484d7f8ed074c3..2a51bdd28392f38fcb635aa5dcef1acea8baa0db 100644
--- a/docs/upgrading.rst
+++ b/docs/upgrading.rst
@@ -21,6 +21,16 @@ you get started!**
    wget https://open.greenhost.net/stackspin/stackspin/-/raw/main/upgrade-scripts/to-0.8.0/rename-to-stackspin.sh
    chmod +x rename-to-stackspin.sh
 
+First of all, if you have any ``-override`` configmaps or secrets, you'll want
+to move them from the ``oas`` namespace to the ``stackspin`` namespace, and from
+``oas-apps`` to ``stackspin-apps`` (you also need to make these namespaces
+first). You also need to rename them from ``oas-X`` to ``stackspin-X``. You can
+use a command like this to rename the cm and move it to the right namespace.
+
+.. code:: bash
+
+   kubectl get cm -n oas-apps oas-$APP-override -o json | jq '.metadata.name="stackspin-$APP-override"' | jq '.metadata.namespace="stackspin-apps"' | kubectl apply -f -
+
 **This script will cause serious down time and it will not do everything for
 you**. Rather, it will prepare your cluster for the upgrade.
 
diff --git a/upgrade-scripts/to-0.8.0/rename-to-stackspin.sh b/upgrade-scripts/to-0.8.0/rename-to-stackspin.sh
index 0ef85a755813cd14db6fc097f47e497a5c2f58c2..35f177b6d6dc2b26195df4ce48b172af1be0a974 100644
--- a/upgrade-scripts/to-0.8.0/rename-to-stackspin.sh
+++ b/upgrade-scripts/to-0.8.0/rename-to-stackspin.sh
@@ -69,7 +69,7 @@ for pvc in $oas_pvcs; do
 done
 
 # Move all PVCs to stackspin-apps namespace
-oas_apps_pvcs="nextcloud-postgresql nextcloud-mariadb nextcloud-onlyoffice-data nextcloud-files wekan datadir-rocketchat-mongodb-0 rocketchat-rocketchat wordpress-files wordpress-mariadb"
+oas_apps_pvcs="nextcloud-postgresql nextcloud-mariadb nextcloud-onlyoffice-data nextcloud-files wekan wordpress-files wordpress-mariadb"
 for pvc in $oas_apps_pvcs; do
   backup_pvc "$pvc" oas-apps stackspin-apps
 done
@@ -93,18 +93,6 @@ flux delete --silent source git openappstack
 kubectl delete ns oas
 kubectl delete ns oas-apps
 
-# Add the new source and kustomization
-flux create source git stackspin \
-  --url=https://open.greenhost.net/stackspin/stackspin \
-  --branch="main" \
-  --interval=1h
-
-flux create kustomization stackspin \
-  --source=GitRepository/stackspin \
-  --path="./flux2/cluster/base" \
-  --prune=true \
-  --interval=1h
-
-echo "All upgrades have been prepared, but Flux will have to do some work now. Check the progress of your flux kustomizations with 'flux get ks'. You can speed up the process by manually triggering flux reconciles".
-echo "Once everything seems to work, re-add your app kustomizations by re-running the install/install-\$app script"
-echo "Refer to the upgrade guide for app specific upgrades"
+echo "Now check if all the Flux kustomizations and HelmReleases have disappeared. If they haven't, wait until they have. Then you can re-run the install-stackspin.sh script and after that, re-run install-apps.sh <app> for each app you want to (re)install."
+
+echo "Refer to the upgrade guide <https://docs.stackspin.net/en/latest/upgrading.html> for app specific upgrades."