Skip to content

Instantly share code, notes, and snippets.

@CristianoPassos
Last active August 23, 2021 09:56
Show Gist options
  • Save CristianoPassos/76bcc45e6da50dc9299ed6aac0eae8c5 to your computer and use it in GitHub Desktop.
Save CristianoPassos/76bcc45e6da50dc9299ed6aac0eae8c5 to your computer and use it in GitHub Desktop.
apiVersion: batch/v1
kind: Job
metadata:
name: job-wq-1
spec:
completions: 8
parallelism: 2
template:
metadata:
name: job-wq-1
spec:
containers:
- name: c
image: cristianopassos/job-wq-1:latest
env:
- name: BROKER_URL
value: amqp://guest:guest@rabbitmq-service:5672
- name: QUEUE
value: job1
restartPolicy: OnFailure
@CristianoPassos
Copy link
Author

CristianoPassos commented Aug 23, 2021

  1. completions: 8

Needed for Lab, but not in PROD

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment