Skip to content

Commit b8d52be

Browse files
authored
docs: Add how to deploy CAREN (#599)
Also add some more icon bling to the menu and update menu ordering.
1 parent 9d63ce1 commit b8d52be

File tree

15 files changed

+109
-18
lines changed

15 files changed

+109
-18
lines changed

.markdownlint.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"heading-style": { "style": "atx" },
33
"ul-style": { "style": "dash" },
4-
"line-length": { "line_length": 120, "stern": true },
4+
"line-length": { "line_length": 120, "code_blocks": false },
55
"hr-style": { "style": "---" }
66
}

docs/content/_index.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
+++
2-
title = "CAPI Runtime Extensions"
2+
title = "Cluster API Runtime Extensions - Nutanix (CAREN)"
33

44
# [[cascade]]
55
# type = "blog"
@@ -23,11 +23,12 @@ templating by introducing variables specified with an OpenAPI schema that can th
2323
via patches.
2424

2525
The [Runtime SDK] feature provides an extensibility mechanism to hook into `ClusterClass` managed Kubernetes clusters'
26-
lifecycle. This project, CAPI Runtime Extensions, provides implementations of various runtime hooks that can be used in
27-
`ClusterClasses` across providers. This includes variables and patches that can be used across any provider to configure
28-
generic Kubernetes capabilities, such as configuring audit policy or HTTP proxy configuration. These capabilities are
29-
not provider-specific and delivering these capabilities in code instead of directly embedded in `ClusterClass`
30-
definitions leads to a much more robust experience via fast-feedback unit tests, as opposed to long running e2e tests.
26+
lifecycle. This project, Cluster API Runtime Extensions - Nutanix (CAREN), provides implementations of various runtime
27+
hooks that can be used in `ClusterClasses` across providers. This includes variables and patches that can be used across
28+
any provider to configure generic Kubernetes capabilities, such as configuring audit policy or HTTP proxy configuration.
29+
These capabilities are not provider-specific and delivering these capabilities in code instead of directly embedded in
30+
`ClusterClass` definitions leads to a much more robust experience via fast-feedback unit tests, as opposed to long
31+
running e2e tests.
3132

3233
In addition to cluster resource customizations, this project enables management of essential cluster addons (e.g. CNI)
3334
via variable definitions, e.g. selecting a CNI provider via variables defined on the `Cluster` resource itself. The goal

docs/content/addons/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
+++
22
title = "Addons"
3-
weight = 2
3+
weight = 3
44
icon = "fa-solid fa-cubes"
55
+++

docs/content/addons/cluster-autoscaler.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
+++
22
title = "Cluster Autoscaler"
3+
icon = "fa-solid fa-up-right-and-down-left-from-center"
34
+++
45

56
By leveraging CAPI cluster lifecycle hooks, this handler deploys [Cluster Autoscaler][cluster-autoscaler]

docs/content/contributing/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
+++
22
title = "Contributing"
33
weight = 99
4-
icon = "fa-solid fa-gift"
4+
icon = "fa-solid fa-hand-holding-heart"
55
+++

docs/content/contributing/e2e_tests.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
+++
22
title = "End-to-end tests"
3+
icon = "fa-solid fa-bugs"
34
+++
45

56
This project uses [Ginkgo] to run end-to-end tests. Tests are labelled to make running targeted or specific tests

docs/content/contributing/releasing.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
+++
22
title = "Releasing"
3+
icon = "fa-solid fa-gift"
34
+++
45

56
This project uses [release-please] to automate changelog updates per release. Due to security restrictions[^1] in the
@@ -9,7 +10,7 @@ This project uses [release-please] to automate changelog updates per release. Du
910
When a release has been cut, a new release PR can be created manually using the `release-please` CLI locally. This needs
1011
to be run by someone with write permissions to the repository. Create the `release-please` branch and PR:
1112

12-
```bash
13+
```shell
1314
make release-please
1415
```
1516

@@ -20,19 +21,19 @@ date).
2021
When a release is ready, the commits in the release PR will need to be signed (again, this is a security requirement).
2122
To do this, check out the PR branch locally:
2223

23-
```bash
24+
```shell
2425
gh pr checkout <RELEASE_PR_NUMBER>
2526
```
2627

2728
Sign the previous commit:
2829

29-
```bash
30+
```shell
3031
git commit --gpg-sign --amend
3132
```
3233

3334
And force push:
3435

35-
```bash
36+
```shell
3637
git push --force-with-lease
3738
```
3839

docs/content/customization/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
+++
22
title = "Cluster customizations"
3-
weight = 1
3+
weight = 2
44
icon = "fa-solid fa-screwdriver-wrench"
55
+++
66

docs/content/customization/nutanix/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
+++
22
title = "Nutanix"
3-
icon = "fa-brands fa-nutanix"
3+
icon = "fa-solid fa-server"
44
+++
55

66
The customizations in this section are applicable only to Nutanix clusters. They will only be applied to clusters that
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
+++
2+
title = "Getting started"
3+
icon = "fa-solid fa-forward-fast"
4+
weight = 1
5+
+++
6+
7+
To deploy CAREN, follow the docs on how to deploy CAREN using either
8+
[clusterctl]({{< ref "deployment/via-clusterctl" >}}) or [Helm]({{< ref "deployment/via-helm" >}}).

0 commit comments

Comments
 (0)