Skip to content

Commit fe2d40d

Browse files
authored
Release 1.4.3 (#68)
Bug Fixes: - BGP: Inbound max prefix comparison when the peer is terminated on a switch
1 parent 50f56ef commit fe2d40d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

controllers/bgp_translations.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -371,7 +371,7 @@ func compareBGPMetaAPIEBGP(bgpMeta *k8sv1alpha1.BGPMeta, apiBGP *bgp.EBGP, u uni
371371
return false
372372
}
373373
prefixLimit, _ := strconv.Atoi(bgpMeta.Spec.PrefixLimit)
374-
if apiBGP.PrefixLimit != prefixLimit {
374+
if apiBGP.PrefixLimit != prefixLimit && !(apiBGP.PrefixLimit == 1000 && prefixLimit == 0 && apiBGP.TerminateOnSwitch == "yes") {
375375
u.DebugLogger.Info("PrefixLimit changed", "netrisValue", apiBGP.PrefixLimit, "k8sValue", prefixLimit)
376376
return false
377377
}

deploy/charts/netris-operator/Chart.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: 0.8.2
18+
version: 0.8.3
1919

2020
# This is the version number of the application being deployed. This version number should be
2121
# incremented each time you make changes to the application. Versions are not expected to
2222
# follow Semantic Versioning. They should reflect the version the application is using.
23-
appVersion: v1.4.2
23+
appVersion: v1.4.3
2424
home: https://github.com/netrisai/netris-operator
2525
icon: https://www.netris.ai/wp-content/uploads/2021/01/logo-300.png # [todo] Change url to permalink
2626
keywords:

0 commit comments

Comments
 (0)