Passt binding¶
Overview¶
Plug A Simple Socket Transport is an enhanced alternative to SLIRP, providing user-space network connectivity.
passt
is a universal tool which implements a translation layer between
a Layer-2 network interface and native Layer -4 sockets (TCP, UDP, ICMP/ICMPv6 echo)
on a host.
Its main benefits are:
- Doesn't require extra network capabilities as CAP_NET_RAW and CAP_NET_ADMIN.
- Allows integration with service meshes (which expect applications to run locally) out of the box.
- Supports IPv6 out of the box (in contrast to the existing bindings which require configuring IPv6 manually).
Functionality support¶
Functionality | Support |
---|---|
Migration support | Yes |
Service Mesh support | Yes |
Pod IP in guest | Yes |
Custom CIDR in guest | No |
Require extra capabilities (on pod) to operate | No |
Primary network (pod network) | Yes |
Secondary network | No |
Node optimization requirements/recommendations:¶
- To get better performance the node should be configured with:
- To run multiple passt VMs with no explicit ports, the node's
fs.file-max
should be increased (for a VM forwards all IPv4 and IPv6 ports, for TCP and UDP, passt needs to create ~2^18 sockets):
NOTE: To achieve optimal memory consumption with Passt binding, specify ports required for your workload. When no ports are explicitly specified, all ports are forwarded, leading to memory overhead of up to 800 Mi.
Passt network binding plugin¶
[v1.1.0]
The binding plugin replaces the experimental core passt binding implementation (including its API).
Note: The network binding plugin infrastructure and the passt plugin specifically are in Alpha stage. Please use them with care, preferably on a non-production deployment.
The passt binding plugin consists of the following components:
- Passt CNI plugin.
- Sidecar image.
As described in the definition & flow section, the passt plugin needs to:
- Deploy the CNI plugin binary on the nodes.
- Define a NetworkAttachmentDefinition that points to the CNI plugin.
- Assure access to the sidecar image.
- Enable the network binding plugin framework FG.
- Register the binding plugin on the Kubevirt CR.
- Reference the network binding by name from the VM spec interface.
And in detail:
Passt CNI deployment on nodes¶
The CNI plugin binary can be retrieved directly from the kubevirt release assets (on GitHub) or to be built from its sources.
Note: The kubevirt project uses Bazel to build the binaries and container images. For more information in how to build the whole project, visit the developer getting started guide.
Once the binary is ready, you may rename it to a meaningful name
(e.g. kubevirt-passt-binding
).
This name is used in the NetworkAttachmentDefinition configuration.
Copy the binary to each node in your cluster.
The location of the CNI plugins may vary between platforms and versions.
One common path is /opt/cni/bin/
.
Passt NetworkAttachmentDefinition¶
The configuration needed for passt is minimalistic:
apiVersion: "k8s.cni.cncf.io/v1"
kind: NetworkAttachmentDefinition
metadata:
name: netbindingpasst
spec:
config: '{
"cniVersion": "1.0.0",
"name": "netbindingpasst",
"plugins": [
{
"type": "kubevirt-passt-binding"
}
]
}'
The object should be created in a "default" namespace where all other namespaces can access, or, in the same namespace the VMs reside in.
Passt sidecar image¶
Passt sidecar image is built and pushed to kubevirt quay repository.
The sidecar sources can be found here.
The relevant sidecar image needs to be accessible by the cluster and specified in the Kubevirt CR when registering the network binding plugin.
Feature Gate¶
If not already set, add the NetworkBindingPlugins
FG.
kubectl patch kubevirts -n kubevirt kubevirt --type=json -p='[{"op": "add", "path": "/spec/configuration/developerConfiguration/featureGates/-", "value": "NetworkBindingPlugins"}]'
Note: The specific passt plugin has no FG by its own. It is up to the cluster admin to decide if the plugin is to be available in the cluster. The passt binding is still in evaluation, use it with care.
Passt Registration¶
As described in the registration section, passt binding plugin configuration needs to be added to the kubevirt CR.
To register the passt binding, patch the kubevirt CR as follows:
kubectl patch kubevirts -n kubevirt kubevirt --type=json -p='[{"op": "add", "path": "/spec/configuration/network", "value": {
"binding": {
"passt": {
"networkAttachmentDefinition": "default/netbindingpasst",
"sidecarImage": "quay.io/kubevirt/network-passt-binding:20231205_29a16d5c9",
"migration": {
"method": "link-refresh"
},
"computeResourceOverhead": {
"requests": {
"memory": "500Mi",
}
}
}
}
}}]'
The NetworkAttachmentDefinition and sidecarImage values should correspond with the names used in the previous sections, here and here.
When using the plugin, additional memory overhead of 500Mi
will be requested for the compute container in the virt-launcher pod.
VM Passt Network Interface¶
Set the VM network interface binding name to reference the one defined in the kubevirt CR.
---
apiVersion: kubevirt.io/v1
kind: VirtualMachine
metadata:
labels:
kubevirt.io/vm: vm-net-binding-passt
name: vm-net-binding-passt
spec:
running: true
template:
metadata:
labels:
kubevirt.io/vm: vm-net-binding-passt
spec:
domain:
devices:
disks:
- disk:
bus: virtio
name: containerdisk
- disk:
bus: virtio
name: cloudinitdisk
interfaces:
- name: passtnet
binding:
name: passt
ports:
- name: http
port: 80
protocol: TCP
rng: {}
resources:
requests:
memory: 1024M
networks:
- name: passtnet
pod: {}
terminationGracePeriodSeconds: 0
volumes:
- containerDisk:
image: quay.io/kubevirt/fedora-with-test-tooling-container-disk:v1.1.0
name: containerdisk
- cloudInitNoCloud:
networkData: |
version: 2
ethernets:
eth0:
dhcp4: true
name: cloudinitdisk