diff options
Diffstat (limited to 'cni/97-podman-bridge.conf')
-rw-r--r-- | cni/97-podman-bridge.conf | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/cni/97-podman-bridge.conf b/cni/97-podman-bridge.conf new file mode 100644 index 000000000..27fc096c4 --- /dev/null +++ b/cni/97-podman-bridge.conf @@ -0,0 +1,15 @@ +{ + "cniVersion": "0.3.0", + "name": "podman", + "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" } + ] + } +} |