18 lines
374 B
YAML
18 lines
374 B
YAML
apiVersion: "k8s.cni.cncf.io/v1"
|
|
kind: NetworkAttachmentDefinition
|
|
metadata:
|
|
name: br-srv
|
|
namespace: windows-demo
|
|
spec:
|
|
config: '{
|
|
"cniVersion": "0.3.1",
|
|
"type": "bridge",
|
|
"bridge": "br-srv",
|
|
"ipam": {
|
|
"type": "host-local",
|
|
"subnet": "192.168.200.0/22",
|
|
"rangeStart": "192.168.200.100",
|
|
"rangeEnd": "192.168.200.200"
|
|
}
|
|
}'
|