
Format the cni.template, use `space` instead of some `tab`. Avoid indent issue in text editor. Signed-off-by: bingshen.wbs <bingshen.wbs@alibaba-inc.com>
27 lines
423 B
Plaintext
27 lines
423 B
Plaintext
{
|
|
"name": "k8s-pod-network",
|
|
"cniVersion": "0.3.1",
|
|
"plugins": [
|
|
{
|
|
"type": "ptp",
|
|
"mtu": 1460,
|
|
"ipam": {
|
|
"type": "host-local",
|
|
"subnet": "{{.PodCIDR}}",
|
|
"routes": [
|
|
{
|
|
"dst": "0.0.0.0/0"
|
|
}
|
|
]
|
|
}
|
|
},
|
|
{
|
|
"type": "portmap",
|
|
"capabilities": {
|
|
"portMappings": true
|
|
},
|
|
"noSnat": true
|
|
}
|
|
]
|
|
}
|