Define one more SR-IOV network for NetDevice type
SPGW-U and the other regular network applications (e.g., CDN and BBU/CU)
use SR-IOV/VFIO and SR-IOV/NetDevice, respectively.
Thus, need to define one more SR-IOV network.
Change-Id: Iff331fcb8f2040ce4127be5d591c6bd4e1aa32bd
diff --git a/mcord-release/mcord-setup/templates/sriov-conf.yaml b/mcord-release/mcord-setup/templates/sriov-conf.yaml
index 03befce..fcc0f24 100644
--- a/mcord-release/mcord-setup/templates/sriov-conf.yaml
+++ b/mcord-release/mcord-setup/templates/sriov-conf.yaml
@@ -25,10 +25,16 @@
"resourceList":
[
{
- "resourceName": {{ .Values.sriov.name | quote }},
- "rootDevices": [{{ .Values.sriov.devicepci | quote }}],
+ "resourceName": {{ .Values.sriov_vfio.name | quote }},
+ "rootDevices": [{{ .Values.sriov_vfio.devicepci | quote }}],
"sriovMode": true,
- "deviceType": {{ .Values.sriov.devicetype | quote }}
+ "deviceType": {{ .Values.sriov_vfio.devicetype | quote }}
+ },
+ {
+ "resourceName": {{ .Values.sriov_netdevice.name | quote }},
+ "rootDevices": [{{ .Values.sriov_netdevice.devicepci | quote }}],
+ "sriovMode": true,
+ "deviceType": {{ .Values.sriov_netdevice.devicetype | quote }}
}
]
}