I'm working on deploying an inference pipeline in Azure machine learning workspace.
I have created a pipeline using a couple of PythonScriptStep
s and want to automate the pipeline publishing using CI/CD.
Reference: https://learn.microsoft.com/en-us/azure/machine-learning/how-to-deploy-pipelines#publish-a-pipeline
pipeline = Pipeline(workspace=workspace, steps=[step1, step2])
pipeline_endpoint = pipeline.publish(name='deployment-test', version=1)
Every time I publish, it is creating new endpoints but I want to deploy to existing so that nothing has to be changed in the consumer end.