prefect.deployments
deploy(*deployments, work_pool_name=None, image=None, build=True, push=True, print_next_steps_message=True, ignore_warnings=False)
async
Deploy the provided list of deployments to dynamic infrastructure via a work pool.
By default, calling this function will build a Docker image for the deployments, push it to a registry, and create each deployment via the Prefect API that will run the corresponding flow on the given schedule.
If you want to use an existing image, you can pass build=False
to skip building and pushing
an image.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
*deployments
|
RunnerDeployment
|
A list of deployments to deploy. |
()
|
work_pool_name
|
Optional[str]
|
The name of the work pool to use for these deployments. Defaults to
the value of |
None
|
image
|
Optional[Union[str, DockerImage]]
|
The name of the Docker image to build, including the registry and repository. Pass a DockerImage instance to customize the Dockerfile used and build arguments. |
None
|
build
|
bool
|
Whether or not to build a new image for the flow. If False, the provided image will be used as-is and pulled at runtime. |
True
|
push
|
bool
|
Whether or not to skip pushing the built image to a registry. |
True
|
print_next_steps_message
|
bool
|
Whether or not to print a message with next steps after deploying the deployments. |
True
|
Returns:
Type | Description |
---|---|
List[UUID]
|
A list of deployment IDs for the created/updated deployments. |
Examples:
Deploy a group of flows to a work pool:
from prefect import deploy, flow
@flow(log_prints=True)
def local_flow():
print("I'm a locally defined flow!")
if __name__ == "__main__":
deploy(
local_flow.to_deployment(name="example-deploy-local-flow"),
flow.from_source(
source="https://github.com/org/repo.git",
entrypoint="flows.py:my_flow",
).to_deployment(
name="example-deploy-remote-flow",
),
work_pool_name="my-work-pool",
image="my-registry/my-image:dev",
)
Source code in src/prefect/deployments/runner.py
788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 |
|
initialize_project(name=None, recipe=None, inputs=None)
Initializes a basic project structure with base files. If no name is provided, the name of the current directory is used. If no recipe is provided, one is inferred.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
name
|
str
|
the name of the project; if not provided, the current directory name |
None
|
recipe
|
str
|
the name of the recipe to use; if not provided, one is inferred |
None
|
inputs
|
dict
|
a dictionary of inputs to use when formatting the recipe |
None
|
Returns:
Type | Description |
---|---|
List[str]
|
List[str]: a list of files / directories that were created |
Source code in src/prefect/deployments/base.py
179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 |
|
run_deployment(name, client=None, parameters=None, scheduled_time=None, flow_run_name=None, timeout=None, poll_interval=5, tags=None, idempotency_key=None, work_queue_name=None, as_subflow=True, job_variables=None)
async
Create a flow run for a deployment and return it after completion or a timeout.
By default, this function blocks until the flow run finishes executing.
Specify a timeout (in seconds) to wait for the flow run to execute before
returning flow run metadata. To return immediately, without waiting for the
flow run to execute, set timeout=0
.
Note that if you specify a timeout, this function will return the flow run metadata whether or not the flow run finished executing.
If called within a flow or task, the flow run this function creates will
be linked to the current flow run as a subflow. Disable this behavior by
passing as_subflow=False
.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
name
|
Union[str, UUID]
|
The deployment id or deployment name in the form:
|
required |
parameters
|
Optional[dict]
|
Parameter overrides for this flow run. Merged with the deployment defaults. |
None
|
scheduled_time
|
Optional[datetime]
|
The time to schedule the flow run for, defaults to scheduling the flow run to start now. |
None
|
flow_run_name
|
Optional[str]
|
A name for the created flow run |
None
|
timeout
|
Optional[float]
|
The amount of time to wait (in seconds) for the flow run to
complete before returning. Setting |
None
|
poll_interval
|
Optional[float]
|
The number of seconds between polls |
5
|
tags
|
Optional[Iterable[str]]
|
A list of tags to associate with this flow run; tags can be used in automations and for organizational purposes. |
None
|
idempotency_key
|
Optional[str]
|
A unique value to recognize retries of the same run, and prevent creating multiple flow runs. |
None
|
work_queue_name
|
Optional[str]
|
The name of a work queue to use for this run. Defaults to the default work queue for the deployment. |
None
|
as_subflow
|
Optional[bool]
|
Whether to link the flow run as a subflow of the current flow or task run. |
True
|
job_variables
|
Optional[dict]
|
A dictionary of dot delimited infrastructure overrides that
will be applied at runtime; for example |
None
|
Source code in src/prefect/deployments/flow_runs.py
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 |
|