Skip to content

Commit 50f56ef

Browse files
authored
Release 1.4.2 (#67)
Bug Fixes: - Inbound Prefix list for autogenerated Calico BGP peers
1 parent a963850 commit 50f56ef

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

calicowatcher/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -431,7 +431,7 @@ func (w *Watcher) generateBGPs() error {
431431
if err != nil {
432432
return err
433433
}
434-
PrefixListInboundList := []string{fmt.Sprintf("permit %s le %d", w.data.clusterCIDR, w.data.blockSize)}
434+
PrefixListInboundList := []string{fmt.Sprintf("permit %s/%d", node.IPIP, w.data.blockSize)}
435435
for _, cidr := range w.data.serviceCIDRs {
436436
PrefixListInboundList = append(PrefixListInboundList, fmt.Sprintf("permit %s le %d", cidr, 32))
437437
}

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.1
18+
version: 0.8.2
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.1
23+
appVersion: v1.4.2
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)