Created
June 21, 2017 19:29
-
-
Save leblancd/43d527ab9d98625ca46c14a014005bd5 to your computer and use it in GitHub Desktop.
Dual-Stack CNI bridge plugin configuration
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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