diff --git a/website/src/content/docs/deprecated/SCALE/img/volumesnapshotclass.png b/website/src/content/docs/clustertool/migrations/img/volumesnapshotclass.png similarity index 100% rename from website/src/content/docs/deprecated/SCALE/img/volumesnapshotclass.png rename to website/src/content/docs/clustertool/migrations/img/volumesnapshotclass.png diff --git a/website/src/content/docs/clustertool/migrations/scale.md b/website/src/content/docs/clustertool/migrations/scale.md index cd94a083a22..5dc4f742678 100644 --- a/website/src/content/docs/clustertool/migrations/scale.md +++ b/website/src/content/docs/clustertool/migrations/scale.md @@ -162,3 +162,123 @@ Its **NOT** possible *in any way* to do the migration after updating to TrueNAS This is correct, all this data will NOT migrate. This cannot be helped or patched. + +## Setting up Backups and Restore on TrueNAS SCALE + +:::danger + +TrueNAS SCALE Apps are considered Deprecated. We heavily recommend using a more mature Kubernetes platform such as "TalosOS" instead, and no longer offer an apps/charts catalogue for SCALE users to install. The below docs exist purely as historical references and may be removed at any time. + +::: + +:::caution[The below is a work in progress] + +We've recently completely reworked the way we handle backups, moving away from platform-specific solutions to a "one size fits everyone" system using VolSync and CNPG backups. We're also making it known that the prior version of this guide will **not** work on TrueNAS SCALE 24.04.X "DragonFish". This updated guide has been written with the best efforts of the staff and tested as best possible. We are not responsible if it doesn't work for every scenario or user situation. + +::: + +### Requirements + +#### System Apps + +As this is a SCALE-specific guide, we expect users to have fully followed the SCALE quick-start [guide](/ and hence have installed _all_ [operators](/ from the `system` train as listed there. This includes `VolSync`, which depends on `Prometheus-Operator`, so ensure you have installed `Prometheus-Operator` prior to installing `VolSync`. + +#### S3 Provider Setup + +### Backup Configuration + +:::caution[Credentials] + +Do not add the credentials inside the VolSync chart. This won't work as they need to be added to each chart individually. + +::: + +Enter your S3 credentials under the `credentials` section in each app you want to enable backup/restore functionality on. + +![S3 Credentials](./img/s3_scale_credentials.png) + +#### PVC Backups + +PVC data can be easily backed up to S3 storage by using our integrated VolSync support. For each individual app, the `VolSync Destination (Restore)` option _must_ set on creation of the app by doing the following: + +1. Add `VolSync` to each persistence object you want synced as below + +![S3 Scale VolSync ](./img/s3_scale_pvc_backup.png) + +2. Add the name you gave to the S3 credentials earlier, under the `credentials` section of VolumeSnapshots + +3. Enable the `VolSync Source (backup)` and/or `VolSync Destination Restore)` options as desired + +4. Confirm the data is being sent to your S3 host after ~5 minutes + +:::note[Bucket Creation] + +You do not have to manually create the bucket beforehand, although this is recommended to ensure the bucket's name is available beforehand. + +::: + +#### CNPG Database Backups + +CNPG-backed PostgreSQL databases have their own S3 backup system. We have integrated it in such a way that they can safely share a bucket with the above PVC backups. + +For each app: + +1. Add CNPG backups to each database you want backed up like shown below + +2. Add the name you gave to the S3 credentials earlier, under the `credentials` section + +3. Confirm the data is being sent to your S3 host after ~5 minutes + +4. We advise you to set the "mode" to `restore`, this should prevent the app starting with an empty database upon restore. + +![S3 Scale CNPG ](./img/s3_scale_cnpg_backup.png) + +##### Exporting App Configuration + +To be done. This section will contain information to export your App configuration so it can be imported later. + +### Restoration Configuration + +:::note[SCALE Restore Functionality] + +As mentioned in our news post, this new restore functionality isn't yet functional on TrueNAS SCALE due to an [upstream bug](https://github.com/openebs/zfs-localpv/issues/536) with OpenEBS. We've submitted a bug report and will update this page once resolved. + +::: + +#### Recreating an App + +When you've no exported app configuration, you can remake the app while also restoring your PVC and CNPG backups using the steps as follows: + +1. Ensure the app name matches the name of the app previously backed up + +2. Enter the same S3 credentials from earlier, under the `credentials` section + +3. Preferably ensure all other configuration options are set precisely the same as the last time you used the app, to ensure compatibility + +#### PVC data Restoration + +PVC data restoration will happen automatically before the app starts. Please be aware this can take a while depending on the size of the backup, your connection speed, etc. + +#### CNPG Database Restore + +Before CNPG will correctly restore the database, the following modifications need to be done after recreating or importing the app configuration: + +1. Ensure you've setup CNPG backups as well as restore as it was previously + +2. Ensure the "mode" is set to `recovery` + +3. Set "revision" on your restore to match the previous **revision** setting on your backup settings + +4. Increase the **revision** on your backup setting by 1 (or set to 1 if previously empty) + +##### Importing App Configuration + +To be done. This section will contain information to import your App configuration so you do not have to manually recreate it. + +### Total System Restore and Migration to New System + +When on a completely new system, you can easily restore using the above steps with the following caveats: + +- On a non-SCALE system, the PVC backend needs to support snapshots +- The apps need to be called **exactly** the same as they were before, preferably using a previously-exported config +- If you've any non-PVC storage attached, be sure that this is still available or apps won't start until this is resolved diff --git a/website/src/content/docs/deprecated/SCALE/guides/backup-restore.md b/website/src/content/docs/deprecated/SCALE/guides/backup-restore.md deleted file mode 100644 index 7ced112831d..00000000000 --- a/website/src/content/docs/deprecated/SCALE/guides/backup-restore.md +++ /dev/null @@ -1,127 +0,0 @@ ---- -title: Backup, Migrations and Restoring -sidebar: - order: 15 ---- - -:::danger - -TrueNAS SCALE Apps are considered Deprecated. We heavily recommend using a more mature Kubernetes platform such as "TalosOS" instead, and no longer offer an apps/charts catalogue for SCALE users to install. The below docs exist purely as historical references and may be removed at any time. - -::: - -:::caution[The below is a work in progress] - -We've recently completely reworked the way we handle backups, moving away from platform-specific solutions to a "one size fits everyone" system using VolSync and CNPG backups. We're also making it known that the prior version of this guide will **not** work on TrueNAS SCALE 24.04.X "DragonFish". This updated guide has been written with the best efforts of the staff and tested as best possible. We are not responsible if it doesn't work for every scenario or user situation. - -::: - -## Requirements - -### System Apps - -As this is a SCALE-specific guide, we expect users to have fully followed the SCALE quick-start [guide](/ and hence have installed _all_ [operators](/ from the `system` train as listed there. This includes `VolSync`, which depends on `Prometheus-Operator`, so ensure you have installed `Prometheus-Operator` prior to installing `VolSync`. - -### S3 Provider Setup - -## Backup Configuration - -:::caution[Credentials] - -Do not add the credentials inside the VolSync chart. This won't work as they need to be added to each chart individually. - -::: - -Enter your S3 credentials under the `credentials` section in each app you want to enable backup/restore functionality on. - -![S3 Credentials](./img/s3_scale_credentials.png) - -### PVC Backups - -PVC data can be easily backed up to S3 storage by using our integrated VolSync support. For each individual app, the `VolSync Destination (Restore)` option _must_ set on creation of the app by doing the following: - -1. Add `VolSync` to each persistence object you want synced as below - -![S3 Scale VolSync ](./img/s3_scale_pvc_backup.png) - -2. Add the name you gave to the S3 credentials earlier, under the `credentials` section of VolumeSnapshots - -3. Enable the `VolSync Source (backup)` and/or `VolSync Destination Restore)` options as desired - -4. Confirm the data is being sent to your S3 host after ~5 minutes - -:::note[Bucket Creation] - -You do not have to manually create the bucket beforehand, although this is recommended to ensure the bucket's name is available beforehand. - -::: - -### CNPG Database Backups - -CNPG-backed PostgreSQL databases have their own S3 backup system. We have integrated it in such a way that they can safely share a bucket with the above PVC backups. - -For each app: - -1. Add CNPG backups to each database you want backed up like shown below - -2. Add the name you gave to the S3 credentials earlier, under the `credentials` section - -3. Confirm the data is being sent to your S3 host after ~5 minutes - -4. We advise you to set the "mode" to `restore`, this should prevent the app starting with an empty database upon restore. - -![S3 Scale CNPG ](./img/s3_scale_cnpg_backup.png) - -#### Exporting App Configuration - -To be done. This section will contain information to export your App configuration so it can be imported later. - -## Restoration Configuration - -:::note[SCALE Restore Functionality] - -As mentioned in our news post, this new restore functionality isn't yet functional on TrueNAS SCALE due to an [upstream bug](https://github.com/openebs/zfs-localpv/issues/536) with OpenEBS. We've submitted a bug report and will update this page once resolved. - -::: - -### Recreating an App - -When you've no exported app configuration, you can remake the app while also restoring your PVC and CNPG backups using the steps as follows: - -1. Ensure the app name matches the name of the app previously backed up - -2. Enter the same S3 credentials from earlier, under the `credentials` section - -3. Preferably ensure all other configuration options are set precisely the same as the last time you used the app, to ensure compatibility - -### PVC data Restoration - -PVC data restoration will happen automatically before the app starts. Please be aware this can take a while depending on the size of the backup, your connection speed, etc. - -### CNPG Database Restore - -Before CNPG will correctly restore the database, the following modifications need to be done after recreating or importing the app configuration: - -1. Ensure you've setup CNPG backups as well as restore as it was previously - -2. Ensure the "mode" is set to `recovery` - -3. Set "revision" on your restore to match the previous **revision** setting on your backup settings - -4. Increase the **revision** on your backup setting by 1 (or set to 1 if previously empty) - -#### Importing App Configuration - -To be done. This section will contain information to import your App configuration so you do not have to manually recreate it. - -## Total System Restore and Migration to New System - -When on a completely new system, you can easily restore using the above steps with the following caveats: - -- On a non-SCALE system, the PVC backend needs to support snapshots -- The apps need to be called **exactly** the same as they were before, preferably using a previously-exported config -- If you've any non-PVC storage attached, be sure that this is still available or apps won't start until this is resolved - -## Video Guide - -TBD diff --git a/website/src/content/docs/deprecated/SCALE/guides/cnpg-migration-guide.md b/website/src/content/docs/deprecated/SCALE/guides/cnpg-migration-guide.md deleted file mode 100644 index 599a0eeb6df..00000000000 --- a/website/src/content/docs/deprecated/SCALE/guides/cnpg-migration-guide.md +++ /dev/null @@ -1,117 +0,0 @@ ---- -title: "Postgresql Export/Import" ---- - -:::danger - -TrueNAS SCALE Apps are considered Deprecated. We heavily recommend using a more mature Kubernetes platform such as "TalosOS" instead, and no longer offer an apps/charts catalogue for SCALE users to install. The below docs exist purely as historical references and may be removed at any time. - -::: - -This guide will assist you in migrating to the new CNPG operator. - -## Prerequisites - -1. Install PGAdmin from the TrueCharts Stable train. - -2. Setup the [tcdbinfo.sh script](/ - -3. Add the system train to your TrueCharts Catalog - -![cnpg-add-system-train](./img/Dragonfish-Storage5b.png) - -## Acquire Database Credentials - -1. Run tcdbinfo.sh to get a list of database credentials. - -```bash -bash tcdbinfo.sh -``` - -![cnpg-info](./img/cnpg-info.png) - -## Connect to CNPG Databases in PGAdmin - -1. Click Add Server. - -![cnpg-pgadmin-add](./img/cnpg-pgadmin-add.png) - -2. Choose a name for the database, this will only be used to help you identify it. - -![cnpg-pgadmin-name](./img/cnpg-pgadmin-name.png) - -3. Enter database server and credentials previously acquired from tcdbinfo.sh script and save. - -![cnpg-pgadmin-creds](./img/cnpg-pgadmin-creds.png) - -## Backup CNPG Databases - -1. Right click on the database and select backup as shown below. - -![cnpg-pgadmin-backup](./img/cnpg-pgadmin-backup.png) - -2. Choose a name for the database backup and click backup. - -![cnpg-pgadmin-save](./img/cnpg-pgadmin-save.png) - -## Remove Old CNPG - -1. Run the following command in system shell as root. - -```bash -k3s kubectl delete --grace-period 30 --v=4 -k https://github.com/truecharts/manifests/delete2 -``` - -## Install cloudnative-pg - -1. Install cloudnative-pg from the system train, wait for it to go ACTIVE. - -## Prepare CNPG Apps - -1. Edit the app config of the CNPG application (home assistant in this example) and save the configuration without making any changes. - -2. Wait for all pods to be created and app to be Active. This may take a few minutes. In this example Home Assistant will show ACTIVE 3/3 when its ready. - -3. Get the name of the app deploy. - -```bash -k3s kubectl get deploy -n ix- -``` - -4. Stop the main pod of the app you are migrating. - -```bash -k3s kubectl scale deploy -n ix- --replicas=0 -``` - -![cnpg-scaled](./img/cnpg-scaled.png) - -## Restore CNPG Databases - -1. Right click on the database and select restore as shown below in PGAdmin. - -![cnpg-pgadmin-restore](./img/cnpg-pgadmin-restore.png) - -2. Select the database backup you created previously. - -![cnpg-pgadmin-restore2](./img/cnpg-pgadmin-restore2.png) - -3. Configure Data/Objects as shown below. - -![cnpg-pgadmin-restore3](./img/cnpg-pgadmin-restore3.png) - -4. Configure Options as shown below and click restore. - -![cnpg-pgadmin-restore4](./img/cnpg-pgadmin-restore4.png) - -:::caution PGAdmin Error - -PGAdmin may display an error during the restore process. This is known to occur and may be ignored if the app functions properly. - -::: - -5. Start the main pod of the app you are migrating. - -```bash -k3s kubectl scale deploy -n ix- --replicas=1 -``` diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/AddNFSShare.png b/website/src/content/docs/deprecated/SCALE/guides/img/AddNFSShare.png deleted file mode 100644 index e8242526825..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/AddNFSShare.png and /dev/null differ diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/Adminer-Export.png b/website/src/content/docs/deprecated/SCALE/guides/img/Adminer-Export.png deleted file mode 100644 index 4dde1a6fd61..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/Adminer-Export.png and /dev/null differ diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/Adminer-Import.png b/website/src/content/docs/deprecated/SCALE/guides/img/Adminer-Import.png deleted file mode 100644 index 6318a9c97a1..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/Adminer-Import.png and /dev/null differ diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/Adminer-Login.png b/website/src/content/docs/deprecated/SCALE/guides/img/Adminer-Login.png deleted file mode 100644 index e26c0fa3642..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/Adminer-Login.png and /dev/null differ diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/Adminer-Login2.png b/website/src/content/docs/deprecated/SCALE/guides/img/Adminer-Login2.png deleted file mode 100644 index bfc9b88327a..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/Adminer-Login2.png and /dev/null differ diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/AppShellStorageAdded.png b/website/src/content/docs/deprecated/SCALE/guides/img/AppShellStorageAdded.png deleted file mode 100644 index 167c200a0e1..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/AppShellStorageAdded.png and /dev/null differ diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/Apps.png b/website/src/content/docs/deprecated/SCALE/guides/img/Apps.png deleted file mode 100644 index 8d3fb8622a1..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/Apps.png and /dev/null differ diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/Apps2.png b/website/src/content/docs/deprecated/SCALE/guides/img/Apps2.png deleted file mode 100644 index 266d967e8a3..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/Apps2.png and /dev/null differ diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/Apps3.png b/website/src/content/docs/deprecated/SCALE/guides/img/Apps3.png deleted file mode 100644 index ebf96dffad8..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/Apps3.png and /dev/null differ diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/Apps4.png b/website/src/content/docs/deprecated/SCALE/guides/img/Apps4.png deleted file mode 100644 index f0c0b23290f..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/Apps4.png and /dev/null differ diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/Apps5.png b/website/src/content/docs/deprecated/SCALE/guides/img/Apps5.png deleted file mode 100644 index 7a6f2d17a89..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/Apps5.png and /dev/null differ diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/Apps6.png b/website/src/content/docs/deprecated/SCALE/guides/img/Apps6.png deleted file mode 100644 index d075fca2351..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/Apps6.png and /dev/null differ diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/Apps7.png b/website/src/content/docs/deprecated/SCALE/guides/img/Apps7.png deleted file mode 100644 index b9b21a899aa..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/Apps7.png and /dev/null differ diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/BlankAddAppStorage.png b/website/src/content/docs/deprecated/SCALE/guides/img/BlankAddAppStorage.png deleted file mode 100644 index ad096ab0284..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/BlankAddAppStorage.png and /dev/null differ diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/Copy-App-Config.png b/website/src/content/docs/deprecated/SCALE/guides/img/Copy-App-Config.png deleted file mode 100644 index f7fc36e17b7..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/Copy-App-Config.png and /dev/null differ diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/CustomVPNprovider.png b/website/src/content/docs/deprecated/SCALE/guides/img/CustomVPNprovider.png deleted file mode 100644 index 1208f56f9fb..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/CustomVPNprovider.png and /dev/null differ diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/Dragonfish-Storage1.png b/website/src/content/docs/deprecated/SCALE/guides/img/Dragonfish-Storage1.png deleted file mode 100644 index b0f4df3fd2f..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/Dragonfish-Storage1.png and /dev/null differ diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/Dragonfish-Storage2.png b/website/src/content/docs/deprecated/SCALE/guides/img/Dragonfish-Storage2.png deleted file mode 100644 index c8ea34bf3e8..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/Dragonfish-Storage2.png and /dev/null differ diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/Dragonfish-Storage3.png b/website/src/content/docs/deprecated/SCALE/guides/img/Dragonfish-Storage3.png deleted file mode 100644 index f27b1087d87..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/Dragonfish-Storage3.png and /dev/null differ diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/Dragonfish-Storage4.png b/website/src/content/docs/deprecated/SCALE/guides/img/Dragonfish-Storage4.png deleted file mode 100644 index 6d4e2d5a90f..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/Dragonfish-Storage4.png and /dev/null differ diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/Dragonfish-Storage5.png b/website/src/content/docs/deprecated/SCALE/guides/img/Dragonfish-Storage5.png deleted file mode 100644 index 2232e534654..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/Dragonfish-Storage5.png and /dev/null differ diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/Dragonfish-Storage5b.png b/website/src/content/docs/deprecated/SCALE/guides/img/Dragonfish-Storage5b.png deleted file mode 100644 index 84da6d5adea..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/Dragonfish-Storage5b.png and /dev/null differ diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/Gluetun-Proxy1.png b/website/src/content/docs/deprecated/SCALE/guides/img/Gluetun-Proxy1.png deleted file mode 100644 index fa227314f5a..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/Gluetun-Proxy1.png and /dev/null differ diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/Gluetun-Proxy2.png b/website/src/content/docs/deprecated/SCALE/guides/img/Gluetun-Proxy2.png deleted file mode 100644 index 6d1870167af..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/Gluetun-Proxy2.png and /dev/null differ diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/Gluetun-Proxy3.png b/website/src/content/docs/deprecated/SCALE/guides/img/Gluetun-Proxy3.png deleted file mode 100644 index a80d2a3c450..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/Gluetun-Proxy3.png and /dev/null differ diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/Gluetun-VPN1.png b/website/src/content/docs/deprecated/SCALE/guides/img/Gluetun-VPN1.png deleted file mode 100644 index 87c3ea43194..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/Gluetun-VPN1.png and /dev/null differ diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/Gluetun-VPN2.png b/website/src/content/docs/deprecated/SCALE/guides/img/Gluetun-VPN2.png deleted file mode 100644 index b16d76141a9..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/Gluetun-VPN2.png and /dev/null differ diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/Gluetun-VPN3.png b/website/src/content/docs/deprecated/SCALE/guides/img/Gluetun-VPN3.png deleted file mode 100644 index af09692cd07..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/Gluetun-VPN3.png and /dev/null differ diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/Gluetun-VPN4.png b/website/src/content/docs/deprecated/SCALE/guides/img/Gluetun-VPN4.png deleted file mode 100644 index c2ccbdc3165..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/Gluetun-VPN4.png and /dev/null differ diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/Gluetun-VPN5.png b/website/src/content/docs/deprecated/SCALE/guides/img/Gluetun-VPN5.png deleted file mode 100644 index 2cbfe16f3ba..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/Gluetun-VPN5.png and /dev/null differ diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/Gluetun-VPN6.png b/website/src/content/docs/deprecated/SCALE/guides/img/Gluetun-VPN6.png deleted file mode 100644 index 9c1a6ce611c..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/Gluetun-VPN6.png and /dev/null differ diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/Gluetun-VPN7.png b/website/src/content/docs/deprecated/SCALE/guides/img/Gluetun-VPN7.png deleted file mode 100644 index 1bab034b641..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/Gluetun-VPN7.png and /dev/null differ diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/Gluetun-VPN8.png b/website/src/content/docs/deprecated/SCALE/guides/img/Gluetun-VPN8.png deleted file mode 100644 index bb1f1b34777..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/Gluetun-VPN8.png and /dev/null differ diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/Gluetun-vpn-log-icon.png b/website/src/content/docs/deprecated/SCALE/guides/img/Gluetun-vpn-log-icon.png deleted file mode 100644 index 6cc917c08f4..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/Gluetun-vpn-log-icon.png and /dev/null differ diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/Gluetun-vpn-log.png b/website/src/content/docs/deprecated/SCALE/guides/img/Gluetun-vpn-log.png deleted file mode 100644 index 665834e74ee..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/Gluetun-vpn-log.png and /dev/null differ diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/HeavyScript-Backup.png b/website/src/content/docs/deprecated/SCALE/guides/img/HeavyScript-Backup.png deleted file mode 100644 index a1121a513bc..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/HeavyScript-Backup.png and /dev/null differ diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/HeavyScript-Main.png b/website/src/content/docs/deprecated/SCALE/guides/img/HeavyScript-Main.png deleted file mode 100644 index ab065b50d76..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/HeavyScript-Main.png and /dev/null differ diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/HeavyScript-Restore-List.png b/website/src/content/docs/deprecated/SCALE/guides/img/HeavyScript-Restore-List.png deleted file mode 100644 index d2364b60157..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/HeavyScript-Restore-List.png and /dev/null differ diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/MariaDBenv1.png b/website/src/content/docs/deprecated/SCALE/guides/img/MariaDBenv1.png deleted file mode 100644 index 4e30f79bd2a..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/MariaDBenv1.png and /dev/null differ diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/MariaDBenv2.png b/website/src/content/docs/deprecated/SCALE/guides/img/MariaDBenv2.png deleted file mode 100644 index 966d4eaf6ca..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/MariaDBenv2.png and /dev/null differ diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/NFSAddAppStorageBlank.png b/website/src/content/docs/deprecated/SCALE/guides/img/NFSAddAppStorageBlank.png deleted file mode 100644 index ea8bfaa21b9..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/NFSAddAppStorageBlank.png and /dev/null differ diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/NFSAddAppStorageFilled.png b/website/src/content/docs/deprecated/SCALE/guides/img/NFSAddAppStorageFilled.png deleted file mode 100644 index 12c3af28b66..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/NFSAddAppStorageFilled.png and /dev/null differ diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/New-App-Config.png b/website/src/content/docs/deprecated/SCALE/guides/img/New-App-Config.png deleted file mode 100644 index 128a33db4d4..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/New-App-Config.png and /dev/null differ diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/New-App-Finish.png b/website/src/content/docs/deprecated/SCALE/guides/img/New-App-Finish.png deleted file mode 100644 index 46b3a10c749..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/New-App-Finish.png and /dev/null differ diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/OpenEBS-storage.png b/website/src/content/docs/deprecated/SCALE/guides/img/OpenEBS-storage.png deleted file mode 100644 index d8f1b047ecc..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/OpenEBS-storage.png and /dev/null differ diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/OpenEBS.png b/website/src/content/docs/deprecated/SCALE/guides/img/OpenEBS.png deleted file mode 100644 index 8926b52638b..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/OpenEBS.png and /dev/null differ diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/Replication1.png b/website/src/content/docs/deprecated/SCALE/guides/img/Replication1.png deleted file mode 100644 index f6ab59aa738..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/Replication1.png and /dev/null differ diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/Replication2.png b/website/src/content/docs/deprecated/SCALE/guides/img/Replication2.png deleted file mode 100644 index 02ab3033cd3..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/Replication2.png and /dev/null differ diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/Replication3.png b/website/src/content/docs/deprecated/SCALE/guides/img/Replication3.png deleted file mode 100644 index 8108cd99eff..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/Replication3.png and /dev/null differ diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/Sharesmain.png b/website/src/content/docs/deprecated/SCALE/guides/img/Sharesmain.png deleted file mode 100644 index 511c8c9b729..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/Sharesmain.png and /dev/null differ diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/StopAll.png b/website/src/content/docs/deprecated/SCALE/guides/img/StopAll.png deleted file mode 100644 index 094805f1fc1..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/StopAll.png and /dev/null differ diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/app-storage.png b/website/src/content/docs/deprecated/SCALE/guides/img/app-storage.png deleted file mode 100644 index 47de9534c41..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/app-storage.png and /dev/null differ diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/cnpg-add-operator-train.png b/website/src/content/docs/deprecated/SCALE/guides/img/cnpg-add-operator-train.png deleted file mode 100644 index 2e76f2d617f..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/cnpg-add-operator-train.png and /dev/null differ diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/cnpg-info.png b/website/src/content/docs/deprecated/SCALE/guides/img/cnpg-info.png deleted file mode 100644 index 10caca664f2..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/cnpg-info.png and /dev/null differ diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/cnpg-pgadmin-add.png b/website/src/content/docs/deprecated/SCALE/guides/img/cnpg-pgadmin-add.png deleted file mode 100644 index 0104b2d96c2..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/cnpg-pgadmin-add.png and /dev/null differ diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/cnpg-pgadmin-backup.png b/website/src/content/docs/deprecated/SCALE/guides/img/cnpg-pgadmin-backup.png deleted file mode 100644 index 29ed4017c84..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/cnpg-pgadmin-backup.png and /dev/null differ diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/cnpg-pgadmin-creds.png b/website/src/content/docs/deprecated/SCALE/guides/img/cnpg-pgadmin-creds.png deleted file mode 100644 index 5be9d517045..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/cnpg-pgadmin-creds.png and /dev/null differ diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/cnpg-pgadmin-name.png b/website/src/content/docs/deprecated/SCALE/guides/img/cnpg-pgadmin-name.png deleted file mode 100644 index b26dffe96b6..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/cnpg-pgadmin-name.png and /dev/null differ diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/cnpg-pgadmin-restore.png b/website/src/content/docs/deprecated/SCALE/guides/img/cnpg-pgadmin-restore.png deleted file mode 100644 index 3884e0c3d86..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/cnpg-pgadmin-restore.png and /dev/null differ diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/cnpg-pgadmin-restore2.png b/website/src/content/docs/deprecated/SCALE/guides/img/cnpg-pgadmin-restore2.png deleted file mode 100644 index df3dcb170e7..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/cnpg-pgadmin-restore2.png and /dev/null differ diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/cnpg-pgadmin-restore3.png b/website/src/content/docs/deprecated/SCALE/guides/img/cnpg-pgadmin-restore3.png deleted file mode 100644 index 10d4332c9c8..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/cnpg-pgadmin-restore3.png and /dev/null differ diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/cnpg-pgadmin-restore4.png b/website/src/content/docs/deprecated/SCALE/guides/img/cnpg-pgadmin-restore4.png deleted file mode 100644 index c20f1bdee22..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/cnpg-pgadmin-restore4.png and /dev/null differ diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/cnpg-pgadmin-save.png b/website/src/content/docs/deprecated/SCALE/guides/img/cnpg-pgadmin-save.png deleted file mode 100644 index 5c83a7aba81..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/cnpg-pgadmin-save.png and /dev/null differ diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/cnpg-scaled.png b/website/src/content/docs/deprecated/SCALE/guides/img/cnpg-scaled.png deleted file mode 100644 index ef999754f86..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/cnpg-scaled.png and /dev/null differ diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/cnpg-shell-command.png b/website/src/content/docs/deprecated/SCALE/guides/img/cnpg-shell-command.png deleted file mode 100644 index b7a5c9f2359..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/cnpg-shell-command.png and /dev/null differ diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/data-perms.png b/website/src/content/docs/deprecated/SCALE/guides/img/data-perms.png deleted file mode 100644 index 0638ecf247c..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/data-perms.png and /dev/null differ diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/icons/authelia.png b/website/src/content/docs/deprecated/SCALE/guides/img/icons/authelia.png deleted file mode 100644 index fe6e83ec76c..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/icons/authelia.png and /dev/null differ diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/icons/blocky.png b/website/src/content/docs/deprecated/SCALE/guides/img/icons/blocky.png deleted file mode 100644 index 72ff723772c..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/icons/blocky.png and /dev/null differ diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/icons/cert-manager.png b/website/src/content/docs/deprecated/SCALE/guides/img/icons/cert-manager.png deleted file mode 100644 index 8099a9fae91..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/icons/cert-manager.png and /dev/null differ diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/icons/cnpg.png b/website/src/content/docs/deprecated/SCALE/guides/img/icons/cnpg.png deleted file mode 100644 index 3e51f61a820..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/icons/cnpg.png and /dev/null differ diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/icons/metallb.png b/website/src/content/docs/deprecated/SCALE/guides/img/icons/metallb.png deleted file mode 100644 index ff0017ef588..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/icons/metallb.png and /dev/null differ diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/icons/openebs.png b/website/src/content/docs/deprecated/SCALE/guides/img/icons/openebs.png deleted file mode 100644 index 1d7bdedfa5e..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/icons/openebs.png and /dev/null differ diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/icons/prometheus-operator.png b/website/src/content/docs/deprecated/SCALE/guides/img/icons/prometheus-operator.png deleted file mode 100644 index 083dc763c3e..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/icons/prometheus-operator.png and /dev/null differ diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/icons/traefik.png b/website/src/content/docs/deprecated/SCALE/guides/img/icons/traefik.png deleted file mode 100644 index f650d068b05..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/icons/traefik.png and /dev/null differ diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/icons/traefik.webp b/website/src/content/docs/deprecated/SCALE/guides/img/icons/traefik.webp deleted file mode 100644 index 47b3de3c236..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/icons/traefik.webp and /dev/null differ diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/image.png b/website/src/content/docs/deprecated/SCALE/guides/img/image.png deleted file mode 100644 index 2e5c64c33ee..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/image.png and /dev/null differ diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/inotify.png b/website/src/content/docs/deprecated/SCALE/guides/img/inotify.png deleted file mode 100644 index 563c4051942..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/inotify.png and /dev/null differ diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/nfs-share-cobia.png b/website/src/content/docs/deprecated/SCALE/guides/img/nfs-share-cobia.png deleted file mode 100644 index 7e106d1dbd9..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/nfs-share-cobia.png and /dev/null differ diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/pgadminbackup.png b/website/src/content/docs/deprecated/SCALE/guides/img/pgadminbackup.png deleted file mode 100644 index e747a243626..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/pgadminbackup.png and /dev/null differ diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/pgadminbackupselect.png b/website/src/content/docs/deprecated/SCALE/guides/img/pgadminbackupselect.png deleted file mode 100644 index 04140f57144..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/pgadminbackupselect.png and /dev/null differ diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/pgadminconnect.png b/website/src/content/docs/deprecated/SCALE/guides/img/pgadminconnect.png deleted file mode 100644 index d68cc5667d8..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/pgadminconnect.png and /dev/null differ diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/pgadminrestore.png b/website/src/content/docs/deprecated/SCALE/guides/img/pgadminrestore.png deleted file mode 100644 index 583a33910fe..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/pgadminrestore.png and /dev/null differ diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/pgadminrestorepage1.png b/website/src/content/docs/deprecated/SCALE/guides/img/pgadminrestorepage1.png deleted file mode 100644 index e72d2d22ea4..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/pgadminrestorepage1.png and /dev/null differ diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/pgadminrestorepage2.png b/website/src/content/docs/deprecated/SCALE/guides/img/pgadminrestorepage2.png deleted file mode 100644 index 0e2fd9ec572..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/pgadminrestorepage2.png and /dev/null differ diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/pgadminrestorepage3.png b/website/src/content/docs/deprecated/SCALE/guides/img/pgadminrestorepage3.png deleted file mode 100644 index 1c741b78898..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/pgadminrestorepage3.png and /dev/null differ diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/s3_scale_cnpg_backup.png b/website/src/content/docs/deprecated/SCALE/guides/img/s3_scale_cnpg_backup.png deleted file mode 100644 index 2ba955bcdbf..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/s3_scale_cnpg_backup.png and /dev/null differ diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/s3_scale_credentials.png b/website/src/content/docs/deprecated/SCALE/guides/img/s3_scale_credentials.png deleted file mode 100644 index 6e549831646..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/s3_scale_credentials.png and /dev/null differ diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/s3_scale_pvc_backup.png b/website/src/content/docs/deprecated/SCALE/guides/img/s3_scale_pvc_backup.png deleted file mode 100644 index fac6bf1a874..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/s3_scale_pvc_backup.png and /dev/null differ diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/share-smb-cobia.png b/website/src/content/docs/deprecated/SCALE/guides/img/share-smb-cobia.png deleted file mode 100644 index a1eaa0741d2..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/share-smb-cobia.png and /dev/null differ diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/smb-cli1.png b/website/src/content/docs/deprecated/SCALE/guides/img/smb-cli1.png deleted file mode 100644 index 1802a01f4c2..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/smb-cli1.png and /dev/null differ diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/smb-cli2.png b/website/src/content/docs/deprecated/SCALE/guides/img/smb-cli2.png deleted file mode 100644 index bd68fc79133..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/smb-cli2.png and /dev/null differ diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/tcdbinfo.png b/website/src/content/docs/deprecated/SCALE/guides/img/tcdbinfo.png deleted file mode 100644 index 109c09c882f..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/tcdbinfo.png and /dev/null differ diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/truenas-web-gui-via-traefik-screenshot.png b/website/src/content/docs/deprecated/SCALE/guides/img/truenas-web-gui-via-traefik-screenshot.png deleted file mode 100644 index ba0c1791e1e..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/truenas-web-gui-via-traefik-screenshot.png and /dev/null differ diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/user-groups.png b/website/src/content/docs/deprecated/SCALE/guides/img/user-groups.png deleted file mode 100644 index 6fcc77971ea..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/user-groups.png and /dev/null differ diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/velero-backup-verify.png b/website/src/content/docs/deprecated/SCALE/guides/img/velero-backup-verify.png deleted file mode 100644 index 304264fe3c0..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/velero-backup-verify.png and /dev/null differ diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/velero-complete.png b/website/src/content/docs/deprecated/SCALE/guides/img/velero-complete.png deleted file mode 100644 index 30d981896ee..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/velero-complete.png and /dev/null differ diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/velero-create-disaster.png b/website/src/content/docs/deprecated/SCALE/guides/img/velero-create-disaster.png deleted file mode 100644 index 33cb6cb9c96..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/velero-create-disaster.png and /dev/null differ diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/velero-minio-create-bucket-2.png b/website/src/content/docs/deprecated/SCALE/guides/img/velero-minio-create-bucket-2.png deleted file mode 100644 index c817c087c45..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/velero-minio-create-bucket-2.png and /dev/null differ diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/velero-minio-create-bucket.png b/website/src/content/docs/deprecated/SCALE/guides/img/velero-minio-create-bucket.png deleted file mode 100644 index 706d11876a1..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/velero-minio-create-bucket.png and /dev/null differ diff --git a/website/src/content/docs/deprecated/SCALE/guides/img/velero-restore.png b/website/src/content/docs/deprecated/SCALE/guides/img/velero-restore.png deleted file mode 100644 index e1151c17318..00000000000 Binary files a/website/src/content/docs/deprecated/SCALE/guides/img/velero-restore.png and /dev/null differ