apiVersion: batch/v1 kind: Job metadata: name: "{replaced with MLflow Project name}" namespace: mlflow spec: ttlSecondsAfterFinished: 100 backoffLimit: 0 template: spec: containers: - name: "{replaced with MLflow Project name}" image: "{replaced with URI of Docker image created during Project execution}" command: ["{replaced with MLflow Project entry point command}"] resources: limits: memory: 512Mi requests: memory: 256Mi restartPolicy: Never