You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Vertex AI pipelines client: list pipelines.
* Very initial version of run once.
* Pass parameters to pipeline job.
* Add type annotation to task passed to _configure_resources.
* Remove image pull policy parameter as it's not supported.
* Mlflow component.
* Add mlflow component and pass run id to downstream components.
* Rename ops to tasks.
* Wait for completion.
* Remove io.py file as it's not used anyway.
* Pre-commit fixes.
* Test if resources are correctly added to the pipeline spec.
* Test that resources section is not added to spec if it wasn't specified.
* Test grouping nodes.
* Test adds mlflow task.
* Test runner and runner config in args.
* Finish other tests.
* Add unittest.skip to test_should_remove_old_schedule for now.
* List pipelines test.
* Test compile.
* Patch mlflow is enabled when setting mlflow tags.
* Update test_run_once_with_wait test.
* Update changelog.
* Remove image_pull_policy from the config and add the description of this change to changelog.
* Remove 'layer' parameter from datasets as it's deprecated.
* Changelog: add description of the --timeout-seconds flag removal.
* Soften kfp version requirement, modify one import so that it works using multiple kfp versions.
* Remove commented-out line.
* Remove passing image_pull_policy to compile.
* Update python version in cicd.
Copy file name to clipboardExpand all lines: CHANGELOG.md
+8-1
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,13 @@
1
1
# Changelog
2
2
3
-
## [Unreleased]
3
+
## [Unreleased] 2024-07-23
4
+
5
+
- Migrated to kfp 2
6
+
- Removed `image_pull_policy` parameter from configuration, as it only applies to Kubernetes backend and not Vertex AI,
7
+
and it's only available in `kfp-kubernetes` extension package
8
+
- Removed `--timeout-seconds` parameter from `run-once` command for now, as in the old version of the plugin exceeding the specified time
9
+
didn't alter the remote pipeline execution, and only escaped the local Python processs. The timeout funcionality will be added later on,
10
+
with the proper remote pipeline execution handling, and possibly per-task timeout enabled by [the new kfp feature](https://github.com/kubeflow/pipelines/pull/10481).
0 commit comments