cbr0 woes

This commit is contained in:
Jerome Petazzoni
2019-10-29 20:34:50 -05:00
parent a150f53fa7
commit efe491c05d

View File

@@ -370,6 +370,8 @@ If the pods aren't running, it could be:
]
Note: if you provisioned a new control plane, re-create and re-expose the deployment.
---
## Checking that everything works
@@ -392,6 +394,20 @@ Note that if you send multiple requests, they are load-balanced in a round robin
This shows that we are using IPVS (vs. iptables, which picked random endpoints).
Problems? Check next slide!
---
## If it doesn't quite work ...
- If we used kubenet before, we now have a `cbr0` bridge
- This bridge (and its subnet) might conflict with what we're using now
- To see if it's the case, check if you have duplicate routes with `ip ro`
- To fix it, delete the old bridge with `ip link del cbr0`
---
## Troubleshooting