Skip to content

Commit

Permalink
comments
Browse files Browse the repository at this point in the history
  • Loading branch information
louiseschmidtgen committed Jan 10, 2025
1 parent c9e4a47 commit 5b8d7be
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 9 deletions.
6 changes: 3 additions & 3 deletions docs/src/_parts/bootstrap_config.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Configuration options for the network feature.
**Type:** `bool`<br>

Determines if the feature should be enabled.
If omitted defaults to `true`
If omitted defaults to `false`

### cluster-config.dns
**Type:** `object`<br>
Expand All @@ -22,7 +22,7 @@ Configuration options for the dns feature.
**Type:** `bool`<br>

Determines if the feature should be enabled.
If omitted defaults to `true`
If omitted defaults to `false`

### cluster-config.dns.cluster-domain
**Type:** `string`<br>
Expand Down Expand Up @@ -170,7 +170,7 @@ Configuration options for the gateway feature.
**Type:** `bool`<br>

Determines if the feature should be enabled.
If omitted defaults to `true`.
If omitted defaults to `false`.

### cluster-config.metrics-server
**Type:** `object`<br>
Expand Down
14 changes: 8 additions & 6 deletions docs/src/snap/howto/install/custom-bootstrap-config.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
When creating a {{ product }} cluster that differs from the default
configuration you can choose to use a custom bootstrap configuration.
The CLI's interactive mode or a custom bootstrap configuration file allow you
to modify the configuration of the first node that will join your cluster.
to modify the configuration of the first node of your cluster.

## Configuration options

Expand Down Expand Up @@ -47,19 +47,21 @@ The node will be 'Ready' to host workloads after the CNI is deployed successfull
## Bootstrap configuration file

If your deployment requires a more fine-tuned configuration, use the bootstrap
configuration file. By default the network, dns and gateway features
are enabled, but the ingress, load-balancer and local-storage features are
disabled.
configuration file.

``` {note}
By default all features including network, dns, gateway, ingress, load-balancer
and local-storage are disabled.
```

For this example, create a custom bootstrap configuration file that disables
For this example, create a custom bootstrap configuration file that enables
the network feature:

```yaml
cat <<EOF > bootstrap.yaml
cluster-config:
network:
enabled: false
enabled: true
EOF
```

Expand Down

0 comments on commit 5b8d7be

Please sign in to comment.