Add support of host-device CNI

Change-Id: I990a40cc0fb47467d18fba9c9c75ec6b5c53a67b
diff --git a/omec/omec-user-plane/templates/networks.yaml b/omec/omec-user-plane/templates/networks.yaml
index 97b258c..cac4e18 100644
--- a/omec/omec-user-plane/templates/networks.yaml
+++ b/omec/omec-user-plane/templates/networks.yaml
@@ -23,6 +23,9 @@
   {{- if eq .Values.config.upf.cniPlugin "macvlan" }}
     "master": {{ .Values.config.upf.access.iface | quote }},
   {{- end }}
+  {{- if eq .Values.config.upf.cniPlugin "host-device" }}
+    "device": {{ .Values.config.upf.access.iface | quote }},
+  {{- end }}
     "ipam": {
         "type": {{ .Values.config.upf.ipam | quote }}
     },
@@ -47,6 +50,9 @@
   {{- if eq .Values.config.upf.cniPlugin "macvlan" }}
     "master": {{ .Values.config.upf.core.iface | quote }},
   {{- end }}
+  {{- if eq .Values.config.upf.cniPlugin "host-device" }}
+    "device": {{ .Values.config.upf.core.iface | quote }},
+  {{- end }}
     "ipam": {
         "type": {{ .Values.config.upf.ipam | quote }}
     },