Base problem is how to access a Spring Cloud Data Flow service from outside the Kubernetes cluster?
By default SCDF apps will be deployed as servcies with type 'ClusterIP'. From my understanding 'ClusterIP' services cannot be exposed from a cluster? I tried to follow the instructions here, i.e. adding deployment properties for both, load balancer and node port, but the services keep being deployed with type 'ClusterIP'.
stream deploy test --properties "deployer.http.kubernetes.createLoadBalancer=true"
stream deploy test --properties "deployer.http.kubernetes.createNodePort=32123"
And in general: deployer properties will be applied to all apps of a stream, isn't there a nice way to do such things for each single app?