From 33e887348ba9976e2dfb54f68d7031da060e3281 Mon Sep 17 00:00:00 2001 From: Alex Lebens Date: Mon, 27 Apr 2026 16:56:50 -0500 Subject: [PATCH 1/2] feat: move guides --- .../democratic-csi-synology-iscsi.mdx | 18 ++++++++++++++++++ .../docs/guides/{ => OpenBao}/bao-ssh-ca.mdx | 0 .../guides/{ => OpenBao}/secret-store-csi.mdx | 0 .../{ => Talos}/talos-upgrade-1-12-0.mdx | 0 .../{ => Talos}/talos-upgrade-generic.mdx | 0 5 files changed, 18 insertions(+) rename src/content/docs/guides/{ => OpenBao}/bao-ssh-ca.mdx (100%) rename src/content/docs/guides/{ => OpenBao}/secret-store-csi.mdx (100%) rename src/content/docs/guides/{ => Talos}/talos-upgrade-1-12-0.mdx (100%) rename src/content/docs/guides/{ => Talos}/talos-upgrade-generic.mdx (100%) diff --git a/src/content/docs/applications/democratic-csi-synology-iscsi.mdx b/src/content/docs/applications/democratic-csi-synology-iscsi.mdx index 643f61e..8ee7ce0 100644 --- a/src/content/docs/applications/democratic-csi-synology-iscsi.mdx +++ b/src/content/docs/applications/democratic-csi-synology-iscsi.mdx @@ -21,3 +21,21 @@ Storage provider for iSCSI block devices from the NAS. # Notes Used for applications that need to store a lot of data, but not over the NFS connection. Examples include metrics and logging storage. + +# Issues + +## Resizing the Prometheus disk + +There is an issue resizing iSCSI disks. The following Github issue has instructions on how to manually resize if a permissions error is thrown. + +https://github.com/democratic-csi/democratic-csi/issues/491#issuecomment-3778463893 + +- Exec into the iSCSI node pod for the node where the volume is being attached. +- Find the path where the volume is mounted, this should be in the error, and the disk name +- umount +- resize2fs /dev/ +- Receive the error that the filesystem isn't clean, press y to optimize +- fsck -f /dev/ +- Ensure the above comes back clean +- resize2fs /dev/sdb +- Restart pod that is mounting the disk diff --git a/src/content/docs/guides/bao-ssh-ca.mdx b/src/content/docs/guides/OpenBao/bao-ssh-ca.mdx similarity index 100% rename from src/content/docs/guides/bao-ssh-ca.mdx rename to src/content/docs/guides/OpenBao/bao-ssh-ca.mdx diff --git a/src/content/docs/guides/secret-store-csi.mdx b/src/content/docs/guides/OpenBao/secret-store-csi.mdx similarity index 100% rename from src/content/docs/guides/secret-store-csi.mdx rename to src/content/docs/guides/OpenBao/secret-store-csi.mdx diff --git a/src/content/docs/guides/talos-upgrade-1-12-0.mdx b/src/content/docs/guides/Talos/talos-upgrade-1-12-0.mdx similarity index 100% rename from src/content/docs/guides/talos-upgrade-1-12-0.mdx rename to src/content/docs/guides/Talos/talos-upgrade-1-12-0.mdx diff --git a/src/content/docs/guides/talos-upgrade-generic.mdx b/src/content/docs/guides/Talos/talos-upgrade-generic.mdx similarity index 100% rename from src/content/docs/guides/talos-upgrade-generic.mdx rename to src/content/docs/guides/Talos/talos-upgrade-generic.mdx -- 2.49.1 From 990eb62c75c2c0460a18410b8c2abff920fdffe2 Mon Sep 17 00:00:00 2001 From: Alex Lebens Date: Mon, 27 Apr 2026 17:07:26 -0500 Subject: [PATCH 2/2] fix: add escape --- .../docs/applications/democratic-csi-synology-iscsi.mdx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/content/docs/applications/democratic-csi-synology-iscsi.mdx b/src/content/docs/applications/democratic-csi-synology-iscsi.mdx index 8ee7ce0..544cf97 100644 --- a/src/content/docs/applications/democratic-csi-synology-iscsi.mdx +++ b/src/content/docs/applications/democratic-csi-synology-iscsi.mdx @@ -32,10 +32,10 @@ https://github.com/democratic-csi/democratic-csi/issues/491#issuecomment-3778463 - Exec into the iSCSI node pod for the node where the volume is being attached. - Find the path where the volume is mounted, this should be in the error, and the disk name -- umount -- resize2fs /dev/ +- umount \ +- resize2fs /dev/\ - Receive the error that the filesystem isn't clean, press y to optimize -- fsck -f /dev/ +- fsck -f /dev/\ - Ensure the above comes back clean - resize2fs /dev/sdb - Restart pod that is mounting the disk -- 2.49.1