Skip to content

Commit a4f1d9f

Browse files
authored
Check for typos (#93)
1 parent 9a87729 commit a4f1d9f

File tree

8 files changed

+31
-20
lines changed

8 files changed

+31
-20
lines changed

.github/workflows/build.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ jobs:
1515
- name: checkout
1616
uses: actions/checkout@v5
1717

18+
- name: Check spelling
19+
uses: crate-ci/typos@master
20+
1821
- name: setup-bun
1922
uses: oven-sh/setup-bun@v2
2023
with:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ This file is used to generate the sidebar.
8989

9090
## Embedding drawio images
9191

92-
> ⚠️ referenced `.drawio.svg` images throw **warnings** because of unsupported file-types. We save `.drawio` files separatly and export them as `svg`. Issue is also known in [docusaurus](https://github.com/facebook/docusaurus/issues/9715)
92+
> ⚠️ referenced `.drawio.svg` images throw **warnings** because of unsupported file-types. We save `.drawio` files separately and export them as `svg`. Issue is also known in [docusaurus](https://github.com/facebook/docusaurus/issues/9715)
9393
9494
Some svgs still can have problems e.g:
9595

_typos.toml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
[default.extend-words]
2+
# Don't correct the surname "Teh"
3+
CLOS = "CLOS"
4+
leafs = "leafs"
5+
nd = "nd"
6+
7+
[files]
8+
extend-exclude = ["*.svg", "*.drawio", "allocate.yml"]

blog/2023/08-metal-stack-v0.15.0/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Check out the direct link to the release [here](https://github.com/metal-stack/r
2727

2828
Before metal-stack v0.15.0, when creating a machine through the metal-api, the machine was placed randomly inside a partition. The algorithm did not consider spreading machines across different racks and different chassis.
2929

30-
This may lead to the situation that a group of machines (that for example form a cluster) can end up being placed in the same rack and the same chassis. In certain meltdown scenarios like a rack loosing power or chassis meltdown, it is desirable have machines within a project spread across data ceneter racks as best as possible.
30+
This may lead to the situation that a group of machines (that for example form a cluster) can end up being placed in the same rack and the same chassis. In certain meltdown scenarios like a rack losing power or chassis meltdown, it is desirable have machines within a project spread across data ceneter racks as best as possible.
3131

3232
So, instead of just randomly deciding the placement of a machine candidate, there is now a placement strategy that distributes machines within the same partition on the available racks evenly. For placement, it is also possible to allocate machines with so called "placement tags", allowing own distribution groups defined by the user. With this release, our Gardener integration already takes this opportunity to spread cluster workers across racks utilizing the cluster ID tag.
3333

docs/contributing/01-Proposals/MEP12/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ sidebar_position: 12
88

99
Currently, when creating a machine through the metal-api, the machine is placed randomly inside a partition. This algorithm does not consider spreading machines across different racks and different chassis. This may lead to the situation that a group of machines (that for example form a cluster) can end up being placed in the same rack and the same chassis.
1010

11-
Spreading a group of machines across racks can enhance availability for scenarios like a rack loosing power or a chassis meltdown.
11+
Spreading a group of machines across racks can enhance availability for scenarios like a rack losing power or a chassis meltdown.
1212

1313
So, instead of just randomly deciding the placement of a machine candidate, we want to propose a placement strategy that attempts to spread machine candidates across the racks inside a partition.
1414

docs/docs/07-Release Notes/v0.21/v0.21.3.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
---
2-
slug: /release-notes/v0.21.3
3-
title: v0.21.3
4-
sidebar_position: 6
5-
---
6-
# metal-stack v0.21.3
7-
See original release note at [https://github.com/metal-stack/releases/releases/tag/v0.21.3](https://github.com/metal-stack/releases/releases/tag/v0.21.3)
1+
---
2+
slug: /release-notes/v0.21.3
3+
title: v0.21.3
4+
sidebar_position: 6
5+
---
6+
# metal-stack v0.21.3
7+
See original release note at [https://github.com/metal-stack/releases/releases/tag/v0.21.3](https://github.com/metal-stack/releases/releases/tag/v0.21.3)
88
## General
99
* [Gardener v1.112](https://github.com/gardener/gardener/releases/tag/v1.112.0)
1010

@@ -17,7 +17,7 @@ See original release note at [https://github.com/metal-stack/releases/releases/t
1717

1818
## Component Releases
1919
### node-init v0.1.7
20-
* Wrap erros for better understanding (metal-stack/node-init#16) @majst01
20+
* Wrap errors for better understanding (metal-stack/node-init#16) @majst01
2121
### helm-charts v0.4.23
2222
* increase default memory limit for wal-g-exporter (metal-stack/helm-charts#119) @TLINDEN
2323
### metal-roles v0.15.15

versioned_docs/version-v0.21.8/contributing/01-Proposals/MEP12/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ sidebar_position: 12
88

99
Currently, when creating a machine through the metal-api, the machine is placed randomly inside a partition. This algorithm does not consider spreading machines across different racks and different chassis. This may lead to the situation that a group of machines (that for example form a cluster) can end up being placed in the same rack and the same chassis.
1010

11-
Spreading a group of machines across racks can enhance availability for scenarios like a rack loosing power or a chassis meltdown.
11+
Spreading a group of machines across racks can enhance availability for scenarios like a rack losing power or a chassis meltdown.
1212

1313
So, instead of just randomly deciding the placement of a machine candidate, we want to propose a placement strategy that attempts to spread machine candidates across the racks inside a partition.
1414

versioned_docs/version-v0.21.8/docs/07-Release Notes/v0.21/v0.21.3.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
---
2-
slug: /release-notes/v0.21.3
3-
title: v0.21.3
4-
sidebar_position: 6
5-
---
6-
# metal-stack v0.21.3
7-
See original release note at [https://github.com/metal-stack/releases/releases/tag/v0.21.3](https://github.com/metal-stack/releases/releases/tag/v0.21.3)
1+
---
2+
slug: /release-notes/v0.21.3
3+
title: v0.21.3
4+
sidebar_position: 6
5+
---
6+
# metal-stack v0.21.3
7+
See original release note at [https://github.com/metal-stack/releases/releases/tag/v0.21.3](https://github.com/metal-stack/releases/releases/tag/v0.21.3)
88
## General
99
* [Gardener v1.112](https://github.com/gardener/gardener/releases/tag/v1.112.0)
1010

@@ -17,7 +17,7 @@ See original release note at [https://github.com/metal-stack/releases/releases/t
1717

1818
## Component Releases
1919
### node-init v0.1.7
20-
* Wrap erros for better understanding (metal-stack/node-init#16) @majst01
20+
* Wrap errors for better understanding (metal-stack/node-init#16) @majst01
2121
### helm-charts v0.4.23
2222
* increase default memory limit for wal-g-exporter (metal-stack/helm-charts#119) @TLINDEN
2323
### metal-roles v0.15.15

0 commit comments

Comments
 (0)