Description
When instantiating the Multi-Node MinIO oneflow template the VMs are getting instantiated with incorrect networks.
Fix
Change the multiple occasions
"NIC": [
{
"NAME": "NIC0\n NETWORK_ID = $public"
},
{
"NAME": "NIC1\n NETWORK_ID = $private"
}
]
to
"NIC": [
{
"NAME": "NIC0",
"NETWORK_ID": "$Public"
},
{
"NAME": "NIC1",
"NETWORK_ID": "$Private"
}
]