Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for removeContainers (1.51 sec)

  1. cmd/kubeadm/app/cmd/phases/reset/cleanupnode.go

    		}
    	}
    
    	return nil
    }
    
    func removeContainers(criSocketPath string) error {
    	containerRuntime := utilruntime.NewContainerRuntime(criSocketPath)
    	if err := containerRuntime.Connect(); err != nil {
    		return err
    	}
    	containers, err := containerRuntime.ListKubeContainers()
    	if err != nil {
    		return err
    	}
    	return containerRuntime.RemoveContainers(containers)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/util/runtime/runtime.go

    	}
    
    	pods := []string{}
    	for _, sandbox := range sandboxes {
    		pods = append(pods, sandbox.GetId())
    	}
    	return pods, nil
    }
    
    // RemoveContainers removes running k8s pods
    func (runtime *CRIRuntime) RemoveContainers(containers []string) error {
    	errs := []error{}
    	for _, container := range containers {
    		var lastErr error
    		for i := 0; i < constants.RemoveContainerRetry; i++ {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 06:33:22 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/topologymanager/topology_manager.go

    	AddHintProvider(HintProvider)
    	// AddContainer adds pod to Manager for tracking
    	AddContainer(pod *v1.Pod, container *v1.Container, containerID string)
    	// RemoveContainer removes pod from Manager tracking
    	RemoveContainer(containerID string) error
    	// Store is the interface for storing pod topology hints
    	Store
    }
    
    type manager struct {
    	//Topology Manager Scope
    	scope Scope
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jul 15 12:43:16 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/memorymanager/fake_memory_manager.go

    	klog.InfoS("Get MemoryNUMANodes", "pod", klog.KObj(pod), "containerName", container.Name)
    	return nil
    }
    
    func (m *fakeManager) RemoveContainer(containerID string) error {
    	klog.InfoS("RemoveContainer", "containerID", containerID)
    	return nil
    }
    
    func (m *fakeManager) GetTopologyHints(pod *v1.Pod, container *v1.Container) map[string][]topologymanager.TopologyHint {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 13:02:15 UTC 2023
    - 3.1K bytes
    - Viewed (0)
Back to top