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.

29 lines
992 B

  1. ---
  2. # Limits
  3. weave_memory_limit: 400M
  4. weave_cpu_limit: 30m
  5. weave_memory_requests: 64M
  6. weave_cpu_requests: 10m
  7. # This two variable are automatically changed by the weave's role, do not manually change these values
  8. # To reset values :
  9. # weave_seed: unset
  10. # weave_peers: unset
  11. weave_seed: uninitialized
  12. weave_peers: uninitialized
  13. # weave's network password for encryption
  14. # if null then no network encryption
  15. # you can use --extra-vars to pass the password in command line
  16. weave_password: EnterPasswordHere
  17. # Weave uses consensus mode by default
  18. # Enabling seed mode allow to dynamically add or remove hosts
  19. # https://www.weave.works/docs/net/latest/ipam/
  20. weave_mode_seed: false
  21. # Set the MTU of Weave (default 1376, Jumbo Frames: 8916)
  22. weave_mtu: 1376
  23. # this variable is use in seed mode
  24. weave_ip_current_cluster: "{% for host in groups['k8s-cluster'] %}{{ hostvars[host]['ip'] | default(hostvars[host]['ansible_default_ipv4']['address']) }}{% if not loop.last %} {% endif %}{% endfor %}"