aboutsummaryrefslogtreecommitdiff
path: root/content/blog/kubernetes/bfd-service.md
diff options
context:
space:
mode:
authorJulien Dessaux2021-08-18 19:48:13 +0200
committerJulien Dessaux2021-08-18 19:48:13 +0200
commit92fdadbba4831a26df45d448d8a162c89332b294 (patch)
tree80e6dbdbbc2649b5573f98a6ed50f41e5eab2cea /content/blog/kubernetes/bfd-service.md
parentAdded BFD on kube article (diff)
downloadwww-92fdadbba4831a26df45d448d8a162c89332b294.tar.gz
www-92fdadbba4831a26df45d448d8a162c89332b294.tar.bz2
www-92fdadbba4831a26df45d448d8a162c89332b294.zip
wording
Diffstat (limited to '')
-rw-r--r--content/blog/kubernetes/bfd-service.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/content/blog/kubernetes/bfd-service.md b/content/blog/kubernetes/bfd-service.md
index 919430c..711662a 100644
--- a/content/blog/kubernetes/bfd-service.md
+++ b/content/blog/kubernetes/bfd-service.md
@@ -8,11 +8,11 @@ tags:
## Introduction
-I am currently playing with metallb for a baremetal setup of mine that sits behind a router/firewall that I cannot reconfigure with kubernetes. I am therefore planning to have it do a static mapping of public ips to virtual ips configured with metallb, a great piece of software made just for this kind of situation.
+I am currently playing with metallb for a baremetal setup of mine that sits behind a router/firewall that I cannot reconfigure with kubernetes. I am therefore planning to have it do a static mapping of public ips to virtual ips configured with metallb, a kubernetes service made just for this kind of situation.
-Metallb has two ways of handling virtual ips. The first one is the layer2 mode and is unsatisfactory to me because metallb does not speak vrrp, therefore the nodes advertise their virtual ips with their own mac addresses. Because of that, failing over when a node fails (even if you drain it gracefully) takes a long time and there is no way to speed it up.
+Metallb has two ways of advertising its virtual ips to the world. The first one is the layer2 mode and is unsatisfactory to me because metallb does not speak vrrp, therefore the nodes advertise their virtual ips with their own mac addresses. Because of that, failing over when a node fails (even if you drain it gracefully) takes a long time and there is no way to speed it up.
-That leaves me with the bgp way of doing this, which works fine as long as their is no abrupt failure of the node the router/firewall is currently routing to. When an abrupt failure happens you get to wait the bgp session timeout before the router/firewall converges. Draining a node works because the bgp session gets properly closed, only abrupt failures are a problem in this mode.
+That leaves me with the bgp way of doing this, which works fine as long as there is no abrupt failure of the node the router/firewall is currently routing to. When an abrupt failure happens you get to wait the bgp session timeout before the router/firewall converges. Draining a node works because the bgp session gets properly closed, only abrupt failures are a problem in this mode.
This problem is well known and usually solved with bfd, but according to https://github.com/metallb/metallb/issues/396 it is neither supported nor planned.