27 lines
No EOL
544 B
YAML
27 lines
No EOL
544 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": "eth0.30",
|
|
"mode": "bridge",
|
|
"capabilities": {
|
|
"ips": true
|
|
},
|
|
"ipam": {
|
|
"type": "static",
|
|
"routes": [
|
|
{ "dst": "10.1.2.0/24", "gw": "10.1.3.1" }
|
|
]
|
|
}
|
|
}
|
|
]
|
|
} |