Reputation: 23
Is there a way to import pipelines using CDAP CLI? I am interested in automated pipeline deployment.
Upvotes: 1
Views: 302
Reputation: 399
You can import pipeline using CDAP REST API.
PUT /v3/namespaces/<namespace>/apps/<pipeline name>
The body of the request should be the pipeline JSON that you have exported.
Upvotes: 1