Skip to content

Commit

Permalink
Remove the ipcache check
Browse files Browse the repository at this point in the history
Temporarily disabling the ipcache check while we investigate what's
causing the flake.

Ref: #361

Signed-off-by: Michi Mutsuzaki <[email protected]>
  • Loading branch information
michi-covalent committed Aug 30, 2021
1 parent 8edb4f2 commit 4eb10be
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions connectivity/check/deployment.go
Original file line number Diff line number Diff line change
Expand Up @@ -477,16 +477,6 @@ func (ct *ConnectivityTest) validateDeployment(ctx context.Context) error {
}
}

// Set the timeout for all IP cache lookup retries
ipCacheCtx, cancel := context.WithTimeout(ctx, ct.params.ipCacheTimeout())
defer cancel()
for _, cp := range ct.ciliumPods {
err := ct.waitForIPCache(ipCacheCtx, cp)
if err != nil {
return err
}
}

// Set the timeout for all DNS lookup retries
dnsCtx, cancel := context.WithTimeout(ctx, ct.params.ipCacheTimeout())
defer cancel()
Expand Down

0 comments on commit 4eb10be

Please sign in to comment.