You are viewing documentation for Cozystack next, which is currently in beta. For the latest stable version, see the v1.6 documentation.
Attaching a Virtual Machine to an External VLAN
This page describes how to attach a Cozystack virtual machine (the
vm-instance application) directly to an external, physically-routed VLAN — the layer-2 segment a VM needs when it must appear on the same broadcast domain as external hardware (a licensing appliance, a storage box, a gateway managed outside the cluster), with an address from that VLAN’s subnet rather than from the cluster overlay.
The default Cozystack VM networking is overlay-only (the pod network, plus optional KubeOVN
VPC subnets). Bridging a VM onto a real VLAN is a different pattern and has one non-obvious constraint: it works with a Linux bridge and the bridge CNI plugin, and it does not work with macvlan. The rest of this guide explains why and gives a working recipe.
Why bridge and not macvlan
KubeVirt attaches a VM interface to a secondary network using bridge binding by default (this is what the vm-instance chart emits for every network in .spec.networks). With bridge binding the guest’s own MAC address is placed on the wire — the launcher pod does not masquerade or translate it.
A macvlan attachment is incompatible with that model. macvlan demultiplexes inbound frames strictly by the MAC address of the macvlan child interface. Because KubeVirt puts the guest’s MAC on the wire — not the macvlan child’s — replies from the gateway or other hosts arrive at the parent interface addressed to the guest MAC, do not match any macvlan child, and are silently dropped before they ever reach the VM. The symptom is a guest that can transmit (ARP requests and pings leave, visible in tcpdump on the parent interface) but never receives a reply (its neighbor entry for the gateway stays FAILED). As a secondary consequence, the host cannot reach macvlan children through the parent interface either, so a host-side service on the parent IP is unreachable from the VMs.
A Linux bridge does not have this limitation: it forwards by learned MAC on all bridged ports, so the guest MAC is reachable, and the host can carry an address on the bridge itself to talk to the VMs. Attach the VLAN sub-interface to a bridge and point a bridge-type NetworkAttachmentDefinition at it.
Overview
Three pieces cooperate:
- A Linux bridge on each node that enslaves the tagged VLAN sub-interface. This is node-level networking — it is configured by your node provisioning (netplan / Talos machine config / systemd-networkd), not by a Cozystack chart.
- A
NetworkAttachmentDefinitionof typebridgereferencing that bridge, created in the VM’s tenant namespace. - The
vm-instanceapplication referencing the NetworkAttachmentDefinition by name in.networks, with the guest’s static address supplied through cloud-init.
Prerequisites
- The
multuspackage is enabled (it provides theNetworkAttachmentDefinitionCRD and the secondary-network plumbing). - The
bridgeCNI plugin is present in/opt/cni/binon every node. Themultuspackage puts it there itself on every platform; see the multus package README for what it stages and the opt-out, and read it before upgrading a cluster whose/opt/cni/binyou provision yourself. Verify withls /opt/cni/bin/bridge; a missing binary makes the NetworkAttachmentDefinition fail withfailed to find plugin "bridge" in path [/opt/cni/bin]. - There is no IPAM plugin in this path — addresses are assigned inside the guest, not by the CNI. Plan static addresses per VM.
1. Linux bridge on the node
Create a bridge that enslaves the tagged VLAN sub-interface. The VLAN sub-interface itself carries no address; the bridge carries the host’s presence on that VLAN (optional, but useful for a gateway-reachability sanity path and for any host-side service the VMs must reach).
This example uses netplan on an Ubuntu/Debian node; the VLAN id and subnet are illustrative (203.0.113.0/24, VLAN 100, gateway 203.0.113.1). Adapt to your uplink naming and to Talos or systemd-networkd if that is your provisioning:
network:
version: 2
vlans:
# Tagged VLAN sub-interface, no address of its own — enslaved to the bridge.
uplink.100:
id: 100
link: uplink
bridges:
br100:
interfaces:
- uplink.100
# Optional host presence on the VLAN. Keep the node's default route on
# its management interface — do not add a default route here.
addresses:
- 203.0.113.2/24
Notes:
- The node’s default route must stay on the management interface. The bridge address (if any) is only for on-VLAN reachability, not a second default gateway.
netplan applycannot move an interface into a bridge while a consumer still holds it (for example avirt-launcherpod using a previousmacvlanattachment). Remove the consumer first (delete the VMI so the launcher releases the interface), then reconfigure.- After a reboot,
systemd-networkdmay briefly report the bridge “routable” while the link is not yet actually up. If your VMs need the VLAN immediately at boot, gate their start on a reachability check, or re-runnetplan applyuntil the gateway answers.
2. NetworkAttachmentDefinition
Create a bridge-type NetworkAttachmentDefinition in the tenant namespace that will host the VM. The vm-instance chart resolves a network by name in the VM’s own namespace, so one copy must exist in every tenant namespace that runs VMs on this VLAN.
apiVersion: k8s.cni.cncf.io/v1
kind: NetworkAttachmentDefinition
metadata:
name: vlan100
namespace: tenant-example
spec:
config: |
{
"cniVersion": "0.3.1",
"type": "bridge",
"bridge": "br100",
"ipam": {}
}
bridgemust match the bridge name from step 1 (br100here).ipam: {}— no cluster-side address assignment; the guest configures its address itself (step 3).
3. Attach the VM and assign a static address
Reference the NetworkAttachmentDefinition by name in the vm-instance values. Because the chart does not support networkData, the static address goes into cloud-init userData (cloudInit), written by the guest at first boot:
# vm-instance values
instanceType: u1.medium
instanceProfile: ubuntu
disks:
- name: example-system
networks:
- name: vlan100
cloudInit: |
#cloud-config
write_files:
- path: /etc/netplan/60-vlan100.yaml
permissions: "0600"
content: |
network:
version: 2
ethernets:
# Match the second NIC (the pod-network NIC is the first). Use the
# interface that comes up without a DHCP lease.
enp2s0:
addresses:
- 203.0.113.10/24
runcmd:
- netplan apply
The VM ends up with two interfaces: the always-present pod-network NIC (default, used for cluster-internal traffic and for the vm-instance external-access features) and the VLAN NIC. The /24 address above brings up only the connected route for the VLAN subnet — it adds no default route, so the guest’s egress stays wherever you want it (typically the pod NIC). If the VLAN is meant to be the guest’s default gateway instead, add a default route under the VLAN NIC and remove it from the pod NIC.
Gotchas
- VMs are dual-homed. The
vm-instancechart always adds the pod-network NIC in addition to anynetworksyou declare; there is no single-homed (VLAN-only) option today. Address the VLAN NIC inside the guest and leave the pod NIC to the cluster. - No
networkData. The chart wires cloud-init throughuserDataonly, so in-guest static configuration (netplanwrite_filesplusnetplan apply, as above) is the way to assign the VLAN address. - MAC changes on VM re-creation. KubeVirt generates a fresh guest MAC each time the VM object is re-created, and
vm-instanceexposes no way to pin it, so re-creating a VM changes its MAC. The upstream gateway then holds a stale ARP entry for the old MAC for a few minutes, so “gateway unreachable” immediately after re-creating a VM is expected — wait for the ARP entry to age out (roughly five minutes) rather than treating it as a fault. - Host-to-VM traffic. If the host must talk to the VMs (a proxy, a health check), give the bridge a host address on the VLAN (step 1) — traffic through a bare VLAN sub-interface to bridge-attached guests will not work the way
macvlanusers expect.
See also
- Attaching GPUs to virtual machines — passing NVIDIA GPUs and vGPU profiles into the same VMs.
- Networking architecture — how the default overlay data plane is put together.
- KubeVirt user guide, Interfaces and Networks — bridge binding versus other binding methods.