Skip to content
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/controllers/telemetry.go
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ func (t *TelemetryManager) Run(ctx context.Context, ready chan<- struct{}, stopp

// The first metrics collection may try too soon after kubelet has been started and no node/node labels are
// present yet. Since we dont want to delay collection until the next interval (1h) we poll until success.
if err := wait.PollUntilContextCancel(ctx, time.Second, true, func(context.Context) (bool, error) {
if err := wait.PollUntilContextCancel(ctx, 30*time.Second, true, func(context.Context) (bool, error) {
if err := collectAndSend(); err != nil {
klog.Warningf("Telemetry collection failed: %v", err)
return false, nil
Expand Down