[GitHub] [camel-quarkus] zregvart commented on issue #169: Add website build trigger

2019-09-04 Thread GitBox
zregvart commented on issue #169: Add website build trigger
URL: https://github.com/apache/camel-quarkus/pull/169#issuecomment-528094843
 
 
   @ppalaga this change was only done for the pipeline build (the 
`Jenkinsfile`) which is currently only triggered daily. Should trigger the 
website build, have a look at:
   
   
https://builds.apache.org/view/C/view/Apache%20Camel/job/camel-quarkus%20daily/job/master/3/execution/node/28/log/
   
   Odd bit is that I can't find the build on the website job that it supposedly 
triggered:
   
   
https://builds.apache.org/view/C/view/Apache%20Camel/job/Camel.website/job/master/


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.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] [camel-quarkus] ppalaga commented on issue #169: Add website build trigger

2019-09-04 Thread GitBox
ppalaga commented on issue #169: Add website build trigger
URL: https://github.com/apache/camel-quarkus/pull/169#issuecomment-528068661
 
 
   @zregvart this does not seem to be working. After 
https://github.com/apache/camel-quarkus/pull/174 was merged, 
`camel-quarkus-microprofile-metrics` should have appeared on 
https://camel.apache.org/camel-quarkus/latest/list-of-camel-quarkus-extensions.html
 which is not the case. Any idea what could be wrong?


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.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] [camel-quarkus] oscerd merged pull request #174: Expose metrics in quarkus

2019-09-04 Thread GitBox
oscerd merged pull request #174: Expose metrics in quarkus
URL: https://github.com/apache/camel-quarkus/pull/174
 
 
   


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.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] [camel-quarkus] oscerd closed issue #128: Expose metrics in quarkus

2019-09-04 Thread GitBox
oscerd closed issue #128: Expose metrics in quarkus
URL: https://github.com/apache/camel-quarkus/issues/128
 
 
   


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.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] [camel-quarkus] asf-ci commented on issue #174: Expose metrics in quarkus

2019-09-04 Thread GitBox
asf-ci commented on issue #174: Expose metrics in quarkus
URL: https://github.com/apache/camel-quarkus/pull/174#issuecomment-528026127
 
 
   
   Refer to this link for build results (access rights to CI server needed): 
   https://builds.apache.org/job/camel-quarkus-pr/128/
   


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.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] [camel-k] asifdxtreme commented on a change in pull request #922: fix: Add option to disable Kaniko cache warming

2019-09-04 Thread GitBox
asifdxtreme commented on a change in pull request #922: fix: Add option to 
disable Kaniko cache warming
URL: https://github.com/apache/camel-k/pull/922#discussion_r320864286
 
 

 ##
 File path: pkg/cmd/install.go
 ##
 @@ -235,6 +237,12 @@ func (o *installCmdOptions) install(_ *cobra.Command, _ 
[]string) error {
platform.Spec.Build.HTTPProxySecret = o.httpProxySecret
}
 
+   if o.cache {
+   platform.Spec.Build.Cache = true
 
 Review comment:
   thanks for the review, I have updated it as per your suggestions, I was 
trying to be defensive if someone passes non boolean values.


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.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] [camel-k] asifdxtreme commented on a change in pull request #922: fix: Add option to disable Kaniko cache warming

2019-09-04 Thread GitBox
asifdxtreme commented on a change in pull request #922: fix: Add option to 
disable Kaniko cache warming
URL: https://github.com/apache/camel-k/pull/922#discussion_r320863459
 
 

 ##
 File path: pkg/cmd/install.go
 ##
 @@ -74,6 +74,7 @@ func newCmdInstall(rootCmdOptions *RootCmdOptions) 
*cobra.Command {
cmd.Flags().StringVar(, "build-strategy", "", "Set 
the build strategy")
cmd.Flags().StringVar(, "build-timeout", "", "Set how 
long the build process can last")
cmd.Flags().StringVar(, "trait-profile", "", "The 
profile to use for traits")
+   cmd.Flags().BoolVar(, "cache", true, "To enable or disable 
the cache in building phase")
 
 Review comment:
   thanks for the review, I have updated it as per your suggestions


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.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] [camel-k] contactreji edited a comment on issue #892: Defining datasource in groovy and using in XML routes

2019-09-04 Thread GitBox
contactreji edited a comment on issue #892: Defining datasource in groovy and 
using in XML routes
URL: https://github.com/apache/camel-k/issues/892#issuecomment-527546770
 
 
   @lburgazzoli 
   I am trying to integrate with activemq. I have my groovy beans as follows
   ```
   import org.apache.activemq.ActiveMQConnectionFactory;
   import org.apache.activemq.camel.component.ActiveMQComponent;
   import org.apache.activemq.pool.PooledConnectionFactory;
   import org.apache.camel.component.jms.JmsConfiguration;
   context {
   registry {

   activeMQConnectionFactory = [ brokerURL: 'tcp://localhost:61616', userName: 
'admin', password: 'admin' ] as ActiveMQConnectionFactory
   pooledConnectionFactory = [ maxConnections: '8', connectionFactory: 
'activeMQConnectionFactory' ]  as  PooledConnectionFactory 
   jmsConfig = [ connectionFactory: 'pooledConnectionFactory', 
concurrentConsumers: '2', maxConcurrentConsumers: '10' ] as JmsConfiguration
   activemq = [ configuration: 'jmsConfig'] as ActiveMQComponent
   }
   }
   ```
   
   and route as follows
   
   ```xml
   
   http://camel.apache.org/schema/spring; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; xsi:schemaLocation=" 
http://camel.apache.org/schema/spring 
http://camel.apache.org/schema/spring/camel-spring.xsd;>
  
 
 
  
   
   ```
   
   Camel K build doesn't complete and I see following message
   
   ```
   
ltamehrp7v0","api-version":"camel.apache.org/v1alpha1","kind":"IntegrationContext","ns":"myproject","name":"ctx-bln9je2uoltamehrp7v0","phase":"Error","error":"failure
 while determining classpath: exit status 
1","stacktrace":"github.com/apache/camel-k/vendor/github.com/go-logr/zapr.(*zapLogger).Error\n\t/home/nferraro/gopaths/camel-k/src/github.com/apache/camel-k/vendor/github.com/go-logr/zapr/zapr.go:128\ngithub.com/apache/camel-k/pkg/util/log.Logger.Error\n\t/home/nferraro/gopaths/camel-k/src/github.com/apache/camel-k/pkg/util/log/log.go:70\ngithub.com/apache/camel-k/pkg/controller/integrationcontext.(*buildAction).handleBuildRunning\n\t/home/nferraro/gopaths/camel-k/src/github.com/apache/camel-k/pkg/controller/integrationcontext/build.go:214\ngithub.com/apache/camel-k/pkg/controller/integrationcontext.(*buildAction).Handle\n\t/home/nferraro/gopaths/camel-k/src/github.com/apache/camel-k/pkg/controller/integrationcontext/build.go:61\ngithub.com/apache/camel-k/pkg/controller/integrationcontext.(*ReconcileIntegrationContext).Reconcile\n\t/home/nferraro/gopaths/camel-k/src/github.com/apache/camel-k/pkg/controller/integrationcontext/integrationcontext_controller.go:138\ngithub.com/apache/camel-k/vendor/sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem\n\t/home/nferraro/gopaths/camel-k/src/github.com/apache/camel-k/vendor/sigs.k8s.io/controller-runtime/pkg/internal/controller/controller.go:215\ngithub.com/apache/camel-k/vendor/sigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func1\n\t/home/nferraro/gopaths/camel-k/src/github.com/apache/camel-k/vendor/sigs.k8s.io/controller-runtime/pkg/internal/controller/controller.go:158\ngithub.com/apache/camel-k/vendor/k8s.io/apimachinery/pkg/util/wait.JitterUntil.func1\n\t/home/nferraro/gopaths/camel-k/src/github.com/apache/camel-k/vendor/k8s.io/apimachinery/pkg/util/wait/wait.go:133\ngithub.com/apache/camel-k/vendor/k8s.io/apimachinery/pkg/util/wait.JitterUntil\n\t/home/nferraro/gopaths/camel-k/src/github.com/apache/camel-k/vendor/k8s.io/apimachinery/pkg/util/wait/wait.go:134\ngithub.com/apache/camel-k/vendor/k8s.io/apimachinery/pkg/util/wait.Until\n\t/home/nferraro/gopaths/camel-k/src/github.com/apache/camel-k/vendor/k8s.io/apimachinery/pkg/util/wait/wait.go:88"}
   ```
   
   Any examples on connecting to activeMQ from camel k projects?
   
   
   
   
   


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.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] [camel-quarkus] asf-ci commented on issue #174: Expose metrics in quarkus

2019-09-04 Thread GitBox
asf-ci commented on issue #174: Expose metrics in quarkus
URL: https://github.com/apache/camel-quarkus/pull/174#issuecomment-527953288
 
 
   
   Refer to this link for build results (access rights to CI server needed): 
   https://builds.apache.org/job/camel-quarkus-pr/127/
   


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.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] [camel-quarkus] jamesnetherton opened a new pull request #174: Expose metrics in quarkus

2019-09-04 Thread GitBox
jamesnetherton opened a new pull request #174: Expose metrics in quarkus
URL: https://github.com/apache/camel-quarkus/pull/174
 
 
   fixes #128


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.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services