Skip to content

jtaleric/stress-operator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

stress-operator

Basic operator to deploy load onto workers.

This operator uses stress-ng to generate a load against subsystems.

stress-operator available options

apiVersion: stress.example.com/v1alpha1
kind: Stress
metadata:
  name: example-stress
spec:
  size: 1	# Number of replicas
  cpu: 1	# start  N  workers  exercising  the  CPU  by  sequentially  working  through all the different CPU stress methods.
  mem: 1        # start N workers that copy 2MB of data from  a  shared  region  to  a  buffer  using memcpy(3)  and  then  move  the data in the buffer with memmove(3) with 3 different alignments.
  io: 1		# start  N workers continuously calling sync(2) to commit buffer cache to disk

Default timeout for the workload is 60s -- however, the workload is in a loop.

Example from the stress playbook

  - name: stress
    image: "docker.io/polinux/stress-ng:latest"
    command: ["/bin/sh"]
    args: ["-c", "while true; do echo Starting Stress : CPU={{ cpu }} MEM={{ mem }} IO={{ io }};stress-ng --cpu {{ cpu }} --memcpy {{ mem }} --io {{ io }} --timeout 60s --metrics-brief; done"]

About

K8s Operator to generate load using stress-ng

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published