Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for removeContainers (0.92 sec)

  1. cmd/kubeadm/app/util/runtime/runtime_test.go

    			containerRuntime := NewContainerRuntime("")
    			mock := &fakeImpl{}
    			if tc.prepare != nil {
    				tc.prepare(mock)
    			}
    			containerRuntime.SetImpl(mock)
    
    			err := containerRuntime.RemoveContainers(tc.containers)
    
    			assert.Equal(t, tc.shouldError, err != nil)
    		})
    	}
    }
    
    func TestPullImage(t *testing.T) {
    	for _, tc := range []struct {
    		name        string
    		prepare     func(*fakeImpl)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 06:33:22 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/FinalizerTaskIntegrationTest.groovy

                    finalizedBy 'dockerStop' // dependsOn removeContainer
                }
    
                task dockerUp(type: BreakingTask) {
                    dependsOn 'createContainer'
                }
    
                task dockerStop(type: BreakingTask) {
                    dependsOn 'removeContainer'
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:33 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/cpumanager/policy_static_test.go

    				testCase.description, testCase.expCSetAfterAlloc, st.defaultCPUSet)
    		}
    
    		// remove
    		policy.RemoveContainer(st, string(pod.UID), testCase.containerName)
    
    		if !reflect.DeepEqual(st.defaultCPUSet, testCase.expCSetAfterRemove) {
    			t.Errorf("StaticPolicy RemoveContainer() error (%v). expected default cpuset %v but got %v",
    				testCase.description, testCase.expCSetAfterRemove, st.defaultCPUSet)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  4. pkg/kubelet/kuberuntime/instrumented_services.go

    	recordError(operation, err)
    	return err
    }
    
    func (in instrumentedRuntimeService) RemoveContainer(ctx context.Context, containerID string) error {
    	const operation = "remove_container"
    	defer recordOperation(operation, time.Now())
    
    	err := in.service.RemoveContainer(ctx, containerID)
    	recordError(operation, err)
    	return err
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 10:46:06 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/kuberuntime_container_test.go

    	expectedContainerLogSymlink := legacyLogSymlink(containerID, "foo", "bar", "new")
    
    	fakeOS.Create(expectedContainerLogPath)
    	fakeOS.Create(expectedContainerLogPathRotated)
    
    	err = m.removeContainer(ctx, containerID)
    	assert.NoError(t, err)
    
    	// Verify container log is removed.
    	// We could not predict the order of `fakeOS.Removes`, so we use `assert.ElementsMatch` here.
    	assert.ElementsMatch(t,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 28K bytes
    - Viewed (0)
  6. pkg/kubelet/kuberuntime/kuberuntime_gc.go

    				klog.ErrorS(err, "Failed to stop container", "containerID", containers[i].id)
    				continue
    			}
    		}
    		if err := cgc.manager.removeContainer(ctx, containers[i].id); err != nil {
    			klog.ErrorS(err, "Failed to remove container", "containerID", containers[i].id)
    		}
    	}
    
    	// Assume we removed the containers so that we're not too aggressive.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  7. pkg/kubelet/kuberuntime/kuberuntime_gc_test.go

    	})
    	fakeRuntime.SetFakeContainers(fakeContainers)
    
    	err = m.containerGC.evictContainers(ctx, defaultGCPolicy, true, false)
    	assert.NoError(t, err)
    
    	assert.Contains(t, fakeRuntime.GetCalls(), "StopContainer", "RemoveContainer",
    		"container in unknown state should be stopped before being removed")
    
    	remain, err := fakeRuntime.ListContainers(ctx, nil)
    	assert.NoError(t, err)
    	assert.Empty(t, remain)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 20.6K bytes
    - Viewed (0)
Back to top