0

I am trying to deploy my first stream APP via the spring cloud dataflow dashboard, but I keep getting the "Failed to create stream" error in the UI. Can someone help me investigate what might be wrong?

I am running SCDF on kubernetes and my deployment consists of the following components:

  • scdf-server
  • skipper
  • mariadb
  • rabbitmq

My stream is the simple time | log example

2 Answers2

0

Try using kubectl on the scdf-server pod to see if it provides any information. I've seen that error occur if an app I deployed was not accessible - in my case, I'd referenced it by an incorrect filepath which didn't get caught by the server until it tried to deploy the stream.

TinaC
  • 409
  • 1
  • 4
  • 14
0

It could be failing at any point in the deploy. To gain some insight, you can view the events and logs on each pod w/ the following commands:

kubectl describe pods/<pod-name> 
kubectl logs pods/<pod_name>
onobc
  • 466
  • 1
  • 5