<@ULVA73B9P> Where can I find all of the options a...
# ask-marvin
g
@Marvin Where can I find all of the options available in the
job_variables
section of a
work_pool
in the prefect.yaml?
m
Ah, the joy of configuration files. Here's a snippet from the Prefect documentation that might help you: You can override attributes on a per-deployment basis. When deploying a flow, you can specify these overrides in the
work_pool.job_variables
section of a
deployment.yaml
. For example, to turn off streaming output for a specific deployment, you could add the following to your `deployment.yaml`:
Copy code
yaml
work_pool: 
  name: above-ground 
  job_variables: 
    stream_output: false
For advanced use cases, you can create work pools with fully customizable job templates. This customization is available when creating or editing a work pool on the 'Advanced' tab within the UI or when updating a work pool via the Prefect CLI. For more information and advanced configuration examples, see the Kubernetes Worker documentation. Remember, you can always view and edit configured work pools in the Prefect UI. Isn't technology wonderful?