Skip to content
Permalink
cd2c0b4409
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
51 lines (51 sloc) 1.13 KB
apiVersion: batch/v1
kind: Job
metadata:
name: bayeswave-job
spec:
template:
spec:
containers:
- name: bayeswave
resources:
requests:
memory: 500Mi
cpu: 250m
limits:
memory: 500Mi
cpu: 250m
image: $REGISTRY_URL/$REGISTRY_USER/bayeswave:latest
command:
- BayesWave
args:
- --ifo
- "H1"
- --H1-flow
- "32"
- --H1-cache
- "LALSimAdLIGO"
- --H1-channel
- "LALSimAdLIGO"
- --trigtime
- "900000000.00"
- --srate
- "512"
- --seglen
- "4"
- --PSDstart
- "900000000"
- --PSDlength
- "1024"
- --NCmin
- "2"
- --NCmax
- "2"
- --dataseed
- "1234"
- --Niter
- "500"
- --outputDir
- "master-test"
imagePullSecrets:
- name: registry-secret
restartPolicy: Never