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
1.0 KiB

  1. ---
  2. # Flannel public IP
  3. # The address that flannel should advertise as how to access the system
  4. # Disabled until https://github.com/coreos/flannel/issues/712 is fixed
  5. # flannel_public_ip: "{{ access_ip|default(ip|default(fallback_ips[inventory_hostname])) }}"
  6. ## interface that should be used for flannel operations
  7. ## This is actually an inventory cluster-level item
  8. # flannel_interface:
  9. ## Select interface that should be used for flannel operations by regexp on Name or IP
  10. ## This is actually an inventory cluster-level item
  11. ## example: select interface with ip from net 10.0.0.0/23
  12. ## single quote and escape backslashes
  13. # flannel_interface_regexp: '10\\.0\\.[0-2]\\.\\d{1,3}'
  14. # You can choose what type of flannel backend to use
  15. # please refer to flannel's docs : https://github.com/coreos/flannel/blob/master/README.md
  16. flannel_backend_type: "vxlan"
  17. flannel_vxlan_vni: 1
  18. flannel_vxlan_port: 8472
  19. # Limits for apps
  20. flannel_memory_limit: 500M
  21. flannel_cpu_limit: 300m
  22. flannel_memory_requests: 64M
  23. flannel_cpu_requests: 150m