terraform-k8s/roles/kubernetes-base/templates/kubenet-config.json.j2

20 lines
345 B
Plaintext
Raw Normal View History

2019-08-08 19:20:54 +00:00
{
"cniVersion": "0.3.0",
"name": "mynet",
"type": "bridge",
"bridge": "cbr0",
"isDefaultGateway": true,
"ipMasq": true,
"hairpinMode": true,
"ipam": {
"type": "host-local",
"ranges": [
[
{
"subnet": "2001:470:6d:22c:42::/80",
"gateway": "2001:470:6d:22c::1"
}
]
]
}
}