Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for KillPod (0.11 sec)

  1. pkg/kubelet/container/testing/runtime_mock.go

    }
    
    // KillPod mocks base method.
    func (m *MockRuntime) KillPod(ctx context.Context, pod *v1.Pod, runningPod container.Pod, gracePeriodOverride *int64) error {
    	m.ctrl.T.Helper()
    	ret := m.ctrl.Call(m, "KillPod", ctx, pod, runningPod, gracePeriodOverride)
    	ret0, _ := ret[0].(error)
    	return ret0
    }
    
    // KillPod indicates an expected call of KillPod.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 27K bytes
    - Viewed (0)
  2. pkg/kubelet/container/testing/fake_runtime.go

    	if f.Err != nil {
    		result.Fail(f.Err)
    	}
    	return
    }
    
    func (f *FakeRuntime) KillPod(_ context.Context, pod *v1.Pod, runningPod kubecontainer.Pod, gracePeriodOverride *int64) error {
    	f.Lock()
    	defer f.Unlock()
    
    	f.CalledFunctions = append(f.CalledFunctions, "KillPod")
    	f.KilledPods = append(f.KilledPods, string(runningPod.ID))
    	for _, c := range runningPod.Containers {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 14 00:23:50 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  3. pkg/kubelet/container/runtime.go

    	SyncPod(ctx context.Context, pod *v1.Pod, podStatus *PodStatus, pullSecrets []v1.Secret, backOff *flowcontrol.Backoff) PodSyncResult
    	// KillPod kills all the containers of a pod. Pod may be nil, running pod must not be.
    	// TODO(random-liu): Return PodSyncResult in KillPod.
    	// gracePeriodOverride if specified allows the caller to override the pod default grace period.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 27.8K bytes
    - Viewed (0)
Back to top