theshire/kubernetes/apps/kube-system/multus/config/net-attach-iot.yaml
2024-04-17 08:24:37 -05:00

23 lines
No EOL
452 B
YAML

---
apiVersion: "k8s.cni.cncf.io/v1"
kind: NetworkAttachmentDefinition
metadata:
name: multus-iot
spec:
config: |-
{
"cniVersion": "0.3.1",
"name": "multus-iot",
"plugins": [
{
"type": "macvlan",
"master": "bond0.30",
"ipam": {
"type": "static",
"routes": [
{ "dst": "10.1.2.0/24", "gw": "10.1.3.1" }
]
}
}
]
}