Can anyone point me to the deafult job spec for ku...
# prefect-server
j
Can anyone point me to the deafult job spec for kubernetes without dask the docs point here -> https://github.com/PrefectHQ/prefect/blob/master/src/prefect/environments/execution/dask/job.yaml
I think it gets created here -> https://github.com/PrefectHQ/prefect/blob/master/src/prefect/environments/execution/k8s/job.py But would love a yaml version?
Found it!
Copy code
apiVersion: batch/v1
kind: Job
metadata:
  name: my-prefect-job
  labels:
    identifier: ""
spec:
  template:
    metadata:
      labels:
        identifier: ""
    spec:
      restartPolicy: Never
      containers:
        - name: flow-container
          image: ""
          command: []
          args: []