From f35bdb4296dfa052fe45efc71a90b9776c07f636 Mon Sep 17 00:00:00 2001 From: Joseph Hanson Date: Thu, 8 Aug 2024 10:44:51 -0500 Subject: [PATCH] trying a few more settings --- .../kube-system/multus/config/net-attach-iot.yaml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/kubernetes/apps/kube-system/multus/config/net-attach-iot.yaml b/kubernetes/apps/kube-system/multus/config/net-attach-iot.yaml index 92c3a9d4..7a9e2001 100644 --- a/kubernetes/apps/kube-system/multus/config/net-attach-iot.yaml +++ b/kubernetes/apps/kube-system/multus/config/net-attach-iot.yaml @@ -12,14 +12,21 @@ spec: "plugins": [ { "type": "macvlan", - "master": "bond0", + "master": "bond0.30", "mode": "bridge", + "capabilities": { + "ips": true + }, "ipam": { "type": "static", "routes": [ { "dst": "10.1.2.0/24", "gw": "10.1.3.1" } ] } + }, + { + "capabilities": { "mac": true }, + "type": "tuning" } ] - } \ No newline at end of file + }