You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
557 B

  1. {
  2. "cniVersion":"0.3.0",
  3. "name":"kubernetes",
  4. "plugins":[
  5. {
  6. "name":"kubernetes",
  7. "type":"bridge",
  8. "bridge":"kube-bridge",
  9. "isDefaultGateway":true,
  10. {% if kube_router_support_hairpin_mode %}
  11. "hairpinMode":true,
  12. {% endif %}
  13. "ipam":{
  14. {% if host_subnet is defined %}
  15. "subnet": "{{ host_subnet }}",
  16. {% endif %}
  17. "type":"host-local"
  18. }
  19. },
  20. {
  21. "type":"portmap",
  22. "capabilities":{
  23. "portMappings":true
  24. }
  25. }
  26. ]
  27. }