Skip to content

Commit

Permalink
Release 1.4.3 (#68)
Browse files Browse the repository at this point in the history
Bug Fixes:
- BGP: Inbound max prefix comparison when the peer is terminated on a switch
  • Loading branch information
pogossian authored May 13, 2022
1 parent 50f56ef commit fe2d40d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion controllers/bgp_translations.go
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,7 @@ func compareBGPMetaAPIEBGP(bgpMeta *k8sv1alpha1.BGPMeta, apiBGP *bgp.EBGP, u uni
return false
}
prefixLimit, _ := strconv.Atoi(bgpMeta.Spec.PrefixLimit)
if apiBGP.PrefixLimit != prefixLimit {
if apiBGP.PrefixLimit != prefixLimit && !(apiBGP.PrefixLimit == 1000 && prefixLimit == 0 && apiBGP.TerminateOnSwitch == "yes") {
u.DebugLogger.Info("PrefixLimit changed", "netrisValue", apiBGP.PrefixLimit, "k8sValue", prefixLimit)
return false
}
Expand Down
4 changes: 2 additions & 2 deletions deploy/charts/netris-operator/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.8.2
version: 0.8.3

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

0 comments on commit fe2d40d

Please sign in to comment.