[kube-router] Add option to disable bgp-graceful-restart (10488) (#10489)

pull/10508/head
Ross Kusler 2023-10-06 19:52:45 -07:00 committed by GitHub
parent bea5034ddf
commit acb86c23f9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 1 deletions

View File

@ -19,6 +19,9 @@
# Add LoadBalancer IP of service status as set by the LB provider to the RIB so that it gets advertised to the BGP peers.
# kube_router_advertise_loadbalancer_ip: false
# Enables BGP graceful restarts
# kube_router_bgp_graceful_restart: true
# Adjust manifest of kube-router daemonset template with DSR needed changes
# kube_router_enable_dsr: false

View File

@ -18,6 +18,9 @@ kube_router_advertise_external_ip: false
# Add LoadBalancer IP of service status as set by the LB provider to the RIB so that it gets advertised to the BGP peers.
kube_router_advertise_loadbalancer_ip: false
# Enables BGP graceful restarts
kube_router_bgp_graceful_restart: true
# Adjust manifest of kube-router daemonset template with DSR needed changes
kube_router_enable_dsr: false

View File

@ -39,7 +39,7 @@ spec:
- --run-firewall={{ kube_router_run_firewall | bool }}
- --run-service-proxy={{ kube_router_run_service_proxy | bool }}
- --kubeconfig=/var/lib/kube-router/kubeconfig
- --bgp-graceful-restart=true
- --bgp-graceful-restart={{ kube_router_bgp_graceful_restart }}
{% if kube_router_advertise_cluster_ip %}
- --advertise-cluster-ip
{% endif %}