Skip to content

Instantly share code, notes, and snippets.

@bobbypage
Created April 18, 2024 00:49
Show Gist options
  • Save bobbypage/a04b54d522fbfbfa221af32988fb0ac1 to your computer and use it in GitHub Desktop.
Save bobbypage/a04b54d522fbfbfa221af32988fb0ac1 to your computer and use it in GitHub Desktop.
apiVersion: batch/v1
kind: Job
metadata:
name: busybox
spec:
template:
spec:
containers:
- name: busybox
image: busybox
command: ["sh", "-c", "echo hello1; echo hello2; echo hello3; sleep $((10 + RANDOM % 11));"]
restartPolicy: Never
backoffLimit: 4
completions: 50000
parallelism: 100
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment