Skip to content

Commit

Permalink
E2E: Add test to verify runc uses valid cpus
Browse files Browse the repository at this point in the history
Adding a test to verify that runc does not use CPUs assigned to guaranteed pods.

Signed-off-by: Sargun Narula <[email protected]>
  • Loading branch information
SargunNarula committed Sep 24, 2024
1 parent 49128af commit 02e4f19
Showing 1 changed file with 87 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -887,8 +887,95 @@ var _ = Describe("[rfe_id:27363][performance] CPU Management", Ordered, func() {
})
})

Context("Check container runtimes cpu usage", func() {
var guaranteedPod, bestEffortPod *corev1.Pod

AfterEach(func() {
cmd := []string{"rm", "-f", "/rootfs/var/roothome/create"}
nodes.ExecCommand(ctx, workerRTNode, cmd)
deleteTestPod(ctx, guaranteedPod)
deleteTestPod(ctx, bestEffortPod)
})

It("[test_id: 74461] Verify that runc excludes the cpus used by guaranteed pod", func() {
guaranteedPod, err = getPod(ctx, workerRTNode, true)
err = testclient.Client.Create(ctx, guaranteedPod)
Expect(err).ToNot(HaveOccurred())
_, err = pods.WaitForCondition(ctx, client.ObjectKeyFromObject(guaranteedPod), corev1.PodReady, corev1.ConditionTrue, 5*time.Minute)
Expect(err).ToNot(HaveOccurred())
Expect(guaranteedPod.Status.QOSClass).To(Equal(corev1.PodQOSGuaranteed))

bestEffortPod, err = getPod(ctx, workerRTNode, false)
err = testclient.Client.Create(ctx, bestEffortPod)
Expect(err).ToNot(HaveOccurred())
_, err = pods.WaitForCondition(ctx, client.ObjectKeyFromObject(bestEffortPod), corev1.PodReady, corev1.ConditionTrue, 5*time.Minute)
Expect(err).ToNot(HaveOccurred())

containerIDs := make([]string, 2)

containerIDs[0], err = pods.GetContainerIDByName(guaranteedPod, "test")
Expect(err).ToNot(HaveOccurred())
containerIDs[1], err = pods.GetContainerIDByName(bestEffortPod, "test")
Expect(err).ToNot(HaveOccurred())
for _, containerID := range containerIDs {
path := fmt.Sprintf("/rootfs/var/run/containers/storage/overlay-containers/%s/userdata/config.json", containerID)
cmd := []string{"/bin/bash", "-c", fmt.Sprintf("cat %s >> /rootfs/var/roothome/create", path)}
nodes.ExecCommand(ctx, workerRTNode, cmd)
}
cmd := []string{"cat", "/rootfs/var/roothome/create"}
output, err := nodes.ExecCommand(context.TODO(), workerRTNode, cmd)
Expect(err).ToNot(HaveOccurred())

out := testutils.ToString(output)
hostnameRe := regexp.MustCompile(`"hostname":\s+"([^"]+)"`)
cpusRe := regexp.MustCompile(`"cpus":\s+"([^"]+)"`)

hostnameMatches := hostnameRe.FindAllStringSubmatch(out, -1)
cpusMatches := cpusRe.FindAllStringSubmatch(out, -1)
Expect(len(hostnameMatches)).ToNot(Equal(0), "Failed to extract hostname information")
Expect(len(cpusMatches)).ToNot(Equal(0), "Failed to extract cpus information")
uniqueCombinations := make(map[string]struct{})
zippedMatches := make([]map[string]string, 0)
for i := 0; i < len(hostnameMatches) && i < len(cpusMatches); i++ {
combination := fmt.Sprintf("%s-%s", hostnameMatches[i][1], cpusMatches[i][1])
if _, exists := uniqueCombinations[combination]; !exists {
uniqueCombinations[combination] = struct{}{}
zippedMatches = append(zippedMatches, map[string]string{
"hostname": hostnameMatches[i][1],
"cpus": cpusMatches[i][1],
})
}
}
guaranteedPodCpus, err := cpuset.Parse(zippedMatches[0]["cpus"])
Expect(err).ToNot(HaveOccurred())
runcCpus, err := cpuset.Parse(zippedMatches[1]["cpus"])
Expect(err).ToNot(HaveOccurred())
overlapFound := !guaranteedPodCpus.Intersection(runcCpus).IsEmpty()
Expect(overlapFound).ToNot(BeTrue(), fmt.Sprintf("Overlap found between guaranteedPod cpus (%s) and runtime Cpus (%s), not expected behaviour", guaranteedPodCpus, runcCpus))
})
})

})

func getPod(ctx context.Context, workerRTNode *corev1.Node, guaranteed bool) (*corev1.Pod, error) {
testPod := pods.GetTestPod()
testPod.Namespace = testutils.NamespaceTesting
testPod.Spec.NodeSelector = map[string]string{testutils.LabelHostname: workerRTNode.Name}
if guaranteed {
testPod.Spec.Containers[0].Resources = corev1.ResourceRequirements{
Limits: corev1.ResourceList{
corev1.ResourceCPU: resource.MustParse("2"),
corev1.ResourceMemory: resource.MustParse("200Mi"),
},
}
}
profile, _ := profiles.GetByNodeLabels(testutils.NodeSelectorLabels)
runtimeClass := components.GetComponentName(profile.Name, components.ComponentNamePrefix)
testPod.Spec.RuntimeClassName = &runtimeClass
return testPod, nil
}


func checkForWorkloadPartitioning(ctx context.Context) bool {
// Look for the correct Workload Partition annotation in
// a crio configuration file on the target node
Expand Down

0 comments on commit 02e4f19

Please sign in to comment.