Skip to content

Instantly share code, notes, and snippets.

@leblancd
Created June 21, 2017 19:29
Show Gist options
  • Save leblancd/43d527ab9d98625ca46c14a014005bd5 to your computer and use it in GitHub Desktop.
Save leblancd/43d527ab9d98625ca46c14a014005bd5 to your computer and use it in GitHub Desktop.
Dual-Stack CNI bridge plugin configuration
{
"cniVersion": "0.3.0",
"name": "mynet",
"type": "bridge",
"bridge": "cbr0",
"isDefaultGateway": true,
"ipMasq": false,
"ipam": {
"type": "host-local",
"ranges": [
{
"subnet": "10.244.101.0/24",
"gateway": "10.244.101.1"
},
{
"subnet": "fd00:101::0/64",
"gateway": "fd00:101::1"
}
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment