Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for ContainerMap (0.38 sec)

  1. pkg/kubelet/cm/containermap/container_map.go

    limitations under the License.
    */
    
    package containermap
    
    import (
    	"fmt"
    )
    
    // ContainerMap maps (containerID)->(*v1.Pod, *v1.Container)
    type ContainerMap map[string]struct {
    	podUID        string
    	containerName string
    }
    
    // NewContainerMap creates a new ContainerMap struct
    func NewContainerMap() ContainerMap {
    	return make(ContainerMap)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 30 15:25:05 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/helpers.go

    	podSandboxMap := make(map[string]string)
    	podSandboxList, _ := runtimeService.ListPodSandbox(ctx, nil)
    	for _, p := range podSandboxList {
    		podSandboxMap[p.Id] = p.Metadata.Uid
    	}
    
    	runningSet := sets.New[string]()
    	containerMap := containermap.NewContainerMap()
    	containerList, _ := runtimeService.ListContainers(ctx, nil)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 13:02:15 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/cpumanager/state/state_checkpoint_test.go

    	}{
    		{
    			"Restore non-existing checkpoint",
    			"",
    			"none",
    			containermap.ContainerMap{},
    			"",
    			&stateMemory{},
    		},
    		{
    			"Restore default cpu set",
    			`{
    				"policyName": "none",
    				"defaultCPUSet": "4-6",
    				"entries": {},
    				"checksum": 354655845
    			}`,
    			"none",
    			containermap.ContainerMap{},
    			"",
    			&stateMemory{
    				defaultCPUSet: cpuset.New(4, 5, 6),
    			},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 03 16:26:09 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/cpumanager/cpu_manager.go

    	// and the containerID of their containers
    	podStatusProvider status.PodStatusProvider
    
    	// containerMap provides a mapping from (pod, container) -> containerID
    	// for all containers a pod
    	containerMap containermap.ContainerMap
    
    	topology *topology.CPUTopology
    
    	nodeAllocatableReservation v1.ResourceList
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 03 16:26:09 UTC 2023
    - 19.9K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/cpumanager/cpu_manager_test.go

    	containerID := "fakeID"
    	containerMap := containermap.NewContainerMap()
    
    	mgr := &manager{
    		policy: &mockPolicy{
    			err: nil,
    		},
    		state: &mockState{
    			assignments:   state.ContainerCPUAssignments{},
    			defaultCPUSet: cpuset.New(),
    		},
    		lastUpdateState:   state.NewMemoryState(),
    		containerRuntime:  mockRuntimeService{},
    		containerMap:      containerMap,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 06 13:16:15 UTC 2023
    - 42.9K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/memorymanager/memory_manager.go

    	// and the containerID of their containers
    	podStatusProvider status.PodStatusProvider
    
    	// containerMap provides a mapping from (pod, container) -> containerID
    	// for all containers a pod
    	containerMap containermap.ContainerMap
    
    	// sourcesReady provides the readiness of kubelet configuration sources such as apiserver update readiness.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 00:50:45 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/cpumanager/fake_cpu_manager.go

    	state state.State
    }
    
    func (m *fakeManager) Start(activePods ActivePodsFunc, sourcesReady config.SourcesReady, podStatusProvider status.PodStatusProvider, containerRuntime runtimeService, initialContainers containermap.ContainerMap) error {
    	klog.InfoS("Start()")
    	return nil
    }
    
    func (m *fakeManager) Policy() Policy {
    	klog.InfoS("Policy()")
    	pol, _ := NewNonePolicy(nil)
    	return pol
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 03 16:26:09 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/containermap/container_map_test.go

    			if err == nil {
    				t.Errorf("unexpected retrieval of container reference after removal: (%v, %v)", id, cn)
    			}
    		})
    
    		// Verify containerMap now empty.
    		if len(cm) != 0 {
    			t.Errorf("unexpected entries still in containerMap: %v", cm)
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 02 13:40:55 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/topologymanager/scope_pod.go

    limitations under the License.
    */
    
    package topologymanager
    
    import (
    	"k8s.io/api/core/v1"
    	"k8s.io/klog/v2"
    	"k8s.io/kubernetes/pkg/kubelet/cm/admission"
    	"k8s.io/kubernetes/pkg/kubelet/cm/containermap"
    	"k8s.io/kubernetes/pkg/kubelet/lifecycle"
    	"k8s.io/kubernetes/pkg/kubelet/metrics"
    )
    
    type podScope struct {
    	scope
    }
    
    // Ensure podScope implements Scope interface
    var _ Scope = &podScope{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 14 14:44:24 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/topologymanager/scope_none.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package topologymanager
    
    import (
    	"k8s.io/api/core/v1"
    	"k8s.io/kubernetes/pkg/kubelet/cm/containermap"
    	"k8s.io/kubernetes/pkg/kubelet/lifecycle"
    )
    
    type noneScope struct {
    	scope
    }
    
    // Ensure noneScope implements Scope interface
    var _ Scope = &noneScope{}
    
    // NewNoneScope returns a none scope.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 14 14:44:24 UTC 2023
    - 1.2K bytes
    - Viewed (0)
Back to top