Skip to content

Commit

Permalink
cni: configure default network
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergiusz Urbaniak committed Sep 8, 2016
1 parent b891036 commit 7c2e6b7
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions board/coreos/minikube/rootfs-overlay/etc/cni/net.d/k8s.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"name": "rkt.kubernetes.io",
"type": "bridge",
"bridge": "mybridge",
"mtu": 1460,
"addIf": "true",
"isGateway": true,
"ipMasq": true,
"ipam": {
"type": "host-local",
"subnet": "10.1.0.0/16",
"gateway": "10.1.0.1",
"routes": [
{
"dst": "0.0.0.0/0"
}
]
}
}

0 comments on commit 7c2e6b7

Please sign in to comment.