Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for removeSandbox (0.1 sec)

  1. pkg/kubelet/kuberuntime/kuberuntime_gc.go

    	}
    	// Remove from oldest to newest (last to first).
    	for i := len(sandboxes) - 1; i >= numToKeep; i-- {
    		if !sandboxes[i].active {
    			cgc.removeSandbox(ctx, sandboxes[i].id)
    		}
    	}
    }
    
    // removeSandbox removes the sandbox by sandboxID.
    func (cgc *containerGC) removeSandbox(ctx context.Context, sandboxID string) {
    	klog.V(4).InfoS("Removing sandbox", "sandboxID", sandboxID)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 15.3K bytes
    - Viewed (0)
Back to top