I suppose you use this helm chart? If so have a look at the Parameter Reference. There are two specific values that set the replica count:
As you want to run jobs in parallel, enabling workers and setting replica to >=2 deploys two workers so jobs can run in parallel.
Updated values.yaml:
airflow:
workers:
enabled: true
replica: 2