0
votes

When deploying an application in PCF, it is possible to deploy the application without starting by running cf push --no-start.

In the same way, is it possible to deploy a Spring Cloud Dataflow stream without starting the underlying applications?

1

1 Answers

0
votes

The use-case description would be useful to understand why you'd like to deploy a stream and not start it. A stream is a continuous thing - it is meant to be running all the time.

If you're looking to address on-demand style use-cases, it'd be recommended to run them as Task pipelines instead. In fact, the tasks by default are pushed with --no-start equivalent and upon a launch trigger (e.g., a schedule, manual launch. etc.,), it is actually started then.