diff --git a/.markdownlint-cli2.jsonc b/.markdownlint-cli2.jsonc index eb066754bf..a3753a7327 100644 --- a/.markdownlint-cli2.jsonc +++ b/.markdownlint-cli2.jsonc @@ -44,8 +44,8 @@ { "name": "double-spaces", "message": "Avoid double spaces", - "searchPattern": "/([^\\s>]) ([^\\s|])/g", - "replace": "$1 $2", + "searchPattern": "/^([^|].*)([^\\s>]) ([^\\s|])/g", + "replace": "$1 $2 $3", "skipCode": true } ] diff --git a/sidebarsUserDocs.js b/sidebarsUserDocs.js index 527c226395..db8ae61a89 100644 --- a/sidebarsUserDocs.js +++ b/sidebarsUserDocs.js @@ -36,7 +36,10 @@ const sidebars = { type: 'doc', id: 'usage-hints/index' }, - items: ['usage-hints/find-image/index'] + items: [ + 'usage-hints/find-image/index', + 'usage-hints/diskless-flavor/index' + ] } ] } diff --git a/user-docs/usage-hints/diskless-flavor/index.md b/user-docs/usage-hints/diskless-flavor/index.md new file mode 100644 index 0000000000..bad72771f0 --- /dev/null +++ b/user-docs/usage-hints/diskless-flavor/index.md @@ -0,0 +1,23 @@ +--- +layout: post +title: 'Preferring diskless flavors in SCS' +author: + - 'Kurt Garloff' +--- + +## Purpose + +Sovereign Cloud Stack (SCS) downgraded the formerly mandatory flavors with +root disks to recommended ones when the flavor naming standard version 3 +became effective in the fall 2023. For many users using flavors that comprise +a root disk is still the standard and at least when using CLI tooling, +it's also simpler. + +This article documents how the diskless flavors can be used with common +IaC tooling. + +## Link to blog article + +We covered this in a blog article before, for which we +[link here](https://scs.community/2023/08/21/diskless-flavors/) to our +old web site for now. diff --git a/user-docs/usage-hints/find-image/index.md b/user-docs/usage-hints/find-image/index.md index aabb9ca2aa..9fdf30dd06 100644 --- a/user-docs/usage-hints/find-image/index.md +++ b/user-docs/usage-hints/find-image/index.md @@ -82,7 +82,8 @@ We have to expect several matches here and need some heuristic to find the right image, preferrably the one matching the old naming convention. Full code that does this is available in [find_img.py](find_img.py). -The script assume that you have set your `OS_CLOUD` environment variable + +The script assumes that you have set your `OS_CLOUD` environment variable and have configured working `clouds.yaml` and `secure.yaml`. Feel free to copy, I deliberately put this under MIT license. @@ -264,4 +265,4 @@ Compute, Images, click on the Image. You can see all metadata, see screenshot. This is similar to Horizon, you go to Compute, Images, Public Images tab, click on image ID. See screenshot. -![Skyline Image Details](skyline.png) +![Skyline Image Details](skyline.png) \ No newline at end of file