diff options
author | Sascha Grunert <sgrunert@suse.com> | 2020-02-20 13:46:25 +0100 |
---|---|---|
committer | Sascha Grunert <sgrunert@suse.com> | 2020-02-20 13:46:29 +0100 |
commit | d90726c6d84dfa9e2940817a6e3d0122abe17aff (patch) | |
tree | 34d01be0466efe58e10dacbead255feeeb4abb79 /cni | |
parent | 0bd29f89e9d26c9012c76e58050e1bdfd90faaf0 (diff) | |
download | podman-d90726c6d84dfa9e2940817a6e3d0122abe17aff.tar.gz podman-d90726c6d84dfa9e2940817a6e3d0122abe17aff.tar.bz2 podman-d90726c6d84dfa9e2940817a6e3d0122abe17aff.zip |
Beautify podman bridge CNI config
Applying prettier to the CNI config to fix mixed indents and improve
formatting.
Signed-off-by: Sascha Grunert <sgrunert@suse.com>
Diffstat (limited to 'cni')
-rw-r--r-- | cni/87-podman-bridge.conflist | 72 |
1 files changed, 34 insertions, 38 deletions
diff --git a/cni/87-podman-bridge.conflist b/cni/87-podman-bridge.conflist index a7bcf47bb..39e79b13c 100644 --- a/cni/87-podman-bridge.conflist +++ b/cni/87-podman-bridge.conflist @@ -1,41 +1,37 @@ { - "cniVersion": "0.4.0", - "name": "podman", - "plugins": [ - { - "type": "bridge", - "bridge": "cni-podman0", - "isGateway": true, - "ipMasq": true, - "ipam": { - "type": "host-local", - "routes": [ - { - "dst": "0.0.0.0/0" - } - ], - "ranges": [ - [ - { - "subnet": "10.88.0.0/16", - "gateway": "10.88.0.1" - } - ] - ] + "cniVersion": "0.4.0", + "name": "podman", + "plugins": [ + { + "type": "bridge", + "bridge": "cni-podman0", + "isGateway": true, + "ipMasq": true, + "ipam": { + "type": "host-local", + "routes": [{ "dst": "0.0.0.0/0" }], + "ranges": [ + [ + { + "subnet": "10.88.0.0/16", + "gateway": "10.88.0.1" } - }, - { - "type": "portmap", - "capabilities": { - "portMappings": true - } - }, - { - "type": "firewall", - "backend": "iptables" - }, - { - "type": "tuning" - } - ] + ] + ] + } + }, + { + "type": "portmap", + "capabilities": { + "portMappings": true + } + }, + { + "type": "firewall", + "backend": "iptables" + }, + { + "type": "tuning" + } + ] } |