sschere commented on issue #1070:
URL: https://github.com/apache/camel-k/issues/1070#issuecomment-1023413192


   I've faced the same issue, and solved by creating an adicional service as 
LoadBalancer. Let's say your service deployed using kamel run is being called 
"rest-dsl", then below kubectl cli will create a new service called 
"rest-dsl-lb". Then you can keep kamel deploying into a NodePort type and the 
LoadBalancer will redirect to that. I hope that helps:
   
   `kubectl expose service rest-dsl --name rest-dsl-lb --port=80 
--type=LoadBalancer --target-port=8080`


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


Reply via email to