Python API¶
kpops.api ¶
clean ¶
clean(
pipeline_path: Path,
dotenv: list[Path] | None = None,
config: Path | None = None,
steps: set[str] | None = None,
filter_type: FilterType = FilterType.INCLUDE,
environment: str | None = None,
dry_run: bool = True,
verbose: bool = True,
parallel: bool = False,
) -> None
Clean pipeline steps.
| PARAMETER | DESCRIPTION |
|---|---|
pipeline_path
|
Path to pipeline definition yaml file.
TYPE:
|
dotenv
|
Paths to dotenv files.
TYPE:
|
config
|
Path to the dir containing config.yaml files.
TYPE:
|
steps
|
Set of steps (components) to apply the command on.
TYPE:
|
filter_type
|
Whether
TYPE:
|
dry_run
|
Whether to dry run the command or execute it.
TYPE:
|
environment
|
The environment to generate and deploy the pipeline to.
TYPE:
|
verbose
|
Enable verbose printing.
TYPE:
|
parallel
|
Enable or disable parallel execution of pipeline steps.
TYPE:
|
Source code in kpops/api/operations.py
deploy ¶
deploy(
pipeline_path: Path,
dotenv: list[Path] | None = None,
config: Path | None = None,
steps: set[str] | None = None,
filter_type: FilterType = FilterType.INCLUDE,
environment: str | None = None,
dry_run: bool = True,
verbose: bool = True,
parallel: bool = False,
) -> None
Deploy pipeline steps.
| PARAMETER | DESCRIPTION |
|---|---|
pipeline_path
|
Path to pipeline definition yaml file.
TYPE:
|
dotenv
|
Paths to dotenv files.
TYPE:
|
config
|
Path to the dir containing config.yaml files.
TYPE:
|
steps
|
Set of steps (components) to apply the command on.
TYPE:
|
filter_type
|
Whether
TYPE:
|
dry_run
|
Whether to dry run the command or execute it.
TYPE:
|
environment
|
The environment to generate and deploy the pipeline to.
TYPE:
|
verbose
|
Enable verbose printing.
TYPE:
|
parallel
|
Enable or disable parallel execution of pipeline steps.
TYPE:
|
Source code in kpops/api/operations.py
destroy ¶
destroy(
pipeline_path: Path,
dotenv: list[Path] | None = None,
config: Path | None = None,
steps: set[str] | None = None,
filter_type: FilterType = FilterType.INCLUDE,
environment: str | None = None,
dry_run: bool = True,
verbose: bool = True,
parallel: bool = False,
) -> None
Destroy pipeline steps.
| PARAMETER | DESCRIPTION |
|---|---|
pipeline_path
|
Path to pipeline definition yaml file.
TYPE:
|
dotenv
|
Paths to dotenv files.
TYPE:
|
config
|
Path to the dir containing config.yaml files.
TYPE:
|
steps
|
Set of steps (components) to apply the command on.
TYPE:
|
filter_type
|
Whether
TYPE:
|
dry_run
|
Whether to dry run the command or execute it.
TYPE:
|
environment
|
The environment to generate and deploy the pipeline to.
TYPE:
|
verbose
|
Enable verbose printing.
TYPE:
|
parallel
|
Enable or disable parallel execution of pipeline steps.
TYPE:
|
Source code in kpops/api/operations.py
generate ¶
generate(
pipeline_path: Path,
dotenv: list[Path] | None = None,
config: Path | None = None,
steps: set[str] | None = None,
filter_type: FilterType = FilterType.INCLUDE,
environment: str | None = None,
verbose: bool = False,
operation_mode: OperationMode = OperationMode.MANAGED,
) -> Pipeline
Generate enriched pipeline representation.
| PARAMETER | DESCRIPTION |
|---|---|
pipeline_path
|
Path to pipeline definition yaml file.
TYPE:
|
dotenv
|
Paths to dotenv files.
TYPE:
|
config
|
Path to the dir containing config.yaml files.
TYPE:
|
steps
|
Set of steps (components) to apply the command on.
TYPE:
|
filter_type
|
Whether
TYPE:
|
environment
|
The environment to generate and deploy the pipeline to.
TYPE:
|
verbose
|
Enable verbose printing.
TYPE:
|
operation_mode
|
How KPOps should operate.
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
Pipeline
|
Generated |
Source code in kpops/api/operations.py
init ¶
Initiate a default empty project.
| PARAMETER | DESCRIPTION |
|---|---|
path
|
Directory in which the project should be initiated.
TYPE:
|
config_include_optional
|
Whether to include non-required settings in the generated config file.
TYPE:
|
Source code in kpops/api/operations.py
manifest_clean ¶
manifest_clean(
pipeline_path: Path,
dotenv: list[Path] | None = None,
config: Path | None = None,
steps: set[str] | None = None,
filter_type: FilterType = FilterType.INCLUDE,
environment: str | None = None,
verbose: bool = True,
operation_mode: OperationMode = OperationMode.MANIFEST,
) -> Iterator[tuple[KubernetesManifest, ...]]
Source code in kpops/api/operations.py
manifest_deploy ¶
manifest_deploy(
pipeline_path: Path,
dotenv: list[Path] | None = None,
config: Path | None = None,
steps: set[str] | None = None,
filter_type: FilterType = FilterType.INCLUDE,
environment: str | None = None,
verbose: bool = True,
operation_mode: OperationMode = OperationMode.MANIFEST,
) -> Iterator[tuple[KubernetesManifest, ...]]
Source code in kpops/api/operations.py
manifest_destroy ¶
manifest_destroy(
pipeline_path: Path,
dotenv: list[Path] | None = None,
config: Path | None = None,
steps: set[str] | None = None,
filter_type: FilterType = FilterType.INCLUDE,
environment: str | None = None,
verbose: bool = True,
operation_mode: OperationMode = OperationMode.MANIFEST,
) -> Iterator[tuple[KubernetesManifest, ...]]
Source code in kpops/api/operations.py
manifest_reset ¶
manifest_reset(
pipeline_path: Path,
dotenv: list[Path] | None = None,
config: Path | None = None,
steps: set[str] | None = None,
filter_type: FilterType = FilterType.INCLUDE,
environment: str | None = None,
verbose: bool = True,
operation_mode: OperationMode = OperationMode.MANIFEST,
) -> Iterator[tuple[KubernetesManifest, ...]]
Source code in kpops/api/operations.py
reset ¶
reset(
pipeline_path: Path,
dotenv: list[Path] | None = None,
config: Path | None = None,
steps: set[str] | None = None,
filter_type: FilterType = FilterType.INCLUDE,
environment: str | None = None,
dry_run: bool = True,
verbose: bool = True,
parallel: bool = False,
) -> None
Reset pipeline steps.
| PARAMETER | DESCRIPTION |
|---|---|
pipeline_path
|
Path to pipeline definition yaml file.
TYPE:
|
dotenv
|
Paths to dotenv files.
TYPE:
|
config
|
Path to the dir containing config.yaml files.
TYPE:
|
steps
|
Set of steps (components) to apply the command on.
TYPE:
|
filter_type
|
Whether
TYPE:
|
dry_run
|
Whether to dry run the command or execute it.
TYPE:
|
environment
|
The environment to generate and deploy the pipeline to.
TYPE:
|
verbose
|
Enable verbose printing.
TYPE:
|
parallel
|
Enable or disable parallel execution of pipeline steps.
TYPE:
|
Source code in kpops/api/operations.py
kpops.pipeline.Pipeline
dataclass
¶
Pipeline representation.
Source code in kpops/pipeline.py
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 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 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 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 | |
add ¶
Source code in kpops/pipeline.py
build_execution_graph ¶
build_execution_graph(
runner: Callable[
[PipelineComponent], Coroutine[Any, Any, None]
],
/,
reverse: bool = False,
) -> Awaitable[None]
Source code in kpops/pipeline.py
clean
async
¶
Clean pipeline steps.
| PARAMETER | DESCRIPTION |
|---|---|
dry_run
|
Whether to dry run the command or execute it.
TYPE:
|
parallel
|
Enable or disable parallel execution of pipeline steps.
TYPE:
|
Source code in kpops/pipeline.py
deploy
async
¶
Deploy pipeline steps.
| PARAMETER | DESCRIPTION |
|---|---|
dry_run
|
Whether to dry run the command or execute it.
TYPE:
|
parallel
|
Enable or disable parallel execution of pipeline steps.
TYPE:
|
Source code in kpops/pipeline.py
destroy
async
¶
Destroy pipeline steps.
| PARAMETER | DESCRIPTION |
|---|---|
dry_run
|
Whether to dry run the command or execute it.
TYPE:
|
parallel
|
Enable or disable parallel execution of pipeline steps.
TYPE:
|
Source code in kpops/pipeline.py
filter ¶
Filter pipeline components using a custom predicate.
| PARAMETER | DESCRIPTION |
|---|---|
predicate
|
Filter function, returns boolean value whether the component should be kept or removed
TYPE:
|
Source code in kpops/pipeline.py
find ¶
Find pipeline components matching a custom predicate.
| PARAMETER | DESCRIPTION |
|---|---|
predicate
|
Filter function, returns boolean value whether the component should be kept or removed
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
Iterator[PipelineComponent]
|
Iterator of components matching the predicate |
Source code in kpops/pipeline.py
generate ¶
get ¶
manifest_clean ¶
manifest_deploy ¶
manifest_destroy ¶
manifest_reset ¶
remove ¶
reset
async
¶
Reset pipeline steps.
| PARAMETER | DESCRIPTION |
|---|---|
dry_run
|
Whether to dry run the command or execute it.
TYPE:
|
parallel
|
Enable or disable parallel execution of pipeline steps.
TYPE:
|