Skip to content

Commit

Permalink
Merge pull request kubernetes-sigs#2120 from chess-knight/fix/v1beta1…
Browse files Browse the repository at this point in the history
…_dnsNameservers_change_doc

📖 Fix dnsNameservers array in the v1beta1 changes docs
  • Loading branch information
k8s-ci-robot authored Jun 10, 2024
2 parents 35efc1b + dfeffe0 commit 1c78326
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions docs/book/src/topics/crd-changes/v1alpha7-to-v1beta1.md
Original file line number Diff line number Diff line change
Expand Up @@ -370,15 +370,17 @@ In v1beta1, `OpenStackCluster.Spec.ManagedSubnets` array field is introduced. Th

```yaml
nodeCidr: "10.0.0.0/24"
dnsNameservers: "10.0.0.123"
dnsNameservers:
- "10.0.0.123"
```

In v1beta1, this will be automatically converted to:

```yaml
managedSubnets:
- cidr: "10.0.0.0/24"
dnsNameservers: "10.0.0.123"
dnsNameservers:
- "10.0.0.123"
```

Please note that currently `managedSubnets` can only hold one element.
Expand Down

0 comments on commit 1c78326

Please sign in to comment.