Skip to content

Commit

Permalink
Release 1.4.2 (#67)
Browse files Browse the repository at this point in the history
Bug Fixes:
- Inbound Prefix list for autogenerated Calico BGP peers
  • Loading branch information
pogossian authored Apr 27, 2022
1 parent a963850 commit 50f56ef
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion calicowatcher/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -431,7 +431,7 @@ func (w *Watcher) generateBGPs() error {
if err != nil {
return err
}
PrefixListInboundList := []string{fmt.Sprintf("permit %s le %d", w.data.clusterCIDR, w.data.blockSize)}
PrefixListInboundList := []string{fmt.Sprintf("permit %s/%d", node.IPIP, w.data.blockSize)}
for _, cidr := range w.data.serviceCIDRs {
PrefixListInboundList = append(PrefixListInboundList, fmt.Sprintf("permit %s le %d", cidr, 32))
}
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.1
version: 0.8.2

# 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.1
appVersion: v1.4.2
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 50f56ef

Please sign in to comment.