Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

swicth k8s deprecated method to new method #2664

Merged
merged 1 commit into from
Nov 15, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pkg/k8sapi/k8sutils.go
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ func CheckAPIServerConnectivity() error {
log.Infof("Testing communication with server")
// Reconcile the API server query after waiting for a second, as the request
// times out in one second if it fails to connect to the server
return wait.PollImmediateInfinite(2*time.Second, func() (bool, error) {
return wait.PollUntilContextCancel(context.Background(), 2*time.Second, true, func(ctx context.Context) (bool, error) {
version, err := clientSet.Discovery().ServerVersion()
if err != nil {
// When times out return no error, so the PollInfinite will retry with the given interval
Expand Down