How to push kfp yaml pipeline to artefact registry in GCP
from kfp.registry import RegistryClient client = RegistryClient(host=f”https://europe-west3-kfp.pkg.dev/{project_id}/{registry}”) templateName, versionName = client.upload_pipeline( file_name=”compiled_pipeline.yaml”, tags=[“v1”, “latest”], extra_headers={“description”:”This is an example pipeline template.”}) The above code is from the official GCP Documentation for uploading kfp pipelines for Vertex AI in artifactory. When I run the code it returns error: Traceback (most recent call last): File “/Users/chochobossa/Development/{project}/test-kfp.py”, line 35, […]