Skip to content

Commit 7a5ada3

Browse files
committed
incorporating review comments
1 parent b2faf16 commit 7a5ada3

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/usage/ipam/prefix.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Prefix
2-
A `Prefix` resource provides a fully integrated IP address management(IPAM) solution for `Ironcore`. It serves as a means to define IP prefixes along with prefix length to a reserved range of IP addresses. It is also possible to define child subnets with the specified prefix length referring to the parent prefix.
2+
A `Prefix` resource provides a fully integrated IP address management(IPAM) solution for `Ironcore`. It serves as a means to define IP prefixes along with prefix length to a reserved range of IP addresses. It is also possible to define child prefixes with the specified prefix length referring to the parent prefix.
33

44
# Example Volume Resource
55
An example of how to define a root `Prefix` resource in `Ironcore`
@@ -10,7 +10,7 @@ kind: Prefix
1010
metadata:
1111
name: root
1212
labels:
13-
subnet-type: public
13+
root-prefix: customer-1
1414
spec:
1515
prefix: 10.0.0.0/24
1616
@@ -21,13 +21,13 @@ An example of how to define a child `Prefix` resource in `Ironcore`
2121
apiVersion: ipam.ironcore.dev/v1alpha1
2222
kind: Prefix
2323
metadata:
24-
name: customer-subnet-1
24+
name: child-prefix
2525
spec:
2626
ipFamily: IPv4
2727
prefixLength: 9
2828
parentSelector:
2929
matchLabels:
30-
subnet-type: public
30+
root-prefix: customer-1
3131
3232
```
3333
(`Note`: Refer to <a href="https://github.com/ironcore-dev/ironcore/tree/main/config/samples/e2e/">E2E Examples</a> for more detailed example on IPAM to understant e2e flow)

0 commit comments

Comments
 (0)