Skip to content

Commit 375ccc2

Browse files
jpetazzomurali-reddy
authored andcommitted
Minor typo fix in logs (#700)
s/annotaion/annotation/
1 parent 8f9729a commit 375ccc2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pkg/controllers/routing/network_routes_controller.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -969,10 +969,10 @@ func NewNetworkRoutingController(clientset kubernetes.Interface,
969969

970970
bgpLocalAddressListAnnotation, ok := node.ObjectMeta.Annotations[bgpLocalAddressAnnotation]
971971
if !ok {
972-
glog.Infof("Could not find annotaion `kube-router.io/bgp-local-addresses` on node object so BGP will listen on node IP: %s address.", nrc.nodeIP.String())
972+
glog.Infof("Could not find annotation `kube-router.io/bgp-local-addresses` on node object so BGP will listen on node IP: %s address.", nrc.nodeIP.String())
973973
nrc.localAddressList = append(nrc.localAddressList, nrc.nodeIP.String())
974974
} else {
975-
glog.Infof("Found annotaion `kube-router.io/bgp-local-addresses` on node object so BGP will listen on local IP's: %s", bgpLocalAddressListAnnotation)
975+
glog.Infof("Found annotation `kube-router.io/bgp-local-addresses` on node object so BGP will listen on local IP's: %s", bgpLocalAddressListAnnotation)
976976
localAddresses := stringToSlice(bgpLocalAddressListAnnotation, ",")
977977
for _, addr := range localAddresses {
978978
ip := net.ParseIP(addr)

0 commit comments

Comments
 (0)