You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by GitBox <gi...@apache.org> on 2022/01/27 17:08:37 UTC

[GitHub] [camel-k] pabloxtiyo opened a new issue #1070: Camel K doesn't support kubernetes services of type loadbalancer

pabloxtiyo opened a new issue #1070:
URL: https://github.com/apache/camel-k/issues/1070


   Hi Guys, do you know how to change/modify the service that camel k creates by default from ClusterIp to LoadBalancer?
   im running this command:: 
   kamel run StackDriverWebHookRoute.java --dependency=camel-rest --dependency=camel-restlet -n arch --dev
   
   but service is always a ClusterIp
   ![image](https://user-images.githubusercontent.com/6226571/69370561-cb47d700-0c63-11ea-848e-ca6ba9863458.png)
   


-- 
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-unsubscribe@camel.apache.org

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



[GitHub] [camel-k] github-actions[bot] commented on issue #1070: Camel K doesn't support kubernetes services of type loadbalancer

Posted by GitBox <gi...@apache.org>.
github-actions[bot] commented on issue #1070:
URL: https://github.com/apache/camel-k/issues/1070#issuecomment-1003471684


   This issue has been automatically marked as stale due to 90 days of inactivity. 
   It will be closed if no further activity occurs within 15 days.
   If you think that’s incorrect or the issue should never stale, please simply write any comment.
   Thanks for your contributions!


-- 
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-unsubscribe@camel.apache.org

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



[GitHub] [camel-k] github-actions[bot] closed issue #1070: Camel K doesn't support kubernetes services of type loadbalancer

Posted by GitBox <gi...@apache.org>.
github-actions[bot] closed issue #1070:
URL: https://github.com/apache/camel-k/issues/1070


   


-- 
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-unsubscribe@camel.apache.org

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



[GitHub] [camel-k] sschere commented on issue #1070: Camel K doesn't support kubernetes services of type loadbalancer

Posted by GitBox <gi...@apache.org>.
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-unsubscribe@camel.apache.org

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