Monday, 2016-10-10

*** salv-orlando has joined #openstack-kuryr00:04
*** salv-orlando has quit IRC00:08
*** akanksha_ has quit IRC00:21
*** limao has joined #openstack-kuryr00:25
*** yamamoto has joined #openstack-kuryr00:30
*** yamamoto has quit IRC00:32
*** yamamoto has joined #openstack-kuryr00:33
*** yamamoto has quit IRC00:33
*** yamamoto has joined #openstack-kuryr00:33
*** yamamoto has quit IRC00:38
openstackgerritLiping Mao proposed openstack/kuryr: return key error when start container with kuryr binding veth driver  https://review.openstack.org/38424800:59
openstackgerritLiping Mao proposed openstack/kuryr: 'IPDB' object has no attribute 'interface'  https://review.openstack.org/38424901:03
*** salv-orlando has joined #openstack-kuryr01:05
*** yamamoto has joined #openstack-kuryr01:06
*** salv-orlando has quit IRC01:09
*** yedongcan has left #openstack-kuryr01:31
*** yamamoto has quit IRC01:43
*** yedongcan has joined #openstack-kuryr01:47
*** salv-orlando has joined #openstack-kuryr02:06
*** yamamoto has joined #openstack-kuryr02:08
*** salv-orlando has quit IRC02:10
*** yamamoto has quit IRC02:13
*** yamamoto has joined #openstack-kuryr02:17
*** yamamoto has quit IRC02:22
openstackgerritLiping Mao proposed openstack/kuryr: All kuryr-lib CI failed since kuryr-lib add in upper-constraints.txt  https://review.openstack.org/38426202:32
openstackgerritLiping Mao proposed openstack/kuryr-kubernetes: [DO NOT MERGE] TEST CI  https://review.openstack.org/38426302:40
*** sdake has joined #openstack-kuryr02:46
*** yamamoto has joined #openstack-kuryr02:51
*** yamamoto has quit IRC02:51
limaoapuimedo, vikasc : after kuryr-lib added into global requirement and upper-constraints, kuryr-libnetwork / kuryr-lib all CI job is failed , for the inconsistence version of kuryr-lib, they should be fixed in https://review.openstack.org/#/c/384262/ and https://review.openstack.org/#/c/384152/02:58
limaokuryr-k8s CI still works, this is because it has not check the upper-constraints.txt yet, but I think it should check it..02:59
*** sdake has quit IRC03:41
*** yamamoto has joined #openstack-kuryr03:51
*** yamamoto has quit IRC03:55
*** yamamoto has joined #openstack-kuryr03:55
*** yamamoto has quit IRC03:57
*** pmannidi_ is now known as pmannidi04:04
*** yamamoto has joined #openstack-kuryr04:13
*** yamamoto has quit IRC04:14
*** salv-orlando has joined #openstack-kuryr05:07
*** salv-orl_ has joined #openstack-kuryr05:12
*** yamamoto has joined #openstack-kuryr05:15
*** salv-orlando has quit IRC05:17
*** yamamoto has quit IRC05:21
*** limao_ has joined #openstack-kuryr05:30
*** limao has quit IRC05:32
*** salv-orl_ has quit IRC05:52
*** reedip has quit IRC06:01
*** reedip has joined #openstack-kuryr06:02
*** diga has joined #openstack-kuryr06:32
*** limao_ has quit IRC06:39
*** limao has joined #openstack-kuryr06:40
*** limao has quit IRC06:40
*** limao has joined #openstack-kuryr06:41
*** janki has joined #openstack-kuryr06:46
*** oanson has joined #openstack-kuryr06:47
*** tonanhngo has quit IRC06:53
*** tonanhngo has joined #openstack-kuryr07:01
*** tonanhngo has quit IRC07:03
*** salv-orlando has joined #openstack-kuryr07:05
*** neiljerram has joined #openstack-kuryr07:32
apuimedothanks a lot limao. I'll review them this morning07:49
*** neiljerram has quit IRC07:55
*** lmdaly has joined #openstack-kuryr08:05
*** lmdaly has quit IRC08:14
*** lmdaly has joined #openstack-kuryr08:15
openstackgerritJaivish Kothari(janonymous) proposed openstack/kuryr: Add cover produced after coverage run in .gitignore  https://review.openstack.org/38434908:26
*** garyloug has joined #openstack-kuryr08:27
*** salv-orl_ has joined #openstack-kuryr08:43
*** sdake has joined #openstack-kuryr08:44
openstackgerritJaivish Kothari(janonymous) proposed openstack/kuryr-libnetwork: Add cover directory produced after coverage run in .gitignore  https://review.openstack.org/38435908:45
*** salv-orlando has quit IRC08:46
*** huats_ has joined #openstack-kuryr08:49
*** huats has quit IRC08:54
openstackgerritIlya Chukhnakov proposed openstack/kuryr-kubernetes: Watcher implementation  https://review.openstack.org/37604308:56
*** ivc_ has joined #openstack-kuryr08:57
*** neiljerram has joined #openstack-kuryr09:16
*** yamamoto has joined #openstack-kuryr09:32
*** yamamoto has quit IRC09:32
*** lmdaly has quit IRC09:34
janonymouslimao: Hi, i read about ci jobs and its process, but can you please let me know how upper-constraints.txt and global-requirements.txt depends on each other in environment?09:39
limaohi janonymous: you can have a look this https://specs.openstack.org/openstack/openstack-specs/specs/requirements-management.html09:41
limaoWe’ll add a new pip freeze file to openstack/requirements, called upper-constraints.txt. This will contain a pinned list of the entire set of transitive requirements for that branch of OpenStack (defined by the projects within the projects.txt file in openstack/requirements). All CI jobs will use this to constrain the versions of Python projects that can be tested with. Changes to that file will be tested by running a subset of the sam09:42
limaoe jobs that would consume it, as well as a policy checker that checks it is compatible with global-requirements.txt. Changes to either global-requirements.txt or upper-constraints.txt will have to be compatible with each other.09:42
limaoThe problem of kuryr-libnetwork is because we have in-consistent define in kuryr-libnetwork/requirements.txt and upper-constraints.txt09:43
limaocurrently, kuryr-libnetwork/requirements.txt is using -e git://git.openstack.org/openstack/kuryr#egg=kuryr_lib, but in upper-constraints.txt it is kuryr-lib === 0.1.009:45
janonymouslimao: yeah right! nice work09:45
*** huats_ is now known as huats09:46
*** yamamoto has joined #openstack-kuryr09:50
limaofor kuryr-lib repo CI job failed is another story,  since itself is added into upper-constraints.txt, remove it from the constraints file before applying it, otherwise pip will fail due to kuryr-lib version conflict.09:51
janonymouslimao: yes, all files needs to in sync specially global and upper09:53
limaojanonymous: yeap :)09:54
*** lmdaly has joined #openstack-kuryr09:54
janonymouslimao: one little ques, so you upgraded in case of kuryr-lib09:55
limaojanonymous: kuryr-lib should be added and managed in global requirements since it is released first version09:56
janonymouslimao: https://review.openstack.org/#/c/384262/1/tools/tox_install.sh09:58
limaoin kuryr-lib CI, kuryr-lib itself need to be installed with source code not from upper-constraints09:59
janonymousyes10:01
*** tonanhngo has joined #openstack-kuryr10:02
limaojanonymous:that's why in the tox_install.sh it will update upper-constraints.txt, this action is similar with when you want to install some component with source code in devstack10:03
*** tonanhngo has quit IRC10:03
mchiappeapuimedo & everyone else, I have a few questions regarding the integration with libnetwork and IPVLAN10:03
apuimedomchiappe: I got to go now for a while. I'll be online around the meeting time.10:04
mchiappeI'm not sure whether we want to add some of those to the agenda for today10:04
limaomchiappe: hello10:04
mchiappeapuimedo: ok10:05
mchiappeanyway, in general I was wondering about the best approach for the IPAM stuff, in order to let the user provide little to no additional arguments10:06
mchiappecould it be interesting to add it to the agenda?10:06
*** limao has quit IRC10:08
janonymouslimao: thanks for the info! nice work10:13
*** yamamoto has quit IRC10:16
*** janki has quit IRC10:18
*** yamamoto has joined #openstack-kuryr10:19
*** tonanhngo has joined #openstack-kuryr10:22
*** tonanhngo has quit IRC10:23
*** yamamoto has quit IRC10:24
*** vikasc has quit IRC10:43
*** vikasc has joined #openstack-kuryr10:45
*** salv-orl_ has quit IRC10:46
*** garyloug has quit IRC10:49
*** garyloug has joined #openstack-kuryr10:52
*** garyloug has quit IRC10:53
*** salv-orlando has joined #openstack-kuryr10:54
openstackgerritJaivish Kothari(janonymous) proposed openstack/kuryr: Update message as per i18n  https://review.openstack.org/37525610:54
*** garyloug has joined #openstack-kuryr10:54
*** gsagie has joined #openstack-kuryr11:09
*** yamamoto has joined #openstack-kuryr11:21
*** yamamoto has quit IRC11:27
*** yedongcan has left #openstack-kuryr11:27
*** yamamoto has joined #openstack-kuryr11:32
*** sdake has quit IRC11:41
*** yamamoto has quit IRC11:45
*** lmdaly has quit IRC11:45
*** yamamoto has joined #openstack-kuryr11:46
*** yamamoto has quit IRC11:48
*** yamamoto has joined #openstack-kuryr11:51
*** gsagie has quit IRC11:58
openstackgerritdengshaolin proposed openstack/fuxi: Raise exception when find more than one matched Cinder volumes  https://review.openstack.org/38445612:04
*** tonanhngo has joined #openstack-kuryr12:17
*** tonanhngo has quit IRC12:18
*** yedongcan has joined #openstack-kuryr12:32
*** gsagie has joined #openstack-kuryr12:39
*** oanson has quit IRC12:41
*** yedongcan has quit IRC12:55
*** gsagie has quit IRC13:01
*** gsagie has joined #openstack-kuryr13:01
*** gsagie has quit IRC13:03
*** salv-orlando has quit IRC13:06
*** diga has quit IRC13:07
*** limao has joined #openstack-kuryr13:19
*** salv-orlando has joined #openstack-kuryr13:29
*** tonanhngo has joined #openstack-kuryr13:34
*** salv-orlando has quit IRC13:34
*** tonanhngo has quit IRC13:35
*** limao has quit IRC13:36
*** limao has joined #openstack-kuryr13:36
*** lmdaly has joined #openstack-kuryr13:45
*** sdake has joined #openstack-kuryr13:49
*** banix has joined #openstack-kuryr13:50
*** yedongcan has joined #openstack-kuryr13:50
*** yedongcan has left #openstack-kuryr13:52
*** yedongcan has joined #openstack-kuryr13:52
*** sdake has quit IRC13:54
*** sdake has joined #openstack-kuryr13:55
*** limao has quit IRC13:59
*** tonanhngo has joined #openstack-kuryr14:00
*** limao has joined #openstack-kuryr14:00
*** huikang has joined #openstack-kuryr14:02
*** diga has joined #openstack-kuryr14:12
*** salv-orlando has joined #openstack-kuryr14:30
*** salv-orlando has quit IRC14:35
*** openstack has joined #openstack-kuryr18:23
*** hongbin_ has quit IRC18:29
*** openstack has joined #openstack-kuryr19:04
*** diga has quit IRC19:14
*** salv-orlando has quit IRC19:17
*** portdirect has quit IRC19:28
*** oanson has quit IRC19:56
*** hongbin has joined #openstack-kuryr19:56
*** huikang has quit IRC20:08
*** salv-orlando has joined #openstack-kuryr20:08
*** salv-orl_ has joined #openstack-kuryr20:44
*** salv-orlando has quit IRC20:46
*** tonanhngo has quit IRC21:46
*** tonanhngo has joined #openstack-kuryr21:55
*** tonanhngo_ has joined #openstack-kuryr21:56
*** tonanhngo has quit IRC22:00
*** tonanhngo_ has quit IRC22:00
*** hongbin has quit IRC22:03
*** hongbin has joined #openstack-kuryr22:05
*** portdirect has joined #openstack-kuryr22:19
openstackgerritTin Lam proposed openstack/kuryr: Add reno support to kuryr  https://review.openstack.org/38354922:19
openstackgerritTin Lam proposed openstack/kuryr: Add reno support to kuryr  https://review.openstack.org/38354922:40
*** salv-orlando has joined #openstack-kuryr22:42
*** salv-or__ has joined #openstack-kuryr22:44
*** sdake has quit IRC22:44
*** salv-orl_ has quit IRC22:47
*** salv-orlando has quit IRC22:48
*** hongbin has quit IRC23:07
*** sdake has joined #openstack-kuryr23:12
*** tonanhngo has joined #openstack-kuryr23:16
*** sdake_ has joined #openstack-kuryr23:17
*** tonanhngo has quit IRC23:18
*** salv-or__ has quit IRC23:21
*** sdake has quit IRC23:21
*** salv-orlando has joined #openstack-kuryr23:22
*** HenryG has quit IRC23:32
*** HenryG has joined #openstack-kuryr23:32
*** salv-orlando has quit IRC23:51
*** tonanhngo has joined #openstack-kuryr23:58
*** tonanhngo has quit IRC23:59

Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!