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
The network adapters of ConfigQemu{} don't neatly map to the data-structure the PVE API uses.
We currently use an array.
PVE uses an map[id]settings.
With our current implementation it's not possible to have network interfaces that aren't consecutive.
In PVE users can have interface1 and interface3 configured. Our current implantation can't distinguish between.
inteface1
interface2
and
interface1
interface5
In this instance interface5 is the second interface. so it will be the second item in the array.
Before you start working on this please discuss it with me.
The text was updated successfully, but these errors were encountered:
The network adapters of
ConfigQemu{}
don't neatly map to the data-structure the PVE API uses.We currently use an array.
PVE uses an map[id]settings.
With our current implementation it's not possible to have network interfaces that aren't consecutive.
In PVE users can have interface1 and interface3 configured. Our current implantation can't distinguish between.
and
In this instance interface5 is the second interface. so it will be the second item in the array.
Before you start working on this please discuss it with me.
The text was updated successfully, but these errors were encountered: