kubeasz/roles/kube-node/templates/cni-default.conf.j2

13 lines
199 B
Plaintext
Raw Normal View History

2018-01-02 22:12:51 +08:00
{
"name": "mynet",
"type": "bridge",
"bridge": "mynet0",
"isDefaultGateway": true,
"ipMasq": true,
"hairpinMode": true,
"ipam": {
"type": "host-local",
"subnet": "{{ CLUSTER_CIDR }}"
}
}