Last active
May 27, 2020 14:12
-
-
Save aleks-mariusz/771f3dea8793c81caf0e302cbf3a2024 to your computer and use it in GitHub Desktop.
This file contains 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.4.0", | |
"name": "podman", | |
"plugins": [ | |
{ | |
"type": "bridge", | |
"bridge": "cni-podman0", | |
"isGateway": true, | |
"ipMasq": false, | |
"ipam": { | |
"type": "host-local", | |
"routes": [ | |
{ "dst": "0.0.0.0/0" }, | |
{ "dst": "2000::/3" } | |
], | |
"ranges": [ | |
[ | |
{ | |
"subnet": "10.88.0.0/16", | |
"gateway": "10.88.0.1" | |
} | |
], | |
[ | |
{ | |
"subnet": "2a03:8c00:1a:8::/64", | |
"gateway": "2a03:8c00:1a:8::1" | |
} | |
] | |
] | |
} | |
}, | |
{ | |
"type": "portmap", | |
"capabilities": { | |
"portMappings": true | |
} | |
}, | |
{ | |
"type": "firewall" | |
}, | |
{ | |
"type": "tuning" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment