[GitHub] [camel-k] dmvolod commented on issue #863: operator-sdk build fails on latest master with 'make images-dev'

2019-07-24 Thread GitBox
dmvolod commented on issue #863: operator-sdk build fails on latest master with 
'make images-dev'
URL: https://github.com/apache/camel-k/issues/863#issuecomment-514605372
 
 
   @astefanutti i'm on the latest version
   [dvolodin@dvolodin camel-k]$ operator-sdk version
   operator-sdk version: v0.9.0, commit: 
560208dc998de497bbf59fea1b63426aec430934


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] dmvolod commented on issue #863: operator-sdk build fails on latest master with 'make images-dev'

2019-07-24 Thread GitBox
dmvolod commented on issue #863: operator-sdk build fails on latest master with 
'make images-dev'
URL: https://github.com/apache/camel-k/issues/863#issuecomment-514607384
 
 
   @astefanutti , I'm using GO111MODULE env variable. It's strange that all 
were working 2 days ago.


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] dmvolod commented on issue #863: operator-sdk build fails on latest master with 'make images-dev'

2019-07-24 Thread GitBox
dmvolod commented on issue #863: operator-sdk build fails on latest master with 
'make images-dev'
URL: https://github.com/apache/camel-k/issues/863#issuecomment-514612874
 
 
   @astefanutti do we need to place code inside $GOPATH/src
   when i place it outside, the following error is occurs
   operator-sdk build docker.io/apache/camel-k:1.0.0-M1-SNAPSHOT
   FATA[] dependency manager "dep" requires working directory to be in 
$GOPATH/src
   
   Before removing line 'go mod vendor' from make all was working fine.


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] dmvolod commented on issue #863: operator-sdk build fails on latest master with 'make images-dev'

2019-07-24 Thread GitBox
dmvolod commented on issue #863: operator-sdk build fails on latest master with 
'make images-dev'
URL: https://github.com/apache/camel-k/issues/863#issuecomment-514616425
 
 
   @lburgazzoli it just removed 2 days ago by this commit
   
https://github.com/apache/camel-k/commit/2fb5fc54405851f684591fffabd0dfb519be27cd


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] dmvolod commented on issue #863: operator-sdk build fails on latest master with 'make images-dev'

2019-07-24 Thread GitBox
dmvolod commented on issue #863: operator-sdk build fails on latest master with 
'make images-dev'
URL: https://github.com/apache/camel-k/issues/863#issuecomment-514620464
 
 
   @lburgazzoli after this fix this issue occurs on my laptop.
   Do you have suggestions related to it?


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] dmvolod commented on issue #863: operator-sdk build fails on latest master with 'make images-dev'

2019-07-24 Thread GitBox
dmvolod commented on issue #863: operator-sdk build fails on latest master with 
'make images-dev'
URL: https://github.com/apache/camel-k/issues/863#issuecomment-514621710
 
 
   @astefanutti , just GOPATH and GO111MODULE
   [dvolodin@dvolodin camel-k]$ export | grep GO
   declare -x GO111MODULE="on"
   declare -x GOPATH="/home/dvolodin/go"
   


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] dmvolod commented on issue #863: operator-sdk build fails on latest master with 'make images-dev'

2019-07-24 Thread GitBox
dmvolod commented on issue #863: operator-sdk build fails on latest master with 
'make images-dev'
URL: https://github.com/apache/camel-k/issues/863#issuecomment-514675604
 
 
   I tried different versions and after five into operator-sdk code, detects 
that our looking for the gopkg.toml file first. I deleted it and all becoming 
build fine.
   @astefanutti, @lburgazzoli can we safely remove dep required files from repo?


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] dmvolod commented on issue #863: operator-sdk build fails on latest master with 'make images-dev'

2019-07-24 Thread GitBox
dmvolod commented on issue #863: operator-sdk build fails on latest master with 
'make images-dev'
URL: https://github.com/apache/camel-k/issues/863#issuecomment-514680581
 
 
   Ok, will look into another workaround.
   Maybe it's an OS/fedora regression.


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] dmvolod commented on issue #863: operator-sdk build fails on latest master with 'make images-dev'

2019-07-24 Thread GitBox
dmvolod commented on issue #863: operator-sdk build fails on latest master with 
'make images-dev'
URL: https://github.com/apache/camel-k/issues/863#issuecomment-514730883
 
 
   @astefanutti 
   CI file still contains 'go mod vendor' command. Looks like this is a reason 
why CI is not failing.
   I'm diving into operator-sdk code and the logic to detect of dependency 
manager is very simple and dep has priority.
   
https://github.com/operator-framework/operator-sdk/blob/d6e1aba9fa512ff9d441b648f548399c86929643/internal/util/projutil/project_util.go#L87-L104
   
   May be I can't see very simple things.


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] dmvolod commented on issue #863: operator-sdk build fails on latest master with 'make images-dev'

2019-07-24 Thread GitBox
dmvolod commented on issue #863: operator-sdk build fails on latest master with 
'make images-dev'
URL: https://github.com/apache/camel-k/issues/863#issuecomment-514915207
 
 
   @lburgazzoli , @astefanutti thanks.
   I will report the issue and discuss it in operator-sdk upstream.


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] dmvolod commented on issue #863: operator-sdk build fails on latest master with 'make images-dev'

2019-07-25 Thread GitBox
dmvolod commented on issue #863: operator-sdk build fails on latest master with 
'make images-dev'
URL: https://github.com/apache/camel-k/issues/863#issuecomment-514979096
 
 
   @aldettinger, I'm fine with build right now.
   Please pull latest master from upstream.


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] dmvolod commented on issue #863: operator-sdk build fails on latest master with 'make images-dev'

2019-07-25 Thread GitBox
dmvolod commented on issue #863: operator-sdk build fails on latest master with 
'make images-dev'
URL: https://github.com/apache/camel-k/issues/863#issuecomment-515014867
 
 
   https://github.com/operator-framework/operator-sdk/issues/1738


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