mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-08-03 17:30:00 +00:00
Update CPUmanager containerMap to also return a containerRef
This commit is contained in:
parent
347d5f57ac
commit
3881e50cce
@ -22,51 +22,44 @@ import (
|
|||||||
"k8s.io/api/core/v1"
|
"k8s.io/api/core/v1"
|
||||||
)
|
)
|
||||||
|
|
||||||
// ContainerMap maps (containerID)->(podUID, containerName)
|
// ContainerMap maps (containerID)->(*v1.Pod, *v1.Container)
|
||||||
type ContainerMap map[string]map[string]string
|
type ContainerMap map[string]struct {
|
||||||
|
pod *v1.Pod
|
||||||
|
container *v1.Container
|
||||||
|
}
|
||||||
|
|
||||||
// NewContainerMap creates a new ContainerMap struct
|
// NewContainerMap creates a new ContainerMap struct
|
||||||
func NewContainerMap() ContainerMap {
|
func NewContainerMap() ContainerMap {
|
||||||
return make(ContainerMap)
|
return make(ContainerMap)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Add adds a mapping of (containerID)->(podUID, containerName) to the ContainerMap
|
// Add adds a mapping of (containerID)->(*v1.Pod, *v1.Container) to the ContainerMap
|
||||||
func (cm ContainerMap) Add(p *v1.Pod, c *v1.Container, containerID string) {
|
func (cm ContainerMap) Add(p *v1.Pod, c *v1.Container, containerID string) {
|
||||||
podUID := string(p.UID)
|
cm[containerID] = struct {
|
||||||
if _, exists := cm[podUID]; !exists {
|
pod *v1.Pod
|
||||||
cm[podUID] = make(map[string]string)
|
container *v1.Container
|
||||||
}
|
}{p, c}
|
||||||
cm[podUID][c.Name] = containerID
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Remove removes a mapping of (containerID)->(podUID, containerName) from the ContainerMap
|
// Remove removes a mapping of (containerID)->(*v1.Pod, *.v1.Container) from the ContainerMap
|
||||||
func (cm ContainerMap) Remove(containerID string) {
|
func (cm ContainerMap) Remove(containerID string) {
|
||||||
found := false
|
delete(cm, containerID)
|
||||||
for podUID := range cm {
|
|
||||||
for containerName := range cm[podUID] {
|
|
||||||
if containerID == cm[podUID][containerName] {
|
|
||||||
delete(cm[podUID], containerName)
|
|
||||||
found = true
|
|
||||||
break
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if len(cm[podUID]) == 0 {
|
|
||||||
delete(cm, podUID)
|
|
||||||
}
|
|
||||||
if found {
|
|
||||||
break
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Get retrieves a ContainerID from the ContainerMap
|
// GetContainerID retrieves a ContainerID from the ContainerMap
|
||||||
func (cm ContainerMap) Get(p *v1.Pod, c *v1.Container) (string, error) {
|
func (cm ContainerMap) GetContainerID(p *v1.Pod, c *v1.Container) (string, error) {
|
||||||
podUID := string(p.UID)
|
for key, val := range cm {
|
||||||
if _, exists := cm[podUID]; !exists {
|
if val.pod.UID == p.UID && val.container.Name == c.Name {
|
||||||
return "", fmt.Errorf("pod %s not in ContainerMap", podUID)
|
return key, nil
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if _, exists := cm[podUID][c.Name]; !exists {
|
return "", fmt.Errorf("container %s not in ContainerMap for pod %s", c.Name, p.UID)
|
||||||
return "", fmt.Errorf("container %s not in ContainerMap for pod %s", c.Name, podUID)
|
}
|
||||||
}
|
|
||||||
return cm[podUID][c.Name], nil
|
// GetContainerRef retrieves a (*v1.Pod, *v1.Container) pair from the ContainerMap
|
||||||
|
func (cm ContainerMap) GetContainerRef(containerID string) (*v1.Pod, *v1.Container, error) {
|
||||||
|
if _, exists := cm[containerID]; !exists {
|
||||||
|
return nil, nil, fmt.Errorf("containerID %s not in ContainerMap", containerID)
|
||||||
|
}
|
||||||
|
return cm[containerID].pod, cm[containerID].container, nil
|
||||||
}
|
}
|
||||||
|
@ -47,13 +47,25 @@ func TestContainerMap(t *testing.T) {
|
|||||||
container := v1.Container{Name: tc.containerNames[i]}
|
container := v1.Container{Name: tc.containerNames[i]}
|
||||||
|
|
||||||
cm.Add(&pod, &container, tc.containerIDs[i])
|
cm.Add(&pod, &container, tc.containerIDs[i])
|
||||||
containerID, err := cm.Get(&pod, &container)
|
|
||||||
|
containerID, err := cm.GetContainerID(&pod, &container)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Errorf("error adding and retrieving container: %v", err)
|
t.Errorf("error adding and retrieving containerID: %v", err)
|
||||||
}
|
}
|
||||||
if containerID != tc.containerIDs[i] {
|
if containerID != tc.containerIDs[i] {
|
||||||
t.Errorf("mismatched containerIDs %v, %v", containerID, tc.containerIDs[i])
|
t.Errorf("mismatched containerIDs %v, %v", containerID, tc.containerIDs[i])
|
||||||
}
|
}
|
||||||
|
|
||||||
|
podRef, containerRef, err := cm.GetContainerRef(containerID)
|
||||||
|
if err != nil {
|
||||||
|
t.Errorf("error retrieving container reference: %v", err)
|
||||||
|
}
|
||||||
|
if podRef != &pod {
|
||||||
|
t.Errorf("mismatched pod reference %v, %v", pod.UID, podRef.UID)
|
||||||
|
}
|
||||||
|
if containerRef != &container {
|
||||||
|
t.Errorf("mismatched container reference %v, %v", container.Name, containerRef.Name)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Remove all entries from the containerMap, checking proper removal of
|
// Remove all entries from the containerMap, checking proper removal of
|
||||||
@ -61,7 +73,7 @@ func TestContainerMap(t *testing.T) {
|
|||||||
for i := range tc.containerNames {
|
for i := range tc.containerNames {
|
||||||
container := v1.Container{Name: tc.containerNames[i]}
|
container := v1.Container{Name: tc.containerNames[i]}
|
||||||
cm.Remove(tc.containerIDs[i])
|
cm.Remove(tc.containerIDs[i])
|
||||||
containerID, err := cm.Get(&pod, &container)
|
containerID, err := cm.GetContainerID(&pod, &container)
|
||||||
if err == nil {
|
if err == nil {
|
||||||
t.Errorf("unexpected retrieval of containerID after removal: %v", containerID)
|
t.Errorf("unexpected retrieval of containerID after removal: %v", containerID)
|
||||||
}
|
}
|
||||||
|
@ -211,7 +211,7 @@ func (p *staticPolicy) AddContainer(s state.State, pod *v1.Pod, container *v1.Co
|
|||||||
// container is run.
|
// container is run.
|
||||||
for _, initContainer := range pod.Spec.InitContainers {
|
for _, initContainer := range pod.Spec.InitContainers {
|
||||||
if container.Name != initContainer.Name {
|
if container.Name != initContainer.Name {
|
||||||
initContainerID, err := p.containerMap.Get(pod, &initContainer)
|
initContainerID, err := p.containerMap.GetContainerID(pod, &initContainer)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user