Task
The DBT runtime provides a transform
task action to run dbt transformations. A Task
is created by calling run()
on the Function; task parameters are passed through that call and may vary by action.
Parameters (Shared)
Name | Type | Description |
---|---|---|
action | str | Task action. One of: transform . Required. |
node_selector | list[dict] | Node selector. |
volumes | list[dict] | List of volumes. |
resources | dict | Resource limits/requests. |
affinity | dict | Affinity configuration. |
tolerations | list[dict] | Tolerations. |
envs | list[dict] | Environment variables. |
secrets | list[str] | List of secret names. |
profile | str | Profile template. |
Task Actions
Supported actions:
transform
— run a dbt transformation