Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for runningPod (0.14 sec)

  1. pkg/scheduler/framework/plugins/nodevolumelimits/csi_test.go

    		{
    			newPod:       csiEBSOneVolPod,
    			existingPods: []*v1.Pod{runningPod, csiEBSTwoVolPod},
    			filterName:   "csi",
    			maxVols:      4,
    			driverNames:  []string{ebsCSIDriverName},
    			test:         "fits when node volume limit >= new pods CSI volume",
    			limitSource:  "node",
    		},
    		{
    			newPod:       csiEBSOneVolPod,
    			existingPods: []*v1.Pod{runningPod, csiEBSTwoVolPod},
    			filterName:   "csi",
    			maxVols:      2,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 18:07:11 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  2. pkg/kubelet/pod_workers.go

    	var uid types.UID
    	var name, ns string
    	if runningPod := options.RunningPod; runningPod != nil {
    		if options.Pod == nil {
    			// the sythetic pod created here is used only as a placeholder and not tracked
    			if options.UpdateType != kubetypes.SyncPodKill {
    				klog.InfoS("Pod update is ignored, runtime pods can only be killed", "pod", klog.KRef(runningPod.Namespace, runningPod.Name), "podUID", runningPod.ID, "updateType", options.UpdateType)
    				return
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  3. pkg/kubelet/pod_workers_test.go

    				return nil
    			},
    			syncTerminatingRuntimePod: func(ctx context.Context, runningPod *kubecontainer.Pod) error {
    				func() {
    					lock.Lock()
    					defer lock.Unlock()
    					processed[runningPod.ID] = append(processed[runningPod.ID], syncPodRecord{
    						name:       runningPod.Name,
    						updateType: kubetypes.SyncPodKill,
    						runningPod: runningPod,
    					})
    				}()
    				return nil
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
  4. pkg/kubelet/container/helpers.go

    			Hash:                containerStatus.Hash,
    			State:               containerStatus.State,
    		}
    		runningPod.Containers = append(runningPod.Containers, container)
    	}
    
    	// Populate sandboxes in kubecontainer.Pod
    	for _, sandbox := range podStatus.SandboxStatuses {
    		runningPod.Sandboxes = append(runningPod.Sandboxes, &Container{
    			ID:    ContainerID{Type: runtimeName, ID: sandbox.Id},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  5. pkg/controller/volume/persistentvolume/recycle_test.go

    // 2. Call the syncVolume *once*.
    // 3. Compare resulting volumes with expected volumes.
    func TestRecycleSync(t *testing.T) {
    	_, ctx := ktesting.NewTestContext(t)
    	runningPod := &v1.Pod{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      "runningPod",
    			Namespace: testNamespace,
    		},
    		Spec: v1.PodSpec{
    			Volumes: []v1.Volume{
    				{
    					Name: "vol1",
    					VolumeSource: v1.VolumeSource{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:37:30 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  6. pkg/kubelet/container/testing/fake_runtime.go

    	}
    	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 {
    		f.KilledContainers = append(f.KilledContainers, c.Name)
    	}
    	return f.Err
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 14 00:23:50 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  7. pkg/kubelet/kuberuntime/kuberuntime_container.go

    				killContainerResult.Fail(kubecontainer.ErrKillContainer, err.Error())
    				// Use runningPod for logging as the pod passed in could be *nil*.
    				klog.ErrorS(err, "Kill container failed", "pod", klog.KRef(runningPod.Namespace, runningPod.Name), "podUID", runningPod.ID,
    					"containerName", container.Name, "containerID", container.ID)
    			}
    			containerResults <- killContainerResult
    		}(container)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  8. pkg/kubelet/container/testing/runtime_mock.go

    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.
    func (mr *MockRuntimeMockRecorder) KillPod(ctx, pod, runningPod, gracePeriodOverride any) *gomock.Call {
    	mr.mock.ctrl.T.Helper()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 27K bytes
    - Viewed (0)
  9. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    func (m *kubeGenericRuntimeManager) KillPod(ctx context.Context, pod *v1.Pod, runningPod kubecontainer.Pod, gracePeriodOverride *int64) error {
    	err := m.killPodWithSyncResult(ctx, pod, runningPod, gracePeriodOverride)
    	return err.Error()
    }
    
    // killPodWithSyncResult kills a runningPod and returns SyncResult.
    // Note: The pod passed in could be *nil* when kubelet restarted.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet_pods_test.go

    	runtimePod := func(pod *v1.Pod) *kubecontainer.Pod {
    		runningPod := &kubecontainer.Pod{
    			ID:        types.UID(pod.UID),
    			Name:      pod.Name,
    			Namespace: pod.Namespace,
    			Containers: []*kubecontainer.Container{
    				{Name: "container-1", ID: kubecontainer.ContainerID{Type: "test", ID: "c1"}},
    			},
    		}
    		for i, container := range pod.Spec.Containers {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
Back to top