Skip to content

Commit a1de516

Browse files
committed
Document removal of SubnetParam
1 parent 4b63333 commit a1de516

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

docs/book/src/topics/crd-changes/v1alpha6-to-v1alpha7.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111
- [Change to securityGroups](#change-to-securitygroups)
1212
- [Change to ports.securityGroupFilters](#change-to-portssecuritygroupfilters)
1313
- [Removal of Port SecurityGroups](#removal-of-port-securitygroups)
14+
- [`OpenStackCluster`](#openstackcluster)
15+
- [Change to externalRouterIPs.subnet](#change-to-externalrouteripssubnet)
1416

1517
<!-- END doctoc generated TOC please keep comment here to allow auto update -->
1618

@@ -172,3 +174,26 @@ securityGroupFilters:
172174
- id: 0ddd14d9-5c33-4734-b7d0-ac4fdf35c2d9
173175
- id: 4a131d3e-9939-4a6b-adea-788a2e89fcd8
174176
```
177+
178+
### `OpenStackCluster`
179+
180+
#### Change to externalRouterIPs.subnet
181+
182+
The `uuid` field is renamed to `id`, and all fields from `filter` are moved directly into the `subnet`.
183+
184+
```yaml
185+
externalRouterIPs:
186+
- subnet:
187+
uuid: f23bf9c1-8c66-4383-b474-ada1d1960149
188+
- subnet:
189+
filter:
190+
name: my-subnet
191+
```
192+
becomes:
193+
```yaml
194+
externalRouterIPs:
195+
- subnet:
196+
id: f23bf9c1-8c66-4383-b474-ada1d1960149
197+
- subnet:
198+
name: my-subnet
199+
```

0 commit comments

Comments
 (0)