You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/usage/ipam/prefix.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
# 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.
3
3
4
4
# Example Volume Resource
5
5
An example of how to define a root `Prefix` resource in `Ironcore`
@@ -10,7 +10,7 @@ kind: Prefix
10
10
metadata:
11
11
name: root
12
12
labels:
13
-
subnet-type: public
13
+
root-prefix: customer-1
14
14
spec:
15
15
prefix: 10.0.0.0/24
16
16
@@ -21,13 +21,13 @@ An example of how to define a child `Prefix` resource in `Ironcore`
21
21
apiVersion: ipam.ironcore.dev/v1alpha1
22
22
kind: Prefix
23
23
metadata:
24
-
name: customer-subnet-1
24
+
name: child-prefix
25
25
spec:
26
26
ipFamily: IPv4
27
27
prefixLength: 9
28
28
parentSelector:
29
29
matchLabels:
30
-
subnet-type: public
30
+
root-prefix: customer-1
31
31
32
32
```
33
33
(`Note`: Refer to <ahref="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