prefect.deployments.steps.utility
Utility project steps that are useful for managing a project's deployment lifecycle.
Steps within this module can be used within a build
, push
, or pull
deployment action.
Example
Use the run_shell_script
setp to retrieve the short Git commit hash of the current
repository and use it as a Docker image tag:
build:
- prefect.deployments.steps.run_shell_script:
id: get-commit-hash
script: git rev-parse --short HEAD
stream_output: false
- prefect_docker.deployments.steps.build_docker_image:
requires: prefect-docker
image_name: my-image
image_tag: "{{ get-commit-hash.stdout }}"
dockerfile: auto
RunShellScriptResult
Bases: TypedDict
The result of a run_shell_script
step.
Attributes:
Name | Type | Description |
---|---|---|
stdout |
str
|
The captured standard output of the script. |
stderr |
str
|
The captured standard error of the script. |
Source code in src/prefect/deployments/steps/utility.py
63 64 65 66 67 68 69 70 71 72 73 |
|
pip_install_requirements(directory=None, requirements_file='requirements.txt', stream_output=True)
async
Installs dependencies from a requirements.txt file.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
requirements_file
|
str
|
The requirements.txt to use for installation. |
'requirements.txt'
|
directory
|
Optional[str]
|
The directory the requirements.txt file is in. Defaults to the current working directory. |
None
|
stream_output
|
bool
|
Whether to stream the output from pip install should be streamed to the console |
True
|
Returns:
Type | Description |
---|---|
A dictionary with the keys |
Raises:
Type | Description |
---|---|
CalledProcessError
|
if the pip install command fails for any reason |
Example
pull:
- prefect.deployments.steps.git_clone:
id: clone-step
repository: https://github.com/org/repo.git
- prefect.deployments.steps.pip_install_requirements:
directory: {{ clone-step.directory }}
requirements_file: requirements.txt
stream_output: False
Source code in src/prefect/deployments/steps/utility.py
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 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 |
|
run_shell_script(script, directory=None, env=None, stream_output=True, expand_env_vars=False)
async
Runs one or more shell commands in a subprocess. Returns the standard output and standard error of the script.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
script
|
str
|
The script to run |
required |
directory
|
Optional[str]
|
The directory to run the script in. Defaults to the current working directory. |
None
|
env
|
Optional[Dict[str, str]]
|
A dictionary of environment variables to set for the script |
None
|
stream_output
|
bool
|
Whether to stream the output of the script to stdout/stderr |
True
|
expand_env_vars
|
bool
|
Whether to expand environment variables in the script before running it |
False
|
Returns:
Type | Description |
---|---|
RunShellScriptResult
|
A dictionary with the keys |
Examples:
Retrieve the short Git commit hash of the current repository to use as a Docker image tag:
build:
- prefect.deployments.steps.run_shell_script:
id: get-commit-hash
script: git rev-parse --short HEAD
stream_output: false
- prefect_docker.deployments.steps.build_docker_image:
requires: prefect-docker
image_name: my-image
image_tag: "{{ get-commit-hash.stdout }}"
dockerfile: auto
Run a multi-line shell script:
build:
- prefect.deployments.steps.run_shell_script:
script: |
echo "Hello"
echo "World"
Run a shell script with environment variables:
build:
- prefect.deployments.steps.run_shell_script:
script: echo "Hello $NAME"
env:
NAME: World
Run a shell script with environment variables expanded from the current environment:
pull:
- prefect.deployments.steps.run_shell_script:
script: |
echo "User: $USER"
echo "Home Directory: $HOME"
stream_output: true
expand_env_vars: true
Run a shell script in a specific directory:
build:
- prefect.deployments.steps.run_shell_script:
script: echo "Hello"
directory: /path/to/directory
Run a script stored in a file:
build:
- prefect.deployments.steps.run_shell_script:
script: "bash path/to/script.sh"
Source code in src/prefect/deployments/steps/utility.py
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 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 |
|