Skip to content

Commit

Permalink
e2e: test topology-aware NUMA node change by AvailableResources
Browse files Browse the repository at this point in the history
Test that a running container gets reassigned into new CPUs when the
CPUs where it used to run are not included in AvailableResources
anymore.

Tests issue containers#92.
  • Loading branch information
askervin committed Jul 10, 2023
1 parent 66846cb commit 629904c
Showing 1 changed file with 13 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,19 @@ verify "cpus['pod1c0'] == {'cpu08', 'cpu09', 'cpu10'}" \
"cpus['pod1c1'] == {'cpu08', 'cpu09', 'cpu10'}" \
"mems['pod1c0'] == {'node2'}" \
"mems['pod1c1'] == {'node2'}"
vm-command "kubectl delete pods pod1 --now"

# Relaunch NRI-plugins with a set of CPUs from a different socket compared
# to where pod0 is currently running. Restoring pod0 to current CPUs will fail
# so the workload should be moved to new CPUs.
terminate nri-resource-policy
AVAILABLE_CPU="cpuset:0-1,11-14"
nri_resource_policy_cfg=$(instantiate nri-resource-policy-available-resources.cfg)
launch nri-resource-policy
report allowed
verify "cpus['pod0c0'] == {'cpu12', 'cpu13', 'cpu14'}" \
"mems['pod0c0'] == {'node3'}"

vm-command "kubectl delete pods --all --now"
reset counters

Expand Down

0 comments on commit 629904c

Please # to comment.