vlastv

/etc/cni/net.d/

Aug 13th, 2020
14
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.03 KB | None | 0 0
  1. ==> 10-flannel.conflist <==
  2. {
  3. "name": "cbr0",
  4. "cniVersion": "0.3.1",
  5. "plugins": [
  6. {
  7. "type": "flannel",
  8. "delegate": {
  9. "hairpinMode": true,
  10. "isDefaultGateway": true
  11. }
  12. },
  13. {
  14. "type": "portmap",
  15. "capabilities": {
  16. "portMappings": true
  17. }
  18. }
  19. ]
  20. }
  21.  
  22. ==> 87-podman-bridge.conflist <==
  23. {
  24. "cniVersion": "0.4.0",
  25. "name": "podman",
  26. "plugins": [
  27. {
  28. "type": "bridge",
  29. "bridge": "cni-podman0",
  30. "isGateway": true,
  31. "ipMasq": true,
  32. "hairpinMode": true,
  33. "ipam": {
  34. "type": "host-local",
  35. "routes": [{ "dst": "0.0.0.0/0" }],
  36. "ranges": [
  37. [
  38. {
  39. "subnet": "10.88.0.0/16",
  40. "gateway": "10.88.0.1"
  41. }
  42. ]
  43. ]
  44. }
  45. },
  46. {
  47. "type": "portmap",
  48. "capabilities": {
  49. "portMappings": true
  50. }
  51. },
  52. {
  53. "type": "firewall"
  54. },
  55. {
  56. "type": "tuning"
  57. }
  58. ]
  59. }
  60.  
Advertisement
Add Comment
Please, Sign In to add comment