Compare commits
15 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
20b66b8aad | ||
| 1b34c03861 | |||
| a2bae2bb1b | |||
| c7b49df433 | |||
|
0b8f720d6a
|
|||
|
9b57393281
|
|||
|
7cfcba400e
|
|||
| 1565dea7bb | |||
| 3873667e9a | |||
|
5c36a1f31d
|
|||
|
8116b9458c
|
|||
| a26c9145d1 | |||
|
|
e3e9000ca9 | ||
| 990eb62c75 | |||
| 33e887348b |
28
CHANGELOG.md
28
CHANGELOG.md
@@ -1,3 +1,31 @@
|
|||||||
|
# [0.29.0](http://gitea-http.gitea:3000/alexlebens/site-documentation/compare/0.28.0...0.29.0) (2026-05-08)
|
||||||
|
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
* **deps:** update dependency @astrojs/starlight to v0.38.5 ([0b8f720](http://gitea-http.gitea:3000/alexlebens/site-documentation/commit/0b8f720d6afc765759a3f5bfef1ec1a575247e4f))
|
||||||
|
* **deps:** update dependency astro to v6.1.10 ([5c36a1f](http://gitea-http.gitea:3000/alexlebens/site-documentation/commit/5c36a1f31d8098828fe790dcb307ef6f391a53a0))
|
||||||
|
* **deps:** update dependency astro to v6.2.2 ([9b57393](http://gitea-http.gitea:3000/alexlebens/site-documentation/commit/9b57393281b55441ef6786ed597519e0f6280e93))
|
||||||
|
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
* allow processing svg ([c7b49df](http://gitea-http.gitea:3000/alexlebens/site-documentation/commit/c7b49df433d25f343e336fdf5f972f479a2cd07e))
|
||||||
|
* rebase ([1b34c03](http://gitea-http.gitea:3000/alexlebens/site-documentation/commit/1b34c03861824b350d144d7dabbe1d10111b86e1))
|
||||||
|
* rebase ([a2bae2b](http://gitea-http.gitea:3000/alexlebens/site-documentation/commit/a2bae2bb1b2cb39005ded7c24a15705c0aea6695))
|
||||||
|
|
||||||
|
# [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)
|
## [0.27.1](http://gitea-http.gitea:3000/alexlebens/site-documentation/compare/0.27.0...0.27.1) (2026-04-26)
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -16,6 +16,10 @@ const getSiteURL = () => {
|
|||||||
export default defineConfig({
|
export default defineConfig({
|
||||||
site: getSiteURL(),
|
site: getSiteURL(),
|
||||||
|
|
||||||
|
image: {
|
||||||
|
dangerouslyProcessSVG: true
|
||||||
|
},
|
||||||
|
|
||||||
prefetch: true,
|
prefetch: true,
|
||||||
|
|
||||||
integrations: [
|
integrations: [
|
||||||
@@ -50,17 +54,17 @@ export default defineConfig({
|
|||||||
],
|
],
|
||||||
sidebar: [
|
sidebar: [
|
||||||
{
|
{
|
||||||
label: "Reference",
|
label: 'Reference',
|
||||||
autogenerate: { directory: "reference" },
|
items: [{ autogenerate: { "directory": "reference" } }]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: "Guides",
|
label: 'Guides',
|
||||||
autogenerate: { directory: "guides" },
|
items: [{ autogenerate: { "directory": "guides" } }]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: "Applications",
|
label: 'Applications',
|
||||||
collapsed: true,
|
collapsed: true,
|
||||||
autogenerate: { directory: "applications" },
|
items: [{ autogenerate: { "directory": "applications" } }]
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
})
|
})
|
||||||
|
|||||||
24
package.json
24
package.json
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "site-documentation",
|
"name": "site-documentation",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"version": "0.27.1",
|
"version": "0.29.0",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "astro dev",
|
"dev": "astro dev",
|
||||||
"build": "astro build",
|
"build": "astro build",
|
||||||
@@ -13,16 +13,16 @@
|
|||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@astrojs/mdx": "5.0.4",
|
"@astrojs/mdx": "5.0.4",
|
||||||
"@astrojs/node": "10.0.6",
|
"@astrojs/node": "10.1.0",
|
||||||
"@astrojs/sitemap": "3.7.2",
|
"@astrojs/sitemap": "3.7.2",
|
||||||
"@astrojs/starlight": "0.38.4",
|
"@astrojs/starlight": "0.39.2",
|
||||||
"@tailwindcss/postcss": "4.2.4",
|
"@tailwindcss/postcss": "4.3.0",
|
||||||
"@tailwindcss/vite": "4.2.4",
|
"@tailwindcss/vite": "4.3.0",
|
||||||
"astro": "6.1.9",
|
"astro": "6.3.1",
|
||||||
"sanitize-html": "2.17.3",
|
"sanitize-html": "2.17.3",
|
||||||
"sharp": "0.34.5",
|
"sharp": "0.34.5",
|
||||||
"starlight-theme-rapide": "0.5.2",
|
"starlight-theme-rapide": "0.5.2",
|
||||||
"tailwindcss": "4.2.4"
|
"tailwindcss": "4.3.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@saithodev/semantic-release-gitea": "2.1.0",
|
"@saithodev/semantic-release-gitea": "2.1.0",
|
||||||
@@ -30,19 +30,19 @@
|
|||||||
"@semantic-release/commit-analyzer": "13.0.1",
|
"@semantic-release/commit-analyzer": "13.0.1",
|
||||||
"@semantic-release/git": "10.0.1",
|
"@semantic-release/git": "10.0.1",
|
||||||
"@semantic-release/npm": "13.1.5",
|
"@semantic-release/npm": "13.1.5",
|
||||||
"@semantic-release/release-notes-generator": "14.1.0",
|
"@semantic-release/release-notes-generator": "14.1.1",
|
||||||
"@tailwindcss/forms": "0.5.11",
|
"@tailwindcss/forms": "0.5.11",
|
||||||
"@tailwindcss/typography": "0.5.19",
|
"@tailwindcss/typography": "0.5.19",
|
||||||
"@typescript-eslint/parser": "8.59.0",
|
"@typescript-eslint/parser": "8.59.2",
|
||||||
"eslint": "10.2.1",
|
"eslint": "10.3.0",
|
||||||
"eslint-config-prettier": "10.1.8",
|
"eslint-config-prettier": "10.1.8",
|
||||||
"eslint-plugin-astro": "1.7.0",
|
"eslint-plugin-astro": "1.7.0",
|
||||||
"prettier": "3.8.3",
|
"prettier": "3.8.3",
|
||||||
"prettier-plugin-astro": "0.14.1",
|
"prettier-plugin-astro": "0.14.1",
|
||||||
"prettier-plugin-tailwindcss": "0.7.3",
|
"prettier-plugin-tailwindcss": "0.8.0",
|
||||||
"semantic-release": "25.0.3",
|
"semantic-release": "25.0.3",
|
||||||
"semantic-release-export-data": "1.2.0",
|
"semantic-release-export-data": "1.2.0",
|
||||||
"typescript": "6.0.3",
|
"typescript": "6.0.3",
|
||||||
"typescript-eslint": "8.59.0"
|
"typescript-eslint": "8.59.2"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -21,3 +21,21 @@ Storage provider for iSCSI block devices from the NAS.
|
|||||||
# Notes
|
# Notes
|
||||||
|
|
||||||
Used for applications that need to store a lot of data, but not over the NFS connection. Examples include metrics and logging storage.
|
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
|
||||||
|
|||||||
Reference in New Issue
Block a user