lsergio commented on issue #5179:
URL: https://github.com/apache/camel-k/issues/5179#issuecomment-1971602776

   Here it is:
   
   ```
   root@demo008-00001-deployment-7687bd4f74-792jk:/deployments# ls -R /etc/camel
   /etc/camel:
   application.properties  sources
   
   /etc/camel/sources:
   flow1.groovy
   
   
   root@demo008-00001-deployment-7687bd4f74-792jk:/deployments# cat 
/etc/camel/application.properties 
   camel.k.sources[0].language = groovy
   camel.k.sources[0].location = file:/etc/camel/sources/flow1.groovy
   camel.k.sources[0].name = flow1
   
   root@demo008-00001-deployment-7687bd4f74-792jk:/deployments# cat 
/etc/camel/sources/flow1.groovy 
   from('rest:GET:/hello1') 
.to("https://httpbin.org/delay/2?bridgeEndpoint=true";) .to("log:info")
   from('rest:GET:/hello2') .to("log:debug")
   ```


-- 
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