Skip to content

Latest commit

 

History

History
26 lines (21 loc) · 587 Bytes

byowl.md

File metadata and controls

26 lines (21 loc) · 587 Bytes

Bring your own workload (byowl)

Bring your own workload enables users to pass their own prepared container image with a set of commands.

Running byowl

Build your CR

apiVersion: ripsaw.cloudbulldozer.io/v1alpha1
kind: Benchmark
metadata:
  name: byowl-benchmark
  namespace: my-ripsaw
spec:
  byowl:
    image: "quay.io/jtaleric/uperf:testing"
    clients: 1
    commands: |
      echo "This is my test workload";
      echo "This is my test workload again..."

This will launch the uperf container, and simply print the messages above into the log of the container.