Skip to content

Commit

Permalink
WIP: Validate the presence of kubeproxy
Browse files Browse the repository at this point in the history
  • Loading branch information
sridhargaddam committed Mar 19, 2020
1 parent f6684d0 commit 23bb574
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pkg/globalnet/controllers/ipam/ipam.go
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,8 @@ func (i *Controller) Run(stopCh <-chan struct{}) error {

// Currently submariner global-net implementation works only with kube-proxy.
if len(kubeProxyPodList.Items) == 0 {
return fmt.Errorf("cluster does not seem to use kube-proxy")
// TODO: The current logic to validate the presence of kube-proxy needs to be revisited
klog.Info("REVISIT: Cluster does not seem to use kube-proxy")
}

err = i.initIPTableChains()
Expand Down

0 comments on commit 23bb574

Please sign in to comment.