octopusdeploy/maxcpu
This image runs a Powershell script that maxes out a CPU core for a period of time. It is intended to be deployed into a K8S cluster to observe the effect of a pod that consumes all of its CPU resources.
kubectl run maxcpu --image=octopusdeploy/maxcpu --restart=Never --limits="cpu=1000m" --requests="cpu=10m" --overrides='{ \"apiVersion\": \"v1\", \"spec\": { \"nodeSelector\": { \"kubernetes.io/hostname\": \"nodename\" } } }'
docker pull octopusdeploy/maxcpu