Run “Hello Konduktor”

To submit your first run, copy the below yaml into a file called ‘hello_konduktor.yaml’.

name: hello-world

num_nodes: 1 # scale up your worklaod

resources:
  cpus: 1
  memory: 10
  accelerators: H100:8
  image_id: ubuntu
  labels:
    kueue.x-k8s.io/queue-name: user-queue
    maxRunDurationSeconds: "3200"

run: |
  # print commands ran and exit immediately 
  # with an error if there's any errors
  set -ex
  sleep 2
  echo "Hello Konduktor"
  
  

If you see “Hello World!”, congratulations on setting up Konduktor!