Skip to content

Commit

Permalink
Merge pull request #932 from TrekkieCoder/main
Browse files Browse the repository at this point in the history
chore: Updated README and some typos
  • Loading branch information
UltraInstinct14 authored Jan 13, 2025
2 parents 5955773 + 8c042e3 commit cdd14c4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ Additionally, loxilb also supports:
- [x] kube-proxy replacement with eBPF(full cluster-mesh implementation for Kubernetes)
- [x] Ingress Support
- [x] Kubernetes Gateway API
- [x] HA capable Egress for Kubernetes
- [ ] Kubernetes Network Policies

## Telco-Cloud with loxilb
Expand Down
4 changes: 2 additions & 2 deletions pkg/loxinet/apiclient.go
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ func (na *NetAPIStruct) NetLbRuleAdd(lm *cmn.LbRuleMod) (int, error) {
for _, ip := range lm.SecIPs {
ips = append(ips, ip.SecIP)
}
mh.bgp.AddBGPRule("default", ips)
mh.bgp.AddBGPRule(cmn.CIDefault, ips)
} else {
tk.LogIt(tk.LogDebug, "loxilb BGP mode is disabled \n")
}
Expand All @@ -359,7 +359,7 @@ func (na *NetAPIStruct) NetLbRuleDel(lm *cmn.LbRuleMod) (int, error) {
if lm.Serv.Bgp {
if mh.bgp != nil {
ips = append(ips, lm.Serv.ServIP)
mh.bgp.DelBGPRule("default", ips)
mh.bgp.DelBGPRule(cmn.CIDefault, ips)
} else {
tk.LogIt(tk.LogDebug, "loxilb BGP mode is disabled \n")
}
Expand Down

0 comments on commit cdd14c4

Please sign in to comment.