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.

61 lines
2.3 KiB

  1. # See roles/network_plugin/kube-router//defaults/main.yml
  2. # Enables Pod Networking -- Advertises and learns the routes to Pods via iBGP
  3. # kube_router_run_router: true
  4. # Enables Network Policy -- sets up iptables to provide ingress firewall for pods
  5. # kube_router_run_firewall: true
  6. # Enables Service Proxy -- sets up IPVS for Kubernetes Services
  7. # see docs/kube-router.md "Caveats" section
  8. # kube_router_run_service_proxy: false
  9. # Add Cluster IP of the service to the RIB so that it gets advertises to the BGP peers.
  10. # kube_router_advertise_cluster_ip: false
  11. # Add External IP of service to the RIB so that it gets advertised to the BGP peers.
  12. # kube_router_advertise_external_ip: false
  13. # Add LoadbBalancer IP of service status as set by the LB provider to the RIB so that it gets advertised to the BGP peers.
  14. # kube_router_advertise_loadbalancer_ip: false
  15. # Adjust manifest of kube-router daemonset template with DSR needed changes
  16. # kube_router_enable_dsr: false
  17. # Array of arbitrary extra arguments to kube-router, see
  18. # https://github.com/cloudnativelabs/kube-router/blob/master/docs/user-guide.md
  19. # kube_router_extra_args: []
  20. # ASN numbers of the BGP peer to which cluster nodes will advertise cluster ip and node's pod cidr.
  21. # kube_router_peer_router_asns: ~
  22. # The ip address of the external router to which all nodes will peer and advertise the cluster ip and pod cidr's.
  23. # kube_router_peer_router_ips: ~
  24. # The remote port of the external BGP to which all nodes will peer. If not set, default BGP port (179) will be used.
  25. # kube_router_peer_router_ports: ~
  26. # Setups node CNI to allow hairpin mode, requires node reboots, see
  27. # https://github.com/cloudnativelabs/kube-router/blob/master/docs/user-guide.md#hairpin-mode
  28. # kube_router_support_hairpin_mode: false
  29. # Select DNS Policy ClusterFirstWithHostNet, ClusterFirst, etc.
  30. # kube_router_dns_policy: ClusterFirstWithHostNet
  31. # Array of annotations for master
  32. # kube_router_annotations_master: []
  33. # Array of annotations for every node
  34. # kube_router_annotations_node: []
  35. # Array of common annotations for every node
  36. # kube_router_annotations_all: []
  37. # Enables scraping kube-router metrics with Prometheus
  38. # kube_router_enable_metrics: false
  39. # Path to serve Prometheus metrics on
  40. # kube_router_metrics_path: /metrics
  41. # Prometheus metrics port to use
  42. # kube_router_metrics_port: 9255