rekahsoft
/
guix-config
Archived
1
1
Fork 0

WIP podman cni config eg

Signed-off-by: Collin J. Doering <collin@rekahsoft.ca>
This commit is contained in:
Collin J. Doering 2019-09-06 01:01:49 -04:00
parent 3d5e6355a0
commit 6cd3f0b699
Signed by: rekahsoft
GPG Key ID: 7B4DEB93212B3022
1 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,25 @@
{
"cniVersion": "0.3.0",
"name": "podman",
"plugins": [
{
"type": "bridge",
"bridge": "cni0",
"isGateway": true,
"ipMasq": true,
"ipam": {
"type": "host-local",
"subnet": "10.88.0.0/16",
"routes": [
{ "dst": "0.0.0.0/0" }
]
}
},
{
"type": "portmap",
"capabilities": {
"portMappings": true
}
}
]
}