From 33ce06a193ff344ea711b18423e17ae79a569643 Mon Sep 17 00:00:00 2001 From: Terrence Dorsey Date: Wed, 25 Jan 2023 17:02:51 -0500 Subject: [PATCH] update kubernetesjob options --- docs/concepts/infrastructure.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/concepts/infrastructure.md b/docs/concepts/infrastructure.md index 535938627172..b9a0181b1dc4 100644 --- a/docs/concepts/infrastructure.md +++ b/docs/concepts/infrastructure.md @@ -217,9 +217,11 @@ The Prefect CLI command `prefect kubernetes manifest orion` automatically genera | Attributes | Description | | ---- | ---- | +| cluster_config | An optional Kubernetes cluster config to use for this job. | | command | A list of strings specifying the command to run in the container to start the flow run. In most cases you should not override this. | | customizations | A list of JSON 6902 patches to apply to the base Job manifest. | | env | Environment variables to set for the container. | +| finished_job_ttl | The number of seconds to retain jobs after completion. If set, finished jobs will be cleaned up by Kubernetes after the given delay. If None (default), jobs will need to be manually removed. | | image | String specifying the tag of a Docker image to use for the Job. | | image_pull_policy | The Kubernetes image pull policy to use for job containers. | | job | The base manifest for the Kubernetes Job. |