Enable P9 Dhcp
Recommended for KubVirt installations
Platform9 DHCP is the recommended DHCP (vs whereabouts ) for KubeVirt installations. When leveraging whereabouts there is an issue that occurs during Live Migrations where the Virtual Machine IP address will change when migrated to the target host.
What is Platform9 DHCP
Platform9 created an alternative to whereabouts for the KubeVirt use case by having a DHCP server running inside the pod/vm to cater to the DHCP requests from the virtual machine instance (not the pod in the case of Kubevirt). Multus net-attach-def will use the DHCP server, and there is no need to specify the IPAM plugin. The client/consumer VM will need the dhclient for sending DHCP requests.
Prerequisites
Kubevirt
Luigi (advanced Networking)
Kubemacpool
Enabling the Platform9 DHCP Addon:
Using the Luigi addons, enable dhcpController addon
apiVersion: plumber.k8s.pf9.io/v1
kind: NetworkPlugins
metadata:
name: networkplugins-sample-nosriov
spec:
plugins:
...
dhcpController: {}This creates the
dhcp-controller-systemnamespace with the controller for the dnsmasq.Create
NetworkAttachmentDefinition. Example:
To use a image that does not have dhclient installed/ able to install, create an additional NetworkAttachmentDefinition with the dhcp plugin enabled and start the dhcp daemon.
Create a DHCP Server
About the fields
a . Name: Name of the DHCPServer. Configurations of dnsmasq will be generated in a Configmap with the same name
b. networks: list of all networks that this pod will serve
networkName: Name of NetworkAttachmentDefinition. Should not have dhcp plugin enabled.
interfaceIp: IP address that the pod will be allocated. Must have prefix to ensure proper routes are added.
leaseDuration: Duration the leases offered should be valid for. Provide in valid formats for dnsmasq (eg: 10m, 5h, etc). Defaults to 1h
vlanId: Dnsmasq network identifier. Used as an identifier while restoring IPs.
cidr:
range_start, range_end, gatewayare optional. range is compulsory. If range start and end are provided, they will be used in place of the default start and end.
A configmap is generated based on the DHCPServer. This is a conf file for dnsmasq. It can be overridden by creating a valid configmap with the same name as that of the DHCPServer.
Info
For any specific configurations, you can provide your own configmap. Create a configmap with valid dnsmasq.conf parameters. Along with this, dhcp-range must be in one of these two formats
dhcp-range=<start_IP>,<end_ip>,,
dhcp-range=,<start_ip>,<end_ip>,,
Sample VM yaml to apply
Sample StatefulSet YAML to apply.
An IPAllocation is made for every lease stored in the server. It is used to restore leases back to the DHCPServer. Leases are only restored to the vlanID mentioned. Lease will expire at
leaseExpiry. Sample of how an IPAllocation looks
To test out the DHCPServer with KubeVirt Live Migration, connect the hosts with tunnels and set the MAC Address of the bridge.
Kubemacpool installation:
[kubemacpool/deployment-on-arbitrary-cluster.md at main · k8snetworkplumbingwg/kubemacpool](kubemacpool/deployment-on-arbitrary-cluster.md at main · k8snetworkplumbingwg/kubemacpool)
Last updated
Was this helpful?
