Compare commits

...

3 Commits

Author SHA1 Message Date
semantic-release-bot
e3e9000ca9 chore(release): 0.28.0 [skip ci]
# [0.28.0](http://gitea-http.gitea:3000/alexlebens/site-documentation/compare/0.27.1...0.28.0) (2026-04-27)

### Bug Fixes

* add escape ([990eb62](990eb62c75))

### Features

* move guides ([33e8873](33e887348b))
2026-04-27 22:34:36 +00:00
990eb62c75 fix: add escape
All checks were successful
test-build / build (push) Successful in 1m15s
test-build / guarddog (push) Successful in 4m39s
release-image / build (push) Successful in 53s
release-image / guarddog (push) Successful in 1m22s
release-image / semantic-release (push) Successful in 3m48s
release-image / release-harbor (push) Successful in 4m7s
renovate / renovate (push) Successful in 2m59s
release-image / release-gitea (push) Successful in 4m48s
2026-04-27 17:07:26 -05:00
33e887348b feat: move guides
Some checks failed
test-build / build (push) Failing after 36s
test-build / guarddog (push) Successful in 46s
2026-04-27 16:56:50 -05:00
7 changed files with 31 additions and 1 deletions

View File

@@ -1,3 +1,15 @@
# [0.28.0](http://gitea-http.gitea:3000/alexlebens/site-documentation/compare/0.27.1...0.28.0) (2026-04-27)
### Bug Fixes
* add escape ([990eb62](http://gitea-http.gitea:3000/alexlebens/site-documentation/commit/990eb62c75c2c0460a18410b8c2abff920fdffe2))
### Features
* move guides ([33e8873](http://gitea-http.gitea:3000/alexlebens/site-documentation/commit/33e887348ba9976e2dfb54f68d7031da060e3281))
## [0.27.1](http://gitea-http.gitea:3000/alexlebens/site-documentation/compare/0.27.0...0.27.1) (2026-04-26)

View File

@@ -1,7 +1,7 @@
{
"name": "site-documentation",
"type": "module",
"version": "0.27.1",
"version": "0.28.0",
"scripts": {
"dev": "astro dev",
"build": "astro build",

View File

@@ -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 \<path>
- resize2fs /dev/\<disk name>
- Receive the error that the filesystem isn't clean, press y to optimize
- fsck -f /dev/\<disk name>
- Ensure the above comes back clean
- resize2fs /dev/sdb
- Restart pod that is mounting the disk