diff --git a/docs/ipv6.md b/docs/ipv6.md index e5d9eb2cbf..0913c70248 100644 --- a/docs/ipv6.md +++ b/docs/ipv6.md @@ -68,7 +68,7 @@ The CNI configuration is also updated with ipv6 addresses; This means that pod's gets assigned ipv6 addresses. The announcement of the pod CIDRs does not work yet. So pods on other -nodes than the own can not be reached. +nodes than the own cannot be reached. To get this working the routes must be inserted in the RIB for `gobgp`. Checking the ipv4 rib gives an error; diff --git a/pkg/controllers/routing/aws.go b/pkg/controllers/routing/aws.go index baabbb220f..9e586b6df0 100644 --- a/pkg/controllers/routing/aws.go +++ b/pkg/controllers/routing/aws.go @@ -21,7 +21,7 @@ import ( func (nrc *NetworkRoutingController) disableSourceDestinationCheck() { nodes, err := nrc.clientset.CoreV1().Nodes().List(metav1.ListOptions{}) if err != nil { - glog.Errorf("Failed to list nodes from API server due to: %s. Can not perform BGP peer sync", err.Error()) + glog.Errorf("Failed to list nodes from API server due to: %s. Cannot perform BGP peer sync", err.Error()) return } diff --git a/pkg/controllers/routing/bgp_peers.go b/pkg/controllers/routing/bgp_peers.go index 7eb5cff691..8104e046bf 100644 --- a/pkg/controllers/routing/bgp_peers.go +++ b/pkg/controllers/routing/bgp_peers.go @@ -39,7 +39,7 @@ func (nrc *NetworkRoutingController) syncInternalPeers() { // get the current list of the nodes from API server nodes, err := nrc.clientset.CoreV1().Nodes().List(metav1.ListOptions{}) if err != nil { - glog.Errorf("Failed to list nodes from API server due to: %s. Can not perform BGP peer sync", err.Error()) + glog.Errorf("Failed to list nodes from API server due to: %s. Cannot perform BGP peer sync", err.Error()) return } if nrc.MetricsEnabled {