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.

69 lines
2.5 KiB

  1. ---
  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 LoadBalancer 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. # Enables BGP graceful restarts
  16. kube_router_bgp_graceful_restart: true
  17. # Adjust manifest of kube-router daemonset template with DSR needed changes
  18. kube_router_enable_dsr: false
  19. # Array of arbitrary extra arguments to kube-router, see
  20. # https://github.com/cloudnativelabs/kube-router/blob/master/docs/user-guide.md
  21. kube_router_extra_args: []
  22. # ASN number of the cluster, used when communicating with external BGP routers
  23. kube_router_cluster_asn: ~
  24. # ASN numbers of the BGP peer to which cluster nodes will advertise cluster ip and node's pod cidr.
  25. kube_router_peer_router_asns: ~
  26. # The ip address of the external router to which all nodes will peer and advertise the cluster ip and pod cidr's.
  27. kube_router_peer_router_ips: ~
  28. # The remote port of the external BGP to which all nodes will peer. If not set, default BGP port (179) will be used.
  29. kube_router_peer_router_ports: ~
  30. # Setups node CNI to allow hairpin mode, requires node reboots, see
  31. # https://github.com/cloudnativelabs/kube-router/blob/master/docs/user-guide.md#hairpin-mode
  32. kube_router_support_hairpin_mode: false
  33. # Select DNS Policy ClusterFirstWithHostNet, ClusterFirst, etc.
  34. kube_router_dns_policy: ClusterFirstWithHostNet
  35. # Adds annotations to kubernetes nodes for advanced configuration of BGP Peers.
  36. # https://github.com/cloudnativelabs/kube-router/blob/master/docs/bgp.md
  37. # Array of annotations for master
  38. kube_router_annotations_master: []
  39. # Array of annotations for every node
  40. kube_router_annotations_node: []
  41. # Array of common annotations for every node
  42. kube_router_annotations_all: []
  43. # Enables scraping kube-router metrics with Prometheus
  44. kube_router_enable_metrics: false
  45. # Path to serve Prometheus metrics on
  46. kube_router_metrics_path: /metrics
  47. # Prometheus metrics port to use
  48. kube_router_metrics_port: 9255