Configuring an ipvlan network
The Cluster Network Operator (CNO) manages additional network definitions. When you specify an additional network to create, the CNO creates the object automatically.
Prerequisites
Install the OpenShift CLI (
oc
).Log in as a user with
cluster-admin
privileges.
Procedure
To create an additional network for your cluster, complete the following steps:
Edit the CNO CR by running the following command:
Modify the CR that you are creating by adding the configuration for the additional network you are creating, as in the following example CR.
The following YAML configures the ipvlan CNI plug-in:
apiVersion: operator.openshift.io/v1
kind: Network
metadata:
name: cluster
spec:
additionalNetworks: (1)
- name: test-network-1
namespace: test-1
type: Raw
rawCNIConfig: '{
"cniVersion": "0.3.1",
"name": "test-network-1",
"type": "ipvlan",
"master": "eth1",
"mode": "l2",
"ipam": {
"type": "static",
"addresses": [
{
"address": "192.168.1.23/24"
}
]
}
}'
1 Specify the configuration for the additional network attachment definition. Save your changes and quit the text editor to commit your changes.
Confirm that the CNO created the NetworkAttachmentDefinition object by running the following command. Replace
<namespace>
with the namespace that you specified when configuring the network attachment. There might be a delay before the CNO creates the object.$ oc get network-attachment-definitions -n <namespace>
test-network-1 14m
The configuration for an additional network attachment that uses the ipvlan Container Network Interface (CNI) plug-in is provided in two parts:
Cluster Network Operator (CNO) configuration
CNI plug-in configuration
The CNO configuration specifies the name for the additional network attachment and the namespace to create the attachment in. The plug-in is configured by a JSON object specified by the rawCNIConfig
parameter in the CNO configuration.
The following YAML describes the configuration parameters for the CNO:
Cluster Network Operator YAML configuration
The following object describes the configuration parameters for the ipvlan CNI plug-in:
ipvlan CNI plug-in JSON configuration object
{
"cniVersion": "0.3.1",
"name": "<name>", (1)
"type": "ipvlan",
"mode": "<mode>", (2)
"master": "<master>", (3)
"mtu": <mtu>, (4)
"ipam": { (5)
}
}
1 | Specify the value for the name parameter you provided previously for the CNO configuration. |
2 | Specify the operating mode for the virtual network. The value must be l2 , l3 , or l3s . The default value is l2 . |
3 | Specify the ethernet interface to associate with the network attachment. If a master is not specified, the interface for the default network route is used. |
4 | Set the maximum transmission unit (MTU) to the specified value. The default value is automatically set by the kernel. |
5 | Specify a configuration object for the ipam CNI plug-in. The plug-in manages IP address assignment for the attachment definition. |
ipvlan configuration example
The following example configures an additional network named ipvlan-net
:
name: ipvlan-net
namespace: work-network
type: Raw
rawCNIConfig: '{ (1)
"cniVersion": "0.3.1",
"name": "work-network",
"type": "ipvlan",
"master": "eth1",
"mode": "l3",
"ipam": {
"type": "dhcp"
}
}'
Configuration for ipam CNI plug-in
The ipam Container Network Interface (CNI) plug-in provides IP address management (IPAM) for other CNI plug-ins.
You can use the following methods for IP address assignment:
Static assignment.
Dynamic assignment through the Whereabouts IPAM CNI plug-in.
Static IP address assignment configuration
The following JSON describes the configuration for static IP address assignment:
Static assignment configuration
{
"ipam": {
"type": "static",
"addresses": [ (1)
{
"address": "<address>", (2)
"gateway": "<gateway>" (3)
}
],
"routes": [ (4)
{
"dst": "<dst>", (5)
}
],
"dns": { (7)
"nameservers": ["<nameserver>"], (8)
"domain": "<domain>", (9)
"search": ["<search_domain>"] (10)
}
}
1 | An array describing IP addresses to assign to the virtual interface. Both IPv4 and IPv6 IP addresses are supported. |
2 | An IP address and network prefix that you specify. For example, if you specify 10.10.21.10/24 , then the additional network is assigned an IP address of 10.10.21.10 and the netmask is 255.255.255.0 . |
3 | The default gateway to route egress network traffic to. |
4 | An array describing routes to configure inside the pod. |
5 | The IP address range in CIDR format, such as 192.168.17.0/24 , or 0.0.0.0/0 for the default route. |
6 | The gateway where network traffic is routed. |
7 | Optional: DNS configuration. |
8 | An of array of one or more IP addresses for to send DNS queries to. |
9 | The default domain to append to a hostname. For example, if the domain is set to example.com , a DNS lookup query for example-host is rewritten as example-host.example.com . |
10 | An array of domain names to append to an unqualified hostname, such as example-host , during a DNS lookup query. |
Dynamic IP address assignment configuration
The following JSON describes the configuration for dynamic IP address address assignment with DHCP.
DHCP assignment configuration
{
"ipam": {
"type": "dhcp"
}
}
Dynamic IP address assignment configuration with Whereabouts
The Whereabouts CNI plug-in allows the dynamic assignment of an IP address to an additional network without the use of a DHCP server.
The following JSON describes the configuration for dynamic IP address assignment with Whereabouts:
Whereabouts assignment configuration
{
"ipam": {
"type": "whereabouts",
"range": "<range>", (1)
"exclude": ["<exclude_part>, ..."], (2)
}
}
1 | Specify an IP address and range in CIDR notation. IP addresses are assigned from within this range of addresses. |
2 | Optional: Specify a list of IP addresses and ranges in CIDR notation. IP addresses within an excluded address range are not assigned. |
Static IP address assignment configuration example
You can configure ipam for static IP address assignment:
{
"ipam": {
"type": "static",
"addresses": [
{
"address": "191.168.1.7"
}
]
}
}
Dynamic IP address assignment configuration example using DHCP
You can configure ipam for DHCP:
Dynamic IP address assignment configuration example using Whereabouts
{
"ipam": {
"type": "whereabouts",
"range": "192.0.2.192/27",
"exclude": [
"192.0.2.192/30",
"192.0.2.196/32"
]
}
}
Next steps
- .