Thursday, 2017-10-05

*** ramineni_ has joined #openstack-meeting00:00
*** baoli has joined #openstack-meeting00:00
*** sshank has quit IRC00:00
ekcs#startmeeting congressteammeeting00:01
openstackMeeting started Thu Oct  5 00:01:10 2017 UTC and is due to finish in 60 minutes.  The chair is ekcs. Information about MeetBot at http://wiki.debian.org/MeetBot.00:01
openstackUseful Commands: #action #agreed #help #info #idea #link #topic #startvote.00:01
*** openstack changes topic to " (Meeting topic: congressteammeeting)"00:01
openstackThe meeting name has been set to 'congressteammeeting'00:01
ekcshi all! topics here as usual: https://etherpad.openstack.org/p/congress-meeting-topics00:01
ramineni_Hi00:01
ekcsfeel free to comment/edit/add =)00:02
ekcshi ramineni_ !00:02
*** jdg has quit IRC00:02
*** jaypipes has quit IRC00:02
*** thinrichs has joined #openstack-meeting00:04
ekcsok let’s get started.00:04
ekcs#topic gate blockage00:04
*** openstack changes topic to "gate blockage (Meeting topic: congressteammeeting)"00:04
*** gyee has quit IRC00:04
ekcssince the infra transition to zuul3 congress gate has been blocked.00:05
ekcsdevstack just merged a workaround for one issue: https://review.openstack.org/#/c/508344/00:05
*** ramineni_ has left #openstack-meeting00:05
ekcsbut another issue got surfaced where congress doesn’t explicitly set transport url and credentials. that’s being fixed in this patch.00:06
ekcshttps://review.openstack.org/#/c/509604/00:06
*** jdg has joined #openstack-meeting00:06
ekcslooks like that should finally unblock the gate.00:06
*** brault has joined #openstack-meeting00:08
thinrichsJenkins is failing on that for 3500:10
thinrichsOr is that old?00:10
thinrichsI see-it's old00:10
*** jdg has quit IRC00:11
ekcsyea that’s an old issue we haven’t quite stabilized. needs rechecks once in a while.00:11
ekcsshould probbaly put that in our priority too.00:11
ekcs#topic attach/detach security group00:12
*** openstack changes topic to "attach/detach security group (Meeting topic: congressteammeeting)"00:12
*** mrunge has quit IRC00:12
*** jdg has joined #openstack-meeting00:12
ekcsok since ramineni dropped off and we need her for most of the other topics, i’m moving on to this.00:12
ekcshttps://review.openstack.org/#/c/508657/00:13
*** brault has quit IRC00:13
ekcsthe microseg use case (and probbaly others too) need an action to attach/detach security groups to ports.00:14
ekcsthe standard neutron API requires updating the entire list of security groups associated with a port (https://developer.openstack.org/api-ref/network/v2/index.html#update-port)00:14
*** ramineni_ has joined #openstack-meeting00:14
*** mrunge has joined #openstack-meeting00:14
thinrichsMakes sense to me.  Do we have someone wanting to use this for microseg?00:14
*** ramineni_ has left #openstack-meeting00:15
ekcsso here’s a patch for creating custom actions to attach/detach a single security group. ZTE wants it.00:15
ekcsthe problem is because it’s a read-modify-write process, concurrent changes may be overwritten.00:16
ekcsbut I don’t think there is really a way to avoid it given the neutron API.00:16
ekcsany thoughts?00:16
*** ramineni_ has joined #openstack-meeting00:17
thinrichsSee above00:17
ekcsthe best I could do is include a warning in the action description.00:18
ekcsok then.00:18
ekcsramineni_: hi are you here or still going on/off?00:18
ramineni_ekcs: here .. hoping won't get disconnected again00:19
ekcsramineni_: haha =)00:19
ekcsok let’s move along then.00:19
ekcs#topic continue drivers conf discussion00:19
*** openstack changes topic to "continue drivers conf discussion (Meeting topic: congressteammeeting)"00:19
*** slaweq_ has quit IRC00:20
ekcsramineni sees user difficulty that drivers they try to instantiate as datasource have not been enabled in conf00:20
*** markstur has quit IRC00:20
ekcsthere are two ideas being considered for how to avoid that problem.00:20
ramineni_thinrichs: hi00:21
ekcs1. remove the drivers config option completely and load all drivers specified by dev.00:21
ekcs2. keep the drivers config option but default it to include all/most drivers.00:22
thinrichsramineni_: hi00:22
ekcs2. is a simpler and backward compatible change, but ramineni_ sees some problem with it that we didn’t finish discussing last time.00:22
ekcsramineni_: you wanna elaborate?00:22
ramineni_Ppl often forget to add any newly added driver in Conf .. so will get the error invalidDriver .. I saw that couple of times by user00:24
ekcsclarification: drivers added to congress repo, or custom drivers added by deployer?00:25
*** slaweq_ has joined #openstack-meeting00:25
ramineni_So my initial thought was .. asking users to add full class name of driver with path into Conf .. didn't sound to me like good option00:25
ramineni_Drivers added to repo00:25
ramineni_We have to enable by stevedore instead00:26
*** ijw has joined #openstack-meeting00:26
ramineni_Than keeping as Conf option00:26
thinrichsIf I remember right, the reason we made the drivers a config option was that we didn't need to discover them by walking through a directory or hierarchy of directories.  So an implementation short-cut.00:27
thinrichsIt also provided a safety hatch to disable a driver that was causing problems with everything else.00:27
ramineni_thinrichs: yes ..but stevedore does that ..if we add in setup.cfg00:27
ramineni_It discovers the drivers00:27
ekcsramineni_: ok understood. the scenario is someone has congress running. we add a new driver but when they upgrade they continue to use the same conf file and don’t have access to newly added drivers in new version of congress.00:28
thinrichsramineni_: that sounds nice to have auto-discovery.  Maybe if we had/knew-about that we wouldn't have bothered with the config option.00:28
thinrichsIt's definitely bad for usability to manually configure every driver.00:29
ramineni_thinrichs: yes00:29
ekcsat the same time, if we just default the driver config to include all drivers, the new users won’t experience the problem. and existing users won’t have a problem once someone tells them to erase their current driver config.00:29
ramineni_With stevedore ..we won't load the driver until datasource is created .. we load only when they need ..that's the idea00:30
thinrichsIf we have auto-loading by default but want to support manual config as well, we could either think about a whitelist (which drivers to start) or a blacklist (which ones not to start) or both.00:32
ekcsthinrichs: yes. proposal 2 would essentially be all by default, whitelist available.00:32
ramineni_thinrichs: but driver loading is needed only when datasource is created right00:32
*** ekhugen has joined #openstack-meeting00:32
ekcsramineni_: does it matter when we load the driver?00:33
thinrichsI could see lazy-loading in any case.00:33
thinrichsThough lazy-loading would let people avoid pulling in drivers that are causing problems.00:34
*** flanders_ has quit IRC00:34
thinrichs(kind of)  If an end-user knew a driver was problematic, she could avoid instantiating it.  But without a whitelist/blacklist, there'd be no way for the admin to prevent people from loading certain drivers.00:34
ramineni_Yes00:35
ekcssounds kludgy. wouldn’t it be better if the problem is surfaced right away then the deployer/op can do something about it? instead of leaving it up to the individual admin.00:35
ekcsdeployer starts congress after upgrade. sees problem and fixes it.00:36
ekcsinstead of something crashing when the everyday admin instantiates something.00:36
thinrichsSounds like we're gravitating toward: (i) stevedore lazy loading and (ii) optional whitelist in config enumerating drivers stevedore is permitted to load.00:37
thinrichsDoes stevedore support that kind of thing?00:37
ramineni_Even if we keep enabled drivers or disable drivers in Conf option .. we should just accept name of driver instead of class name ..00:37
ekcsand theese are two fairly orthogonal issues. 1. load on start vs load on use. 2. whitelist vs blacklist00:37
*** felipemonteiro__ has quit IRC00:38
ekcsand 3. class path vs driver name.00:38
ramineni_ii . We can keep Conf option to take just driver name s00:38
*** Swami has quit IRC00:40
ramineni_Stevedore does nt support optional  .. One option to remove from setup.cfg ..that's it .. stevedore won't be able to identify then00:40
ramineni_Use stevedore .. And keep disabled_drivers option ..to take driver names to disable00:42
ramineni_2nd option .. Leave the config option as it is00:43
ramineni_They can remove the drivers as needed00:43
ekcson 2. whitelist vs blacklist, here are some pros and cons I can see.00:43
thinrichsWould the disabled-driver config be used by our code then to stop the code from creating an instance of a driver?00:43
ekcsblacklist pro: makes it so that current installations automatically gain access to newly added drivers.00:43
ekcsblacklist con: if an installation currently has a custom driver enabled by whitelist, it can get broken.00:43
ramineni_thinrichs: yes00:43
ramineni_Before loading by stevedore we check if it's disabled ..then proceed00:44
ekcsblacklist con: not backward compatible in that if a user currently relies on the config, it stops doing what they expect.00:44
*** reedip_ has joined #openstack-meeting00:47
ekcsok seems like a more complex discussion than initially anticipated.00:48
*** tovin07_ has joined #openstack-meeting00:48
thinrichsI'd imagine the following progression...00:48
thinrichs(i) stevedore to do lazy-loading, which obviates the need for the config00:49
thinrichsthat's the default.00:49
thinrichs(ii) enforce a whitelist given in config, if it exists, before stevedore loads00:49
thinrichs(iii) if we want, add a blacklist config option as well00:50
thinrichsIf we do (i) and (ii) together, we're backwards compatible and we can tell people to delete their config to get all the new drivers.00:50
thinrichsThen if we think it's valuable, add (iii) later00:50
ekcsthinrichs: yes but the same effect i+ii can also be accomplished by just setting a config default to load all drivers. one line change.00:51
ekcsand we still have the option to add iii later.00:51
thinrichsYou mean change the line to "*"00:51
thinrichsBecause "all" changes between releases00:51
*** mriedem has quit IRC00:51
ekcsI meant enumerate the drivers here: https://github.com/openstack/congress/blob/master/congress/common/config.py#L6700:52
ekcsand that can change with the release.00:52
thinrichsRight—but it won't solve ramineni_'s problem00:53
thinrichswhere someone has config from release A and then upgrades to release B without changing their config.00:53
ekcsok so your (ii) is a new option, not the existing drivers option?00:54
ekcsTo me that’s not a big problem because you just tell them te delete that line in their config then they’re good.00:55
ekcsfor all future releases.00:55
ekcsbasically it comes down to whether we want to ignore the existing driver config or not.00:56
*** fnaval has quit IRC00:56
thinrichs(ii) would say that if the config is there, use it to whitelist stevedore.  If it's not there just load everything like normal.00:57
thinrichsBut if you have your config there on purpose, we'll still respect it.00:57
thinrichsHence backwards compatible.00:57
ekcsthinrichs: ok then we come back to the same problem that someone upgrading from release to release without changing/deleting their drivers config don’t get new drivers.00:58
*** slaweq_ has quit IRC00:58
ekcswe can’t tell whether someone has the config there “on purpose” or not. unless we just ignore the existing config and ask users to use a new one.00:58
ramineni_Can't we ask to change the way they enable custom drivers if any are there :)00:58
ramineni_Mostly they would be testing purpose in most of the cases00:59
thinrichsSo then they delete it.  There's the capability of always taking all the drivers (which they do once), but if they don't want that, they get the old behavior.00:59
*** jdg has quit IRC00:59
ekcsok we’re out of time. I’ll try to summarize on etherpad or something and contunue.00:59
thinrichsThanks all01:00
ekcsthanks all for the detailed discussions!01:00
*** thinrichs has quit IRC01:00
*** slaweq_ has joined #openstack-meeting01:00
ekcsbye ramineni_ !01:00
ekcs#endmeeting01:00
*** openstack changes topic to "OpenStack Meetings || https://wiki.openstack.org/wiki/Meetings"01:00
openstackMeeting ended Thu Oct  5 01:00:57 2017 UTC.  Information about MeetBot at http://wiki.debian.org/MeetBot . (v 0.1.4)01:00
openstackMinutes:        http://eavesdrop.openstack.org/meetings/congressteammeeting/2017/congressteammeeting.2017-10-05-00.01.html01:01
openstackMinutes (text): http://eavesdrop.openstack.org/meetings/congressteammeeting/2017/congressteammeeting.2017-10-05-00.01.txt01:01
openstackLog:            http://eavesdrop.openstack.org/meetings/congressteammeeting/2017/congressteammeeting.2017-10-05-00.01.log.html01:01
*** ekhugen has quit IRC01:05
*** dmacpher has joined #openstack-meeting01:12
*** Swami has joined #openstack-meeting01:14
*** rhochmuth has joined #openstack-meeting01:18
*** jgriffith_ has joined #openstack-meeting01:19
*** hongbin has joined #openstack-meeting01:20
*** ijw has quit IRC01:21
*** erlon has quit IRC01:22
*** jgriffith_ has quit IRC01:23
*** jgriffith_ has joined #openstack-meeting01:23
*** bnemec-backlater has quit IRC01:24
*** bnemec has joined #openstack-meeting01:24
*** jgriffith_ has quit IRC01:26
*** SumitNaiksatam has joined #openstack-meeting01:27
*** jgriffith_ has joined #openstack-meeting01:27
*** ricolin has joined #openstack-meeting01:29
*** b1airo has joined #openstack-meeting01:31
*** slaweq_ has quit IRC01:32
*** jgriffith_ has quit IRC01:34
*** slaweq_ has joined #openstack-meeting01:39
*** annabelleB has joined #openstack-meeting01:41
*** diablo_rojo has quit IRC01:42
*** Douhet has quit IRC01:43
*** reedip_ has quit IRC01:44
*** yamahata has quit IRC01:44
*** Douhet has joined #openstack-meeting01:44
*** iyamahat has quit IRC01:44
*** diablo_rojo has joined #openstack-meeting01:46
*** fzdarsky_ has joined #openstack-meeting01:46
*** SumitNaiksatam has quit IRC01:48
*** fzdarsky has quit IRC01:50
*** jhesketh has quit IRC01:51
*** jhesketh has joined #openstack-meeting01:51
*** diga has quit IRC01:55
*** cloudrancher has quit IRC01:57
*** cloudrancher has joined #openstack-meeting01:58
*** IgorYozhikov has quit IRC01:59
*** akuznetsova has quit IRC02:00
*** jamemcc_ has quit IRC02:00
*** adreznec has quit IRC02:00
*** dteselkin has quit IRC02:00
*** kiennt26 has joined #openstack-meeting02:00
*** rarora has quit IRC02:00
*** sw3 has quit IRC02:01
*** timothyb89 has quit IRC02:01
*** jinli has quit IRC02:02
*** afazekas has quit IRC02:02
*** afazekas has joined #openstack-meeting02:02
*** jamemcc_ has joined #openstack-meeting02:02
*** adreznec has joined #openstack-meeting02:02
*** timothyb89 has joined #openstack-meeting02:02
*** sw3 has joined #openstack-meeting02:03
*** akuznetsova has joined #openstack-meeting02:03
*** IgorYozhikov has joined #openstack-meeting02:04
*** cloudrancher has quit IRC02:05
*** dteselkin has joined #openstack-meeting02:05
*** annabelleB has quit IRC02:06
*** unicell has quit IRC02:07
*** cloudrancher has joined #openstack-meeting02:07
*** tongl has joined #openstack-meeting02:08
*** unicell has joined #openstack-meeting02:08
*** slaweq_ has quit IRC02:09
*** hemna_ has joined #openstack-meeting02:11
*** unicell has quit IRC02:13
*** bobh has joined #openstack-meeting02:13
*** rarora has joined #openstack-meeting02:15
*** slaweq_ has joined #openstack-meeting02:18
*** ekcs has quit IRC02:18
*** Rockyg has joined #openstack-meeting02:18
*** diablo_rojo has quit IRC02:20
*** brault has joined #openstack-meeting02:24
*** brault has quit IRC02:28
*** hemna_ has quit IRC02:39
*** jgriffith_ has joined #openstack-meeting02:42
*** vishwanathj has quit IRC02:44
*** jkilpatr has quit IRC02:46
*** jinli has joined #openstack-meeting02:48
*** tongl has quit IRC02:48
*** yamamoto has joined #openstack-meeting02:48
*** slaweq_ has quit IRC02:51
*** ijw has joined #openstack-meeting02:53
*** AndyU has joined #openstack-meeting02:53
*** slaweq_ has joined #openstack-meeting02:55
*** wanghao has joined #openstack-meeting02:57
*** ijw has quit IRC02:57
*** bobh has quit IRC03:00
*** wanghao has quit IRC03:00
*** ijw has joined #openstack-meeting03:02
*** baoli has quit IRC03:02
*** wanghao has joined #openstack-meeting03:03
*** claudiub has quit IRC03:07
*** wanghao has quit IRC03:07
*** ijw has quit IRC03:08
*** jgriffith_ has quit IRC03:08
*** ijw has joined #openstack-meeting03:11
*** lbragstad has joined #openstack-meeting03:12
*** rhochmuth has quit IRC03:15
*** ijw has quit IRC03:16
*** baoli has joined #openstack-meeting03:17
*** ramineni_ has quit IRC03:19
*** larainema has joined #openstack-meeting03:25
*** baoli has quit IRC03:26
*** rbudden has quit IRC03:27
*** slaweq_ has quit IRC03:28
*** slaweq_ has joined #openstack-meeting03:34
*** mohankumar__ has joined #openstack-meeting03:35
*** wanghao has joined #openstack-meeting03:36
*** markvoelker has quit IRC03:36
*** mohankumar_ has quit IRC03:37
*** wanghao has quit IRC03:41
*** tonyb has quit IRC03:42
*** hongbin has quit IRC03:42
*** links has joined #openstack-meeting03:48
*** lbragstad has quit IRC03:50
*** dbecker has quit IRC03:54
*** tonyb has joined #openstack-meeting03:56
*** dbecker has joined #openstack-meeting04:07
*** SumitNaiksatam has joined #openstack-meeting04:10
*** jgriffith has quit IRC04:11
*** jgriffith has joined #openstack-meeting04:11
*** armax has quit IRC04:12
*** fzdarsky_ has quit IRC04:12
*** kiennt26 has quit IRC04:12
*** armax has joined #openstack-meeting04:13
*** armax has quit IRC04:13
*** armax has joined #openstack-meeting04:13
*** armax has quit IRC04:14
*** armax has joined #openstack-meeting04:14
*** armax has quit IRC04:14
*** armax has joined #openstack-meeting04:15
*** armax has quit IRC04:15
*** armax has joined #openstack-meeting04:16
*** armax has quit IRC04:16
*** cburgess has quit IRC04:16
*** donghao has quit IRC04:16
*** markstur has joined #openstack-meeting04:18
*** anilvenkata has joined #openstack-meeting04:18
*** cburgess has joined #openstack-meeting04:19
*** coolsvap has joined #openstack-meeting04:33
*** gyee has joined #openstack-meeting04:33
*** Rockyg has quit IRC04:35
*** ekcs has joined #openstack-meeting04:40
*** slaweq_ has quit IRC04:41
*** reedip has quit IRC04:42
*** slaweq_ has joined #openstack-meeting04:49
*** tongl has joined #openstack-meeting04:50
*** gmann is now known as gmann_lunch04:58
*** psachin has joined #openstack-meeting05:01
*** chyka has joined #openstack-meeting05:04
*** gyee has quit IRC05:05
*** gouthamr has quit IRC05:06
*** chyka has quit IRC05:08
*** Manuel_112 has joined #openstack-meeting05:08
*** eumel8 has joined #openstack-meeting05:13
*** marios has joined #openstack-meeting05:18
*** Manuel_112 has quit IRC05:20
*** slaweq_ has quit IRC05:22
*** slaweq_ has joined #openstack-meeting05:26
*** lpetrut has joined #openstack-meeting05:30
*** chyka has joined #openstack-meeting05:35
*** markvoelker has joined #openstack-meeting05:37
*** Rockyg has joined #openstack-meeting05:38
*** chyka has quit IRC05:39
*** claudiub has joined #openstack-meeting05:40
*** janki has joined #openstack-meeting05:43
*** gmann_lunch is now known as gmann05:43
*** unicell has joined #openstack-meeting05:45
*** Manuel_112 has joined #openstack-meeting05:47
*** Manuel_112 has quit IRC05:47
*** unicell1 has joined #openstack-meeting05:48
*** Manuel_112 has joined #openstack-meeting05:48
*** unicell has quit IRC05:50
*** ekcs has quit IRC05:53
*** vishwanathj has joined #openstack-meeting05:54
*** Manuel_112 has quit IRC05:54
*** Manuel_112 has joined #openstack-meeting05:54
*** dhellmann has quit IRC05:56
*** dhellmann has joined #openstack-meeting05:58
*** slaweq_ has quit IRC05:59
*** Manuel_1_ has joined #openstack-meeting06:01
*** tongl has quit IRC06:02
*** Manuel_112 has quit IRC06:03
*** slaweq_ has joined #openstack-meeting06:05
*** rledisez has quit IRC06:06
*** lpetrut has quit IRC06:10
*** markvoelker has quit IRC06:11
*** markstur has quit IRC06:18
*** vishwana_ has joined #openstack-meeting06:19
*** jbadiapa has joined #openstack-meeting06:19
*** vishwanathj has quit IRC06:21
*** rcernin has joined #openstack-meeting06:24
*** jgu_ has quit IRC06:25
*** kiennt26 has joined #openstack-meeting06:26
*** martinkopec has joined #openstack-meeting06:28
*** iyamahat has joined #openstack-meeting06:28
*** b1airo has quit IRC06:31
*** spectr has quit IRC06:34
*** spectr has joined #openstack-meeting06:34
*** lbrune has quit IRC06:37
*** kiennt26 has quit IRC06:37
*** slaweq_ has quit IRC06:38
*** Swami has quit IRC06:43
*** slaweq_ has joined #openstack-meeting06:44
*** egallen has joined #openstack-meeting06:44
*** brault has joined #openstack-meeting06:44
*** kiennt26 has joined #openstack-meeting06:48
*** vishwana_ has quit IRC06:48
*** shu-mutou-AWAY is now known as shu-mutou06:49
*** lbrune has joined #openstack-meeting06:54
eumel8#startmeeting OpenStack I18n Meeting07:00
openstackMeeting started Thu Oct  5 07:00:17 2017 UTC and is due to finish in 60 minutes.  The chair is eumel8. Information about MeetBot at http://wiki.debian.org/MeetBot.07:00
openstackUseful Commands: #action #agreed #help #info #idea #link #topic #startvote.07:00
*** openstack changes topic to " (Meeting topic: OpenStack I18n Meeting)"07:00
openstackThe meeting name has been set to 'openstack_i18n_meeting'07:00
eumel8gooooood morning!07:00
eumel8who's there for the i18n team meeting?07:00
ianychoiHi07:01
ianychoiGood morning07:02
*** unicell1 has quit IRC07:02
eumel8ianychoi07:02
ianychoi:)07:02
eumel8nice!07:02
eumel8:)07:02
eumel8I noticed a small fading of the core-core-team ;)07:02
ianychoi?07:03
eumel8just analyze the participants for the meeting07:04
eumel8anyway...07:04
ianychoiAha..07:04
eumel8first topic07:04
eumel8#topic Translation Jobs after Zuul-v3 migration07:04
*** openstack changes topic to "Translation Jobs after Zuul-v3 migration (Meeting topic: OpenStack I18n Meeting)"07:04
*** vishwanathj has joined #openstack-meeting07:04
eumel8This topic is at the moment obselete due the rollback of the zuul v4 migration yesterday07:05
eumel8there are 2 proposals:07:05
ianychois/v4/v3 ?07:05
eumel8#link https://review.openstack.org/#/c/50220807:05
*** b1airo has joined #openstack-meeting07:05
eumel8#link https://review.openstack.org/#/c/50220707:05
eumel8ah, forgot the history: translation jobs were broken since 09/29 and 10/0207:06
ianychoiYep.. it might be also nice if such news is notified to i18n mailing list07:07
*** tesseract has joined #openstack-meeting07:07
eumel8I asked at the infra channel how we can help but the topic was already aware and seems "only" a little bit complicated to write new jobs.07:08
*** markvoelker has joined #openstack-meeting07:08
*** ad_rien_ has joined #openstack-meeting07:08
*** pcaruana has joined #openstack-meeting07:08
eumel8ianychoi: yes, I noticed this, I think, Monday afternoon07:08
eumel8And there were a lots of trouble of Zuul-3 at this time and our translation jobs are only a very small part of the problem07:09
ianychoiWhat I mention is how such translation issues would be better and well shared to translators and how the translators acknowledge such situation.07:10
ianychoiI am very thankful for your acknowledgement of this important issue07:10
eumel8understood, but no solution yet.07:10
ianychoiHmm07:11
eumel8sometimes as saw as broken but the jobs are running hours instead minutes07:11
eumel8I think this was an exceptional situation like Monty mentioned on openstack-dev ML07:12
ianychoiI just think such downtime for translation sync would be fine07:13
*** anilvenkata has quit IRC07:13
ianychoiI understand that infra team is working very hard for migrating to zuul-v307:13
ianychoiAnd I also think that such upgrade would be to make go forward07:14
*** mwarad has joined #openstack-meeting07:15
*** dmacpher has quit IRC07:15
eumel8For me it's a little surprise because infra team is now on the Top-5-wanted list and then they started such kind of work with a minimal man power.07:16
eumel8#link https://governance.openstack.org/tc/reference/top-5-help-wanted.html07:16
*** slaweq_ has quit IRC07:17
ianychoiI don't know detail background of zuul-v3 migration07:17
ianychoibut it seems that infra team might have identified first that such migration would not be too difficult07:18
ianychoiNow translation ratio is not high comparing to soft & hard stringfreezes. This is why I feel fine mightbe:)07:19
eumel8anyway, I try to support the guys and help what I can. For the translation jobs I gave a small repo as example for test. So no all repos will affected after the next try.07:19
ianychoieumel8, great :)07:19
eumel8true07:19
eumel8#topic I18n Jobs in Zuul-v307:20
*** openstack changes topic to "I18n Jobs in Zuul-v3 (Meeting topic: OpenStack I18n Meeting)"07:20
eumel8nevertheless we have also our own repo with our own gate checks in gerrit07:20
eumel8and we are now responsible for zuul v3 checks07:21
*** slaweq_ has joined #openstack-meeting07:21
eumel8 #link https://docs.openstack.org/infra/manual/zuulv3.html07:21
*** b1airo has quit IRC07:21
eumel8the old jobs are auto-converted and renamed as "legacy-*"07:22
eumel8note: I talk about the future07:22
ianychoiSo.. it means that i18n repo has zuul v3 check jobs?07:23
eumel8later, yes07:23
eumel8hopefully we get support or some examples how that will work07:24
ianychoiHmm what would be the due of having zuul v3 check jobs?07:24
*** gongysh has joined #openstack-meeting07:24
eumel8it's similar to doc migration: de-centralize and move out the things07:25
ianychoiI see - just curious that https://review.openstack.org/#/c/508587/ has a zuul section but https://review.openstack.org/#/c/509527/ does not07:25
*** ad_rien_ has quit IRC07:26
eumel8translation jobs are special07:27
*** rledisez has joined #openstack-meeting07:28
eumel8thats also broken at the moment: https://review.openstack.org/#/c/506795/07:28
eumel8wait for merge: https://review.openstack.org/#/c/509358/07:28
eumel8and there are hundreds of such changes :)07:29
*** chyka has joined #openstack-meeting07:30
eumel8ok, we will see what will happen07:32
ianychoiHmm... it is hard for me to follow hundreds of such changes.. anyway yes we will07:32
eumel8Just to raise this topic here without specific action point07:32
eumel8it works more or less in real time when the US guys are online07:33
*** ad_rien_ has joined #openstack-meeting07:34
eumel8but don't trust a review invitation in gerrit ;)07:34
eumel8ok, next07:34
*** iyamahat has quit IRC07:34
*** e0ne has joined #openstack-meeting07:34
eumel8#topic Doc/I18n Project Onboarding Session Sydney07:34
*** openstack changes topic to "Doc/I18n Project Onboarding Session Sydney (Meeting topic: OpenStack I18n Meeting)"07:34
*** chyka has quit IRC07:35
eumel8it seems we have a plan now07:35
ianychoiYou can ask reviews in #openstack-infra IRC channel, for example: "Hello infra-roots, would you review https://review.openstack.org/#/c/509358/ if you have time? It is important to go forward... bulabula..".07:35
ianychoiDocs team will attend?07:35
eumel8ianychoi: of course  - i have done this multiple times in the last days :)07:35
eumel8Schedule forecast Nov 06 2017 3:10-3:50 PM (after the Zanata Session)07:36
ianychoieumel8, haha yep you are so a good I18n PTL!07:36
eumel8Thats the time for the room reservation in Sydney07:36
*** alexchadin has joined #openstack-meeting07:37
eumel8Pattrick will be there and I think Alex (Zanata-Alex) also.07:37
ianychoiIf Docs team will not attend, I think setting a topic like "I18n Project Onboarding Session: Translation + Zanata" would get more attention07:37
eumel8And what I've wrote on email: it's only to have the room reservation first in the right time slot07:38
*** rledisez has left #openstack-meeting07:38
eumel8We will decide this in the afternoon together with the Docs team.07:38
*** ad_rien_ has quit IRC07:39
ianychoiI see07:39
eumel8but the reservation period has end yesterday07:40
eumel8#topic Open Discussion07:41
*** openstack changes topic to "Open Discussion (Meeting topic: OpenStack I18n Meeting)"07:41
ianychoiLet's see who will attend from Docs team for Docs/I18n project onboarding room. Previously, me and Alexandra Settle did it, and I think Docs+I18n people need to discuss what can we do for the session.07:41
*** markvoelker has quit IRC07:42
eumel8it will be a small event. Foundation expects only 2500 perticipants07:42
ianychoiAnd since rsimai is not here but in #openstack-i18n channel, I asked him about https://review.openstack.org/#/c/509595/07:43
ianychoiAha..07:43
ianychoiBut plz celebrate Tom Fifield: http://lists.openstack.org/pipermail/openstack-operators/2017-October/014321.html07:43
eumel8I'm too you in OpenStack age. Who is Tom Fifield?07:44
eumel8too young, I mean07:45
ianychoiHe is a community manager.07:45
ianychoihttps://blog.rackspace.com/how-i-contribute-to-openstack-nectars-tom-fifield07:45
ianychoiI met him first during user group activities but he influenced a lot to Docs team and I18n team07:46
*** jftalta has joined #openstack-meeting07:47
eumel8really?07:47
jftaltaHi !07:48
eumel8never heard07:48
ianychoijftalta, oh hi!07:48
eumel8jftalta!07:48
eumel8the core-core team is complete ;)07:48
ianychoieumel8, fine :) I think I met so many Foundation staff during my PTL activities. You would do that also if you feel happy with it :)07:48
jftaltaI managed to find a few minutes this morning to tell you hello ;)07:49
eumel8ianychoi: I'm already on that way :)07:49
ianychoijftalta, how are you going? :)07:49
ianychoieumel8, :)07:49
eumel8jftalta: nice! How it's going in France?07:49
jftaltaI'm fine, thanx :)07:50
jftaltahuge amount of work, but things are going well07:50
jftaltaand what about you ?07:50
*** toscalix has joined #openstack-meeting07:50
ianychoiAnd.. eumel8: I copied an e-mail to Kendall about Storyboard, and also asked to you for cross-project liaisons since I don't want you to all communicate with multiple project teams.07:50
eumel8oh, forgot to celebrate my new doc-core membership07:50
jftalta;)07:51
ianychoijftalta, wow.. same! :) Lots of work T.T07:51
ianychoiBut this week is so fine - great big holiday season in Korea07:51
eumel8jftalta: sex, drugs and openstack :-))07:51
jftaltaah ah ah07:51
jftaltabtw, did you know Tom Petty ?07:52
ianychoiTom Petty?07:52
eumel8some songs from the old days07:52
eumel8Tom Petty and the Heartbreaker07:53
jftaltaAmerican rock star. He died last monday07:53
jftaltaI was at his London concert in July. It was great07:53
ianychoiOh..07:53
eumel8only 6107:53
jftaltaSo sad...07:53
jftaltanon, 6707:53
*** ociuhandu has joined #openstack-meeting07:53
jftaltasorry, "no"07:53
*** vipul has quit IRC07:55
jftaltaDid you have a great PTG ?07:55
eumel8Yes, nice weather. 29 degrees07:55
eumel8and some jokes with a train rail near to the hotel07:55
jftalta:(07:56
jftaltaIt was in Denver,right ?07:56
eumel8not really07:56
eumel8somewhere outside from Denver07:56
jftaltaok07:56
eumel8free view of the land ;)07:56
ianychoiI will have a business trop from Oct 28 - Nov 07 in Oslo Norway. Germany and France should be near than Korea. :)07:56
jftaltaand vice-versa ;)07:57
eumel8Oslo has a nice airport07:57
eumel8the city is also nice. I had some hours left when I traveled from Boston07:57
jftaltamany electric cars, is not it ?07:58
ianychoiAha really?07:58
eumel8I heard it07:58
eumel8let's switch to i18n and make the room free for qa07:59
eumel8#endmeeting07:59
*** openstack changes topic to "OpenStack Meetings || https://wiki.openstack.org/wiki/Meetings"07:59
openstackMeeting ended Thu Oct  5 07:59:08 2017 UTC.  Information about MeetBot at http://wiki.debian.org/MeetBot . (v 0.1.4)07:59
openstackMinutes:        http://eavesdrop.openstack.org/meetings/openstack_i18n_meeting/2017/openstack_i18n_meeting.2017-10-05-07.00.html07:59
openstackMinutes (text): http://eavesdrop.openstack.org/meetings/openstack_i18n_meeting/2017/openstack_i18n_meeting.2017-10-05-07.00.txt07:59
openstackLog:            http://eavesdrop.openstack.org/meetings/openstack_i18n_meeting/2017/openstack_i18n_meeting.2017-10-05-07.00.log.html07:59
jftaltabye bye !08:00
gmann#startmeeting qa08:01
openstackMeeting started Thu Oct  5 08:01:37 2017 UTC and is due to finish in 60 minutes.  The chair is gmann. Information about MeetBot at http://wiki.debian.org/MeetBot.08:01
openstackUseful Commands: #action #agreed #help #info #idea #link #topic #startvote.08:01
*** openstack changes topic to " (Meeting topic: qa)"08:01
openstackThe meeting name has been set to 'qa'08:01
gmannwho all here today08:01
* andreaf lurking around but may have to drop off at some point o/08:02
*** jftalta has quit IRC08:02
*** bobmel_ has joined #openstack-meeting08:03
*** bobmel has quit IRC08:03
gmannmasayukig: chandankumar dmellado afazekas .08:03
*** Fouad_Benamrane_ has quit IRC08:04
masayukigo/08:04
masayukiggmann: thanks for your pinging :)08:04
*** eumel8 has left #openstack-meeting08:04
gmannlet's wait fro more min.08:05
* masayukig nods08:05
gmannmasayukig: np. :)08:05
*** markstur has joined #openstack-meeting08:06
martinkopeco/,  hi all08:06
gmannhi08:06
masayukig\o/08:07
gmannlet's start08:07
gmann#link https://wiki.openstack.org/wiki/Meetings/QATeamMeeting#Agenda_for_October_5th_2017_.280800_UTC.2908:07
gmann^^ today agenda08:07
gmann#topic Previous Meeting Action review08:08
*** openstack changes topic to "Previous Meeting Action review (Meeting topic: qa)"08:08
gmannno action item seems #link http://eavesdrop.openstack.org/meetings/qa/2017/qa.2017-09-28-17.00.html08:08
gmann#topic PTG Summary08:08
*** openstack changes topic to "PTG Summary (Meeting topic: qa)"08:08
gmann#link http://lists.openstack.org/pipermail/openstack-dev/2017-September/122295.html08:09
gmannPTg summary from andreaf . we almost cover those in last meeting08:09
gmanni would like to move further if there is nothing to discuss from anyon\e08:09
*** spectr has quit IRC08:09
*** spectr has joined #openstack-meeting08:09
andreafgmann: I submitted one session for the forum08:10
gmann#topic Forum Topics for Sydney Summit08:10
*** openstack changes topic to "Forum Topics for Sydney Summit (Meeting topic: qa)"08:10
andreafsame as Boston about input on QA tools from users / operators08:10
gmannandreaf: yea, now:)08:10
gmann#link http://forumtopics.openstack.org/cfp/details/5608:10
*** markstur has quit IRC08:10
andreafheh sorry08:10
gmannaone sessions andreaf submitted. i saw some more sessions on o-h feedback etc08:11
masayukigo-h feedback?08:11
gmannandreaf: we will be having onboarding sessions also. which should be coming out on ML soon08:11
*** Rockyg has quit IRC08:11
*** bobmel has joined #openstack-meeting08:12
andreafgmann: oh is it? ok I didn't see anything about it yet08:12
gmannthere is one mroe on stetrs from mtreinish08:12
gmann#link http://forumtopics.openstack.org/cfp/details/3408:12
gmann#link http://forumtopics.openstack.org/cfp/details/3508:13
*** bobmel_ has quit IRC08:13
masayukiggmann: andreaf: do we have a list of QA topics?08:14
*** bobmel_ has joined #openstack-meeting08:14
gmannmasayukig: for forum ?08:14
andreafmasayukig: not really, but I can add the links now back in the original etherpad08:15
masayukiggmann: yes, for forum08:15
gmanndeadline for final schedule fro forum is oct 3008:15
dmelladoo/08:15
dmelladohi guys, I'm late08:15
gmann#link https://etherpad.openstack.org/p/qa-sydney-forum-topics08:15
gmanndmellado: hi np08:15
masayukigandreaf: sounds nice08:15
gmannmasayukig: ^^ we did not had much topic this time. deadline to submit was sept 2908:16
*** bobmel has quit IRC08:16
*** spectr has quit IRC08:17
*** bobmel has joined #openstack-meeting08:17
masayukiggmann: thanks, I think it's good to gather the topic URLs08:17
gmannanything else on forum things08:17
andreaf#link https://etherpad.openstack.org/p/qa-sydney-forum-topics The etherpad with links08:17
gmannandreaf: thanks08:17
*** spectr has joined #openstack-meeting08:18
masayukigandreaf: thanks, I added the titles08:18
gmann#topic Bug triage08:19
*** openstack changes topic to "Bug triage (Meeting topic: qa)"08:19
gmannlike we discussed in PTG about bug triage things.08:19
gmannwe will go with Bug Czar approach08:19
gmannproposal is here08:20
gmann#link https://etherpad.openstack.org/p/qa-bug-czar08:20
*** bobmel_ has quit IRC08:20
gmannplease provide your feedback if you have any08:21
*** phil_ has joined #openstack-meeting08:21
andreafchandankumar graciously offered himself for the role08:21
*** Manuel_1_ has quit IRC08:21
*** phil_ is now known as Guest4637708:21
gmannyea, thanks chandankumar08:21
gmannBug review will be in office hours instead of qa meeting08:22
gmannwe need to select the appropriate time for office hour08:22
*** bobmel has quit IRC08:22
andreafgmann: right, I hope we can go through critical bugs in there and get actions for folks to take away :)08:22
gmannseems like 2 time proposal on etherpad08:23
*** bobmel has joined #openstack-meeting08:23
chandankumar\o/08:23
gmannandreaf: coeect08:23
andreafchandankumar o/08:23
gmann*correct08:23
*** bobmel has quit IRC08:23
*** bobmel has joined #openstack-meeting08:23
*** anilvenkata has joined #openstack-meeting08:23
chandankumarandreaf: gmann i will be dropping an email to openstack-dev mailing list regarding office hour and with etherpad link so that people can participate08:23
gmannchandankumar: we need to select the office hour timing08:24
*** anilvenkata has quit IRC08:24
gmann1 time proposal is 17UTC and other is 8 UTC08:24
*** anilvenkata has joined #openstack-meeting08:24
chandankumaras discussed yesterday above is the time08:24
gmannit will be biweekly, alternate to meeting day08:24
andreafchandankumar: before you do that I would like to send an email about QA czar and tell about what it will be08:24
chandankumarandreaf: sure08:25
dmelladoandreaf: qa czar?08:25
andreafso 17 UTC won't work for a lot of people right?08:25
gmannwith what time we are ok.08:25
gmannandreaf: yea08:25
andreafdmellado: qa bug czar08:25
dmelladoI'd love to hear about that08:25
gmannit is 2 Am for me and masayukig :)08:26
dmelladolooks like a fancy new title xD08:26
masayukigyeah08:26
andreafdmellado: https://etherpad.openstack.org/p/qa-bug-czar08:26
*** bobmel has quit IRC08:26
gmannandreaf: we can move it little bit late like 9UTC etc if 8UTC is too early for you08:26
*** bobmel has joined #openstack-meeting08:26
*** slaweq_ has quit IRC08:27
chandankumar9 UTC is also fine.08:27
andreafgmann: yeah 9 UTC would be easier for me if it works for you08:27
* masayukig was actually waking up last night 2am to watch the Google event, though :-p08:28
gmannyea works for me08:28
gmannmasayukig: 9UTC ok for you?08:28
*** ralonsoh has joined #openstack-meeting08:28
masayukiggmann: yeah, it works for me08:28
gmannok let's lock the 9 UTC for bug review office hour. on every alternate week.08:29
gmannone week qa meeting and next week office hour08:29
chandankumar+108:29
andreafgmann: cool thanks - it will be in the qa channel08:29
*** bobmel_ has joined #openstack-meeting08:29
gmannyea, in #opebnstack-qa08:30
*** bobmel_ has quit IRC08:30
gmannadded in etherpad also08:30
*** slaweq_ has joined #openstack-meeting08:31
gmann#action andreaf to float mail about bug czar introduction08:31
*** bobmel has quit IRC08:31
*** bobmel_ has joined #openstack-meeting08:31
andreafI will do that today08:31
gmannanything else ?08:31
gmannandreaf: thanks08:31
gmann#topic Tempest08:32
*** openstack changes topic to "Tempest (Meeting topic: qa)"08:32
gmann1. Test.py to be stable:08:32
gmannthis is dependent on object storage client to be moved to lib08:33
gmannthere is conflict for name conflict of service methods name08:33
gmann#link https://review.openstack.org/#/c/504439/08:33
gmannoomichi_afk: suggested to go with wrapper approach for create_* and keep update_* for PUT APi08:34
gmannit is long pending patch and we should merge it08:35
*** shu-mutou is now known as shu-mutou-AWAY08:35
gmannoomichi_afk: and andreaf discussed the best possible way over qa channel.08:35
gmanni will check with oomichi_afk  on create_update thing if i can catch him tonight08:36
gmannotherwise we will with same(wrapper) approach by tomorrow08:36
andreafgmann: thanks08:37
gmanni will make sure those pactches are ready by tomorrow08:37
gmannandreaf: do you have anything to review meanwhile for test.py ?08:37
andreafgmann: no, I will prepare a patch for it08:38
gmannok08:38
andreafgmann: it's going to be release notes / docs only08:38
gmannnice08:38
*** markvoelker has joined #openstack-meeting08:38
andreaf#action andreaf prepare a patch to make test.py stable08:39
gmannthanks08:39
gmann2. Scenario refactoring08:39
gmannzhufl is not here, but i saw she started working on this08:39
gmannmay be it will be good to have a common topic for that to make fast review08:40
gmanni will ping her once she is back from holiday08:40
gmannanything else on Tempest ?08:40
* andreaf has to leave, have a good rest of the meeting o/08:42
gmannok, let's move08:42
gmannandreaf: thanks.08:42
gmann#topic Critical Reviews08:42
*** openstack changes topic to "Critical Reviews (Meeting topic: qa)"08:42
gmannpaste your critical reviews here if you have any08:42
masayukigandreaf: I'd like to know about this https://review.openstack.org/#/c/509242/08:43
gmanni will have tomorrow about object service clients.08:44
gmannmasayukig: its for zullv3 migration right08:45
masayukigyeah, I was thinking about that, do we need this immediately?08:45
*** Manuel_112 has joined #openstack-meeting08:46
gmanni am not sure immediately  but we can review it08:46
masayukiggmann: yeah, is there any docs about zuulv3 to understand this patch?08:47
gmanni do not know. it is complete series08:48
gmann#link https://review.openstack.org/#/q/topic:zuulv3-tempest+(status:open+OR+status:merged)08:48
*** dfflanders has joined #openstack-meeting08:48
gmannwe can refer this series08:48
gmann#link https://review.openstack.org/#/q/topic:zuulv3+(status:open+OR+status:merged)08:48
masayukiggmann: ok, thanks, I'll check them08:49
gmannmasayukig: thanks08:49
masayukiggmann: https://docs.openstack.org/infra/zuul/ this is also useful?08:50
gmannyea thanks08:50
gmann#topic Open Discussion08:50
*** openstack changes topic to "Open Discussion (Meeting topic: qa)"08:50
*** bobmel_ has quit IRC08:51
gmannanything else anyone want to discuss08:51
gmannok, let's close the meeting if nothing else08:52
gmann3 ...08:52
gmann2 ..08:52
chandankumar2..08:52
masayukigheh08:52
gmann1 ..08:52
gmann:)08:52
gmannthanks all for joining08:52
masayukigo/08:52
gmann#endmeeting08:53
*** openstack changes topic to "OpenStack Meetings || https://wiki.openstack.org/wiki/Meetings"08:53
openstackMeeting ended Thu Oct  5 08:53:01 2017 UTC.  Information about MeetBot at http://wiki.debian.org/MeetBot . (v 0.1.4)08:53
openstackMinutes:        http://eavesdrop.openstack.org/meetings/qa/2017/qa.2017-10-05-08.01.html08:53
openstackMinutes (text): http://eavesdrop.openstack.org/meetings/qa/2017/qa.2017-10-05-08.01.txt08:53
openstackLog:            http://eavesdrop.openstack.org/meetings/qa/2017/qa.2017-10-05-08.01.log.html08:53
*** slaweq_ has quit IRC09:03
*** jbadiapa has quit IRC09:03
*** markvoelker has quit IRC09:12
*** alexchadin has quit IRC09:16
*** yamamoto has quit IRC09:16
*** alexchadin has joined #openstack-meeting09:16
*** jbadiapa has joined #openstack-meeting09:17
*** yamamoto has joined #openstack-meeting09:20
*** lbrune has quit IRC09:20
*** fzdarsky has joined #openstack-meeting09:23
*** vipul has joined #openstack-meeting09:24
*** slaweq_ has joined #openstack-meeting09:28
*** alexchadin has quit IRC09:30
*** lbrune has joined #openstack-meeting09:33
*** kiennt26 has quit IRC09:38
*** acoles has left #openstack-meeting09:40
*** acoles has joined #openstack-meeting09:40
*** mwarad has quit IRC09:47
*** chyka has joined #openstack-meeting09:54
*** chyka has quit IRC09:59
*** sdague has joined #openstack-meeting10:00
*** slaweq_ has quit IRC10:01
*** b1airo has joined #openstack-meeting10:01
*** yamamoto has quit IRC10:02
*** iyamahat has joined #openstack-meeting10:05
*** yamamoto has joined #openstack-meeting10:06
*** tovin07_ has quit IRC10:09
*** markvoelker has joined #openstack-meeting10:09
*** iyamahat has quit IRC10:11
*** slaweq_ has joined #openstack-meeting10:11
*** yamamoto has quit IRC10:12
*** alexchadin has joined #openstack-meeting10:12
*** wanghao has joined #openstack-meeting10:14
*** lbrune has quit IRC10:18
*** yamamoto has joined #openstack-meeting10:19
*** lbrune has joined #openstack-meeting10:22
*** wanghao has quit IRC10:27
*** alexchadin has quit IRC10:35
*** fzdarsky has quit IRC10:36
*** Manuel_112 has quit IRC10:39
*** yamamoto has quit IRC10:41
*** markvoelker has quit IRC10:42
*** chyka has joined #openstack-meeting10:45
*** chyka has quit IRC10:50
*** slaweq_ has quit IRC10:50
*** alexchadin has joined #openstack-meeting10:54
*** spectr has quit IRC10:54
*** Manuel_112 has joined #openstack-meeting10:59
*** yamamoto has joined #openstack-meeting11:01
*** Manuel_112 has quit IRC11:04
*** aloga has quit IRC11:04
*** aloga has joined #openstack-meeting11:04
*** priteau has joined #openstack-meeting11:05
*** yamamoto has quit IRC11:06
*** markstur has joined #openstack-meeting11:08
*** jprovazn has joined #openstack-meeting11:10
*** markstur has quit IRC11:12
*** alexchadin has quit IRC11:14
*** alexchadin has joined #openstack-meeting11:15
*** ociuhandu has quit IRC11:15
*** jkilpatr has joined #openstack-meeting11:15
*** slaweq_ has joined #openstack-meeting11:15
*** Manuel_112 has joined #openstack-meeting11:16
*** hemna_ has joined #openstack-meeting11:17
*** jkilpatr has quit IRC11:24
*** alexchadin has quit IRC11:27
*** alexchadin has joined #openstack-meeting11:35
*** fzdarsky has joined #openstack-meeting11:37
*** jkilpatr has joined #openstack-meeting11:38
*** marios has quit IRC11:38
*** markvoelker has joined #openstack-meeting11:39
*** marios has joined #openstack-meeting11:41
*** chyka has joined #openstack-meeting11:41
*** lbrune has quit IRC11:44
*** chyka has quit IRC11:45
*** ianychoi has quit IRC11:46
*** slaweq_ has quit IRC11:51
*** priteau has quit IRC11:53
*** priteau has joined #openstack-meeting11:53
*** priteau has quit IRC11:54
*** priteau has joined #openstack-meeting11:54
*** bobh has joined #openstack-meeting11:54
*** lbrune has joined #openstack-meeting11:58
*** yamamoto has joined #openstack-meeting12:00
*** dprince has joined #openstack-meeting12:08
*** alexchadin has quit IRC12:10
*** raildo has joined #openstack-meeting12:11
*** markvoelker has quit IRC12:12
*** edmondsw has joined #openstack-meeting12:13
*** edmondsw_ has joined #openstack-meeting12:16
*** tpsilva has joined #openstack-meeting12:16
*** edmondsw has quit IRC12:17
*** slaweq_ has joined #openstack-meeting12:18
*** pchavva has joined #openstack-meeting12:20
*** slaweq_ has quit IRC12:22
*** edmondsw_ has quit IRC12:22
*** lpetrut has joined #openstack-meeting12:23
*** bobh has quit IRC12:24
*** egallen has left #openstack-meeting12:24
*** alexchadin has joined #openstack-meeting12:27
*** markvoelker has joined #openstack-meeting12:28
*** edmondsw has joined #openstack-meeting12:29
*** b1airo has quit IRC12:29
*** bobmel has joined #openstack-meeting12:32
*** slaweq_ has joined #openstack-meeting12:33
*** edmondsw has quit IRC12:33
*** kota_ has left #openstack-meeting12:36
*** edmondsw has joined #openstack-meeting12:36
*** yamamoto has quit IRC12:39
*** yamamoto has joined #openstack-meeting12:41
*** Tom___ has joined #openstack-meeting12:41
*** SotK_ has joined #openstack-meeting12:41
*** Tom_____ has quit IRC12:42
*** links has quit IRC12:44
*** ekhugen has joined #openstack-meeting12:45
*** yamamoto has quit IRC12:46
*** SotK_ has left #openstack-meeting12:48
*** yamamoto has joined #openstack-meeting12:51
*** kylek3h has joined #openstack-meeting12:55
*** lbrune has quit IRC12:55
*** bobh has joined #openstack-meeting12:56
*** markstur has joined #openstack-meeting12:57
*** Manuel_112 has quit IRC12:58
*** mriedem has joined #openstack-meeting12:59
*** cloudrancher has quit IRC12:59
*** cloudrancher has joined #openstack-meeting13:00
*** Manuel_112 has joined #openstack-meeting13:00
*** Manuel_112 has quit IRC13:01
*** Manuel_112 has joined #openstack-meeting13:01
*** markstur has quit IRC13:02
*** spectr has joined #openstack-meeting13:02
*** noslzzp has joined #openstack-meeting13:05
*** yamamoto has quit IRC13:06
*** slaweq_ has quit IRC13:06
*** lbragstad has joined #openstack-meeting13:06
*** Manuel_112 has quit IRC13:07
*** lbrune has joined #openstack-meeting13:07
*** esberglu has joined #openstack-meeting13:09
*** eharney has joined #openstack-meeting13:12
*** Manuel_112 has joined #openstack-meeting13:13
*** bobmel has quit IRC13:15
*** slaweq_ has joined #openstack-meeting13:20
*** baoli has joined #openstack-meeting13:21
*** cdub has joined #openstack-meeting13:24
*** dewanee has joined #openstack-meeting13:24
*** gouthamr has joined #openstack-meeting13:25
*** awaugama has joined #openstack-meeting13:27
*** rbudden has joined #openstack-meeting13:28
*** erlon has joined #openstack-meeting13:28
*** fzdarsky has quit IRC13:31
*** coolsvap has quit IRC13:36
*** alexchadin has quit IRC13:38
*** Manuel_112 has quit IRC13:38
*** martinkopec has quit IRC13:39
*** alexchadin has joined #openstack-meeting13:39
*** spectr has quit IRC13:40
*** mriedem is now known as ronlund13:44
*** cloudrancher has quit IRC13:45
*** cloudrancher has joined #openstack-meeting13:45
*** alexchad_ has joined #openstack-meeting13:46
*** Manuel_112 has joined #openstack-meeting13:47
*** annp has joined #openstack-meeting13:47
*** alexchadin has quit IRC13:47
*** jaypipes has joined #openstack-meeting13:52
*** slaweq_ has quit IRC13:54
*** takashin has joined #openstack-meeting13:55
*** slaweq_ has joined #openstack-meeting13:57
*** spectr has joined #openstack-meeting13:57
*** ronlund is now known as mriedem13:58
*** hongbin has joined #openstack-meeting13:59
*** alexchad_ has quit IRC14:00
mriedem#startmeeting nova14:00
openstackMeeting started Thu Oct  5 14:00:14 2017 UTC and is due to finish in 60 minutes.  The chair is mriedem. Information about MeetBot at http://wiki.debian.org/MeetBot.14:00
openstackUseful Commands: #action #agreed #help #info #idea #link #topic #startvote.14:00
*** openstack changes topic to " (Meeting topic: nova)"14:00
openstackThe meeting name has been set to 'nova'14:00
mriedemhowdy14:00
dansmithohai14:00
edleafe\o14:00
takashino/14:00
mriedem#link agenda https://wiki.openstack.org/wiki/Meetings/Nova#Agenda_for_next_meeting14:01
mriedemguess we'll get started14:01
*** Manuel_112 has quit IRC14:01
mriedem#link Queens release schedule: https://wiki.openstack.org/wiki/Nova/Queens_Release_Schedule14:01
mriedemoops14:01
mriedem#undo14:01
openstackRemoving item from minutes: #link https://wiki.openstack.org/wiki/Nova/Queens_Release_Schedule14:01
mriedem#topic release news14:01
*** openstack changes topic to "release news (Meeting topic: nova)"14:01
*** andreas_s_ has joined #openstack-meeting14:01
mriedem#link Queens release schedule: https://wiki.openstack.org/wiki/Nova/Queens_Release_Schedule14:01
mriedem#info Oct 19: q-1 milestone, nova spec freeze (2 weeks away)14:01
*** hoangcx_ has joined #openstack-meeting14:02
mriedemtaking a minute to think about progress,14:02
mriedemthe efficient instance list main change is merged14:02
*** hoangcx_ has left #openstack-meeting14:02
mriedemso that's a major accomplishment14:02
dansmith\o/14:02
*** spzala has joined #openstack-meeting14:02
mriedemdansmith: jaypipes: edleafe: the alternate hosts stuff...thinking possible by q1?14:02
gmanno/14:02
andreas_s_o/14:03
edleafemriedem: very possible14:03
dansmithmriedem: it's not all proposed yet, so hard to say, but not impossible14:03
jaypipesmriedem: 2018 Q1, def.14:03
mriedemha14:03
jaypipesmriedem: :)14:03
jaypipesmriedem: yes, definitely queens-114:03
jaypipesmriedem: we're making good progress on it.14:03
mriedemalright, if the scheduler stuff could get done yet this week and conductor next, then yeah it's in good shape for q114:03
*** cdent has joined #openstack-meeting14:03
mriedemand the migration uuid stuff is moving along14:03
mriedemwe'll probably have traits done by q1 too once alex is back14:04
mriedembut moving on14:04
mriedem#info Blueprints: 50 targeted, 23 approved, 1 complete14:04
mriedem#link forum topics are being reviewed: http://forumtopics.openstack.org/14:04
mriedemso far there isn't a lot of feedback on the proposed topics14:04
mriedemi don't know when they are supposed to all be reviewed offhand14:04
mriedemhopefully soon14:04
* gibi arriving late14:05
mriedemanything for release news?14:05
mriedemok moving on14:05
mriedem#topic bugs14:05
*** openstack changes topic to "bugs (Meeting topic: nova)"14:05
mriedemnothing listed as critical14:05
mriedem#info 9 new untriaged bugs (up 3 from last week)14:05
mriedemgate status is sort of stable, after the zuulv3 rollback14:06
mriedemi'm still seeing random cellsv1 job failures, and there is a volume snapshot test in tempest that's randomly failing and doesn't have a fingerprint on it14:06
*** gongysh has quit IRC14:06
*** yamamoto has joined #openstack-meeting14:06
mriedemno news on 3rd party ci14:06
mriedem#topic reminders14:06
*** openstack changes topic to "reminders (Meeting topic: nova)"14:06
*** hshiina has joined #openstack-meeting14:06
mriedemonly reminder i have is review and promptly reply to feedback on specs14:06
mriedem#topic stable branch status14:07
*** openstack changes topic to "stable branch status (Meeting topic: nova)"14:07
mriedem#link stable/pike: https://review.openstack.org/#/q/status:open+project:openstack/nova+branch:stable/pike,n,z14:07
*** gongysh has joined #openstack-meeting14:07
mriedem#link Etherpad for bugs tracked for Pike backports: https://etherpad.openstack.org/p/nova-pike-bug-fix-backports14:07
* bauzas waves late14:07
mriedemlast i looked, most everything in ^ is proposed to stable/pike and/or approved on master14:07
*** spectr has quit IRC14:07
mriedemso once we flush through some of the stable/pike backports i'm going to do another release14:07
*** spectr has joined #openstack-meeting14:08
*** janki has quit IRC14:08
mriedemsince there are some pretty severe fixes that need to get released14:08
mriedem#link stable/ocata: https://review.openstack.org/#/q/status:open+project:openstack/nova+branch:stable/ocata,n,z14:08
mriedem#link stable/newton: https://review.openstack.org/#/q/status:open+project:openstack/nova+branch:stable/newton,n,z14:08
*** janki has joined #openstack-meeting14:08
mriedemi proposed the final novaclient release earlier in the week14:08
mriedemfor newton i mean14:08
mriedem#info Newton EOL postponed 1 week due to the zuulv3 issues http://lists.openstack.org/pipermail/openstack-dev/2017-October/123088.html14:08
mriedemso the new proposed newton-eol is oct 1814:09
mriedemso let's spend some time going through https://review.openstack.org/#/q/status:open+project:openstack/nova+branch:stable/newton,n,z14:09
mriedem#topic subteam highlights14:09
*** openstack changes topic to "subteam highlights (Meeting topic: nova)"14:09
mriedemdansmith: cells v2 highlights14:09
dansmithwe had a meeting,14:09
dansmithwhere we didn't discuss much given the events of the last week14:10
dansmithbut we did get instance list merged, and I haven't heard of any fallout from that yet, which is good14:10
dansmithwe pointed out that the consoles set is still up and needing review14:10
dansmithand only one usability bug reported recently that we could remember14:10
dansmithI think that's all14:11
mriedemok14:11
mriedemedleafe: scheduler highlights14:11
*** alexchadin has joined #openstack-meeting14:11
edleafeJay's nested resource provider spec merged; progress being made on the code for it14:11
edleafeSame with the alternate host stuff14:11
edleafeEOM14:11
edleafeJay has also started the work to remove the ORM stuff from placement14:11
edleafeChris's spec for limiting GET /rps just needs another +214:11
edleafeIn general, moving forward at a good clip.14:11
mriedemok14:12
efriedWhat's the status of the GET /allocation_candidates syntax with numbered resources & traits?14:12
efriedjaypipes ^14:12
efriedCause I noticed specs, including traits-in-flavors, getting pretty close to approval, but they're going to be impacted by that.14:13
*** yamamoto has quit IRC14:13
efriedLike, those specs should at least be looked at with that in mind.14:13
jaypipesefried: have not had time to do it. would definitely appreciate your help if you can hack it.14:14
efriedjaypipes Okay, I'll try to throw some words together.14:14
jaypipesefried: ty sir14:14
efried#action efried to start drafting numbered-resources-and-traits spec14:15
mriedemready to move on?14:15
efriedy14:15
*** gongysh has quit IRC14:15
mriedemok api14:15
mriedemalex_xu isn't around14:15
jaypipesedleafe: there's also johnthetubaguy's ironic traits spec, which is also close14:15
mriedemgmann: was there an api meeting this week?14:15
gmannmriedem: i can update14:15
gmannyea we had but short one14:15
gmann2 item we discussed14:15
edleafejaypipes: right-o14:15
jaypipes#link https://review.openstack.org/50705214:16
gmann1. extensions policies removal spec #link https://review.openstack.org/#/c/508101/14:16
mriedemExtensions Policies removal list feedback  - https://review.openstack.org/#/c/508101/14:16
gmannlooking for feedback on this14:16
gmannnext item is abort cold migration from takashin14:16
gmann#link https://review.openstack.org/#/c/33473214:16
gmannwe need consensus on return code.14:17
mriedemwhat is the issue?14:17
cdentgmann: I still need to read your response on that, haven’t had a chance to digest it yet14:17
gmanncurrent spec propose 400 in many case which can be 409. i agree with cdent on most of them14:17
gmannmriedem: its 400 vs 409. many of them are state conflict and 409 make sense there14:18
gmannactually it going 400 -> 409 -> 400 many times during review :)14:18
mriedemis it consistent with the return codes for canceling an in-progress live migration?14:18
mriedemor is there debate that the live migration abort return code is wrong too?14:18
gmannlive migration return 400 in one of the case which i feel(cdent too) should be 40914:18
gmannyea, there are multiple cases like task state, migration state , migration type etc14:19
edmondsw400 is supposed to mean the client requested something it shouldn't have, and should not repeat the request14:19
* bauzas disappears for 25+ mins14:20
gmannedmondsw: yea which can be first case L100 in spec14:20
mriedemok so we don't need to debate this in the meeting, it can happen in the spec14:21
*** fzdarsky has joined #openstack-meeting14:21
gmannyea14:21
edmondswgmann yep, sounds right14:21
gmannthat's all from api side.14:21
mriedemi would just like to be consistent between the live and cold migration stuff14:21
takashinokay14:21
mriedemso either conform, or change the live migration ones at the same time14:21
edmondswgmann I'll drop some comments in the extensions policies spec today... just started looking14:21
gmannmriedem: takashin it is proposing to change the live migration also L11114:22
mriedemok moving on14:22
gmannedmondsw: thansks.14:22
mriedemgibi: notifications14:22
gibiNo meeting this week14:22
gibiI have only two bug fixes to highlight:14:22
gibi#link https://review.openstack.org/#/q/status:open+project:openstack/nova+branch:master+topic:bug/171822614:22
gibi#link https://review.openstack.org/#/q/status:open+project:openstack/nova+branch:master+topic:bug/169911514:22
gibiThat is all14:22
*** nikhil_k has joined #openstack-meeting14:22
mriedemso brief14:22
mriedemso #1 is the bdm perf improvement stuff, easy reviews, +2 from me on the series14:23
*** nikhil_k is now known as nikhil14:23
gibiyes14:23
mriedem#2 is removing the dead api.faul notification stuff, broken since kilo?14:23
mriedembut also +2 from me14:23
gibimriedem: yes14:23
edmondswI think I saw some open notifications fixes in the stable newton/ocata links above as well needing reviews14:23
gibiedmondsw: I will go look at those, thanks14:23
mriedemyes, unrelated, but yes14:23
mriedemjust backports14:23
edmondswyep14:23
mriedemgibi: for the stuff that wasn't whitelisted b/c of lack of proper testing14:24
gibimriedem: OK14:24
*** Manuel_112 has joined #openstack-meeting14:24
mriedemalright moving on14:24
mriedemcinder stuff14:24
mriedem#link The new style attachment live migration patch needs a final +2 https://review.openstack.org/#/c/463987/14:24
mriedemjohn has been pinged14:24
mriedemstarting next week, ildikov will begin escalation procedures on him14:24
ildikovmriedem: +114:25
* johnthetubaguy hides14:25
mriedemand jgriffith is working a cinder spec for modeling shared connections for volumes14:25
*** lpetrut_ has joined #openstack-meeting14:25
mriedemlearn more in the nova/cinder xp meeting in 2.5 hours!14:25
mriedem#topic stuck reviews14:25
*** openstack changes topic to "stuck reviews (Meeting topic: nova)"14:26
mriedemnothing on the agenda - i guess the abort cold migrate spec is stuck for now14:26
mriedem#topic open discussion14:26
*** openstack changes topic to "open discussion (Meeting topic: nova)"14:26
*** tongl has joined #openstack-meeting14:26
mriedemhshiina: specless BP request: https://blueprints.launchpad.net/nova/+spec/ironic-volume-connector-ip14:26
mriedemThis is the remaining work of ironic booting from volume support in Pike: https://blueprints.launchpad.net/nova/+spec/ironic-boot-from-volume14:26
andreas_s_I have another short topic  for discussion after that14:27
*** lpetrut has quit IRC14:27
mriedemso i'm ok with that as a specless blueprint14:27
mriedemit's a single non-api change14:28
mriedemhttps://review.openstack.org/#/c/468353/14:28
hshiinamriedem, thanks14:28
*** Manuel_112 has quit IRC14:28
*** janki has quit IRC14:28
mriedemthere are some new virt driver methods https://review.openstack.org/#/c/468353/12/nova/virt/driver.py14:28
mriedemwhich only ironic would implement, of course14:28
mriedembut otherwise this doesn't look too bad14:29
mriedemmikal might be interested14:30
mriedembut moving on14:30
mriedemandreas_s_: z ci14:30
mriedemgo!14:30
andreas_s_It's about getting the kvm s390x (zkvm) third party ci back reporting.14:30
andreas_s_I posted a Mail on the ML: http://lists.openstack.org/pipermail/openstack-dev/2017-October/123100.html14:30
*** tongl has quit IRC14:30
*** slaweq_ has quit IRC14:30
andreas_s_so it's only about reporting (+1/-1), NOT voting14:31
mriedemok that's fine with me14:31
efriedTo be clear, voting but not gating14:31
andreas_s_yeah, not sure about terminology here ;)14:31
efried(or so I thought I saw someone else clarify in a separate ML thread)14:31
mriedemjust means you can't block a change from merging14:32
efried(I guess it's displayed as "non-voting"14:32
efried)14:32
mriedemok i'll add it to the nova-ci group14:32
andreas_s_great, thanks!14:32
mriedemandreas_s_: thanks for the details in the ML thread, and persisting14:32
mriedemok anything else?14:32
andreas_s_yw14:33
mriedemfor anyone14:33
efriedGetting allocations into spawn?14:33
*** trozet has quit IRC14:33
mriedem?14:33
efriedMaybe save that for the next scheduler meeting...14:33
edleafeefried: add it to the agenda14:34
efriedBrief discussion around here: http://eavesdrop.openstack.org/irclogs/%23openstack-nova/%23openstack-nova.2017-10-04.log.html#t2017-10-04T13:51:2514:34
mriedemif it's yet another 45 minute placement thing with jaypipes, yes save it for the scheduler meeting or nova channel14:34
efriedheh14:34
*** fzdarsky has quit IRC14:34
mriedemalright if nothing else, that's the meeting, thanks everyone14:34
mriedem#endmeeting14:34
*** openstack changes topic to "OpenStack Meetings || https://wiki.openstack.org/wiki/Meetings"14:34
openstackMeeting ended Thu Oct  5 14:34:53 2017 UTC.  Information about MeetBot at http://wiki.debian.org/MeetBot . (v 0.1.4)14:34
openstackMinutes:        http://eavesdrop.openstack.org/meetings/nova/2017/nova.2017-10-05-14.00.html14:34
openstackMinutes (text): http://eavesdrop.openstack.org/meetings/nova/2017/nova.2017-10-05-14.00.txt14:34
openstackLog:            http://eavesdrop.openstack.org/meetings/nova/2017/nova.2017-10-05-14.00.log.html14:34
*** fnaval has joined #openstack-meeting14:35
*** takashin has left #openstack-meeting14:35
*** gmann is now known as gmann_sleep14:35
*** hshiina has quit IRC14:36
*** felipemonteiro_ has joined #openstack-meeting14:37
*** alexchadin has quit IRC14:37
*** slaweq_ has joined #openstack-meeting14:38
*** felipemonteiro__ has joined #openstack-meeting14:38
*** armax has joined #openstack-meeting14:41
*** felipemonteiro_ has quit IRC14:42
*** VW has joined #openstack-meeting14:42
*** markstur has joined #openstack-meeting14:46
*** yamamoto has joined #openstack-meeting14:48
*** yamamoto has quit IRC14:48
*** tssurya has quit IRC14:49
*** markstur has quit IRC14:50
*** gyee has joined #openstack-meeting14:51
*** fzdarsky has joined #openstack-meeting14:55
*** Swami has joined #openstack-meeting14:58
*** ekhugen has quit IRC14:59
*** cdent has left #openstack-meeting14:59
*** ekhugen has joined #openstack-meeting15:01
*** mohankumar__ has quit IRC15:01
*** cdub has quit IRC15:03
*** gouthamr_ has joined #openstack-meeting15:03
*** markstur has joined #openstack-meeting15:03
*** gouthamr has quit IRC15:04
*** gouthamr_ is now known as gouthamr15:04
*** markstur has quit IRC15:05
*** Tom___ has quit IRC15:05
*** markstur has joined #openstack-meeting15:05
*** Tom has joined #openstack-meeting15:05
*** Tom has quit IRC15:10
*** fzdarsky has quit IRC15:10
*** trozet has joined #openstack-meeting15:10
*** slaweq_ has quit IRC15:11
*** slaweq_ has joined #openstack-meeting15:14
*** ekhugen has quit IRC15:15
*** galstrom_zzz is now known as galstrom15:18
*** andreas_s_ has quit IRC15:21
*** Manuel_112 has joined #openstack-meeting15:22
*** iyamahat has joined #openstack-meeting15:24
*** Alex_Staf has joined #openstack-meeting15:25
*** Manuel_112 has quit IRC15:26
*** iyamahat has quit IRC15:31
*** cody-somerville has joined #openstack-meeting15:32
*** diablo_rojo has joined #openstack-meeting15:32
*** julim has quit IRC15:35
*** julim has joined #openstack-meeting15:36
*** diablo_rojo has quit IRC15:39
*** hemna__ has joined #openstack-meeting15:39
*** pcaruana has quit IRC15:39
*** diablo_rojo has joined #openstack-meeting15:40
*** julim has quit IRC15:40
*** iyamahat has joined #openstack-meeting15:42
*** hemna_ has quit IRC15:42
*** hemna_ has joined #openstack-meeting15:43
*** hemna__ has quit IRC15:44
*** pkovar has joined #openstack-meeting15:44
*** jbadiapa has quit IRC15:45
*** hemna__ has joined #openstack-meeting15:46
*** slaweq_ has quit IRC15:46
*** tosky has joined #openstack-meeting15:46
*** chyka has joined #openstack-meeting15:47
*** hemna_ has quit IRC15:48
*** yamamoto has joined #openstack-meeting15:49
*** slaweq_ has joined #openstack-meeting15:51
*** spectr has quit IRC15:51
*** Manuel_112 has joined #openstack-meeting15:53
*** cody-somerville has quit IRC15:53
*** fzdarsky has joined #openstack-meeting15:54
*** cody-somerville has joined #openstack-meeting15:55
*** eumel8 has joined #openstack-meeting15:56
*** mohankumar has joined #openstack-meeting15:58
*** tongl has joined #openstack-meeting15:58
*** yamamoto has quit IRC15:58
*** baoli has quit IRC15:59
*** baoli has joined #openstack-meeting16:00
pkovar#startmeeting docteam16:00
openstackMeeting started Thu Oct  5 16:00:46 2017 UTC and is due to finish in 60 minutes.  The chair is pkovar. Information about MeetBot at http://wiki.debian.org/MeetBot.16:00
openstackUseful Commands: #action #agreed #help #info #idea #link #topic #startvote.16:00
*** openstack changes topic to " (Meeting topic: docteam)"16:00
openstackThe meeting name has been set to 'docteam'16:00
pkovarhello, who's around for today's meeting?16:01
eumel8hello!16:01
eumel8one guest, pls :)16:01
pkovaralright :)16:01
eumel8but I have no beer16:01
pkovarlet's give others 5 more mins16:02
eumel8ok16:02
pkovareumel8: will be served later i believe16:02
eumel8just arrived at home due some issues with the storm16:02
*** ianychoi_phone has joined #openstack-meeting16:02
*** noslzzp has quit IRC16:03
pkovarah, is everything okay?16:03
ianychoi_phoneo/16:03
pkovarits cloudy here, no storms yet16:03
eumel8yes, I'm alright. House and garden is also okay16:03
pkovarhi, ianychoi_phone16:03
jungleboyj@!16:03
_pewp_jungleboyj (。・∀・)ノ16:03
*** dprince has quit IRC16:03
ianychoi_phoneHi pkovar !16:03
ianychoi_phonejungleboyj: hello :)16:03
eumel8hi ianychoi, jungleboy16:04
ianychoi_phoneeumel8: :)16:04
*** dprince has joined #openstack-meeting16:05
pkovarokey, let's start with agenda16:05
pkovar#topic Action items from the last meeting16:05
*** openstack changes topic to "Action items from the last meeting (Meeting topic: docteam)"16:05
*** lbrune has quit IRC16:05
pkovarwe didn't have a mtg two weeks ago16:05
pkovarso let's do a sum up for ptg in denver16:06
pkovarDenver PTG Summary for Docs (and i18n)16:06
pkovar#link http://lists.openstack.org/pipermail/openstack-i18n/2017-September/003085.html16:06
pkovarthat's the summary email i sent to our MLs16:06
pkovarwith what i consider most important16:06
*** noslzzp has joined #openstack-meeting16:07
pkovarin terms of decisions / action items16:07
pkovarfor more details, we have two etherpads with discussions16:07
pkovar#link https://etherpad.openstack.org/p/docs-i18n-ptg-queens16:07
pkovar#link https://etherpad.openstack.org/p/doc-future-problems16:07
pkovari know, next time we will just use one16:08
pkovarJimmy updated our vision document draft16:08
pkovarand emailed the dev ML16:08
pkovarso please comment and share your feedback16:08
jungleboyjSaw that, trying to find time to get through it.16:08
pkovarit's a WIP though16:09
ianychoi_phone#link http://lists.openstack.org/pipermail/openstack-dev/2017-October/123140.html16:09
pkovarwill add more udpates to the draft later16:09
pkovarthanks!16:09
ianychoi_phoneIs it related with PTG result?16:09
pkovar#link https://docs.google.com/document/d/1Xy78CnmnKlQ7SbR1XewqgrUdGe7DqnKAGYw_9aj5Ndg/edit#16:10
pkovaris the link to the draft which we worked on at the ptg16:10
pkovarwe worked in groups and then shared the results with others in the room16:10
pkovarand agreed to work some more on the draft with Jimmy16:10
pkovarand share with the community16:11
ianychoi_phoneI see - I want to be more align with that although I didn't attend to last PTG16:11
*** julim has joined #openstack-meeting16:11
pkovarianychoi_phone: if the current draft is not very clear and could use some more work, please let us know16:12
*** diablo_rojo has quit IRC16:12
ianychoi_phonepkovar: i will - thank u?16:12
ianychoi_phone!16:12
pkovarwhen this draft is finalized and approved by the community, we'd like to update our docs tags16:12
*** kylek3h has quit IRC16:12
*** kylek3h has joined #openstack-meeting16:12
*** rcernin has quit IRC16:13
*** rcernin has joined #openstack-meeting16:13
*** psachin has quit IRC16:14
pkovarso that it aligns with what the docs team currently does16:14
pkovarso there will be a new docs spec proposed, etc.16:14
*** rcernin has quit IRC16:14
pkovarcomments on the team vision?16:15
ianychoi_phoneNope yet16:15
*** marios has quit IRC16:15
pkovaras for eol / retention policy16:15
pkovardoug created a spec draft16:15
pkovarso you can comment on that16:15
pkovar#link https://review.openstack.org/#/c/507629/16:16
pkovarat the ptg, ppl agreed to resurrect mitaka docs16:16
pkovarand stop deleting unsupported docs going forwards16:16
*** xyang1 has joined #openstack-meeting16:16
pkovarforward, rather16:16
pkovarfrom the docs site16:17
asettleo/16:17
asettleSounds good16:17
*** e0ne has quit IRC16:17
pkovarso, share your thoughts or +1's -1's etc.16:17
*** Rockyg has joined #openstack-meeting16:18
*** Guest46377 has quit IRC16:18
pkovaranything else we want to cover for ptg topics?16:18
*** xyang1 has quit IRC16:19
*** Apoorva has joined #openstack-meeting16:19
asettleNothing coming to mind right now16:19
pkovarcool :)16:20
pkovarmoving on16:20
pkovar#topic Bug Triage Team16:20
*** openstack changes topic to "Bug Triage Team (Meeting topic: docteam)"16:20
pkovaryou can still sign up at https://wiki.openstack.org/wiki/Documentation/SpecialityTeams16:20
pkovarif you want to help with bugs16:20
*** xyang1 has joined #openstack-meeting16:20
pkovarif nobody takes  9 Oct - 23 Oct  i will do it :)16:21
pkovaractually, i should also add we agreed to move older bugs to project components where applicable16:21
pkovarat the ptg i mean16:21
pkovarso if you spot a bug that's related to content moved to project repos during the grand migration16:22
pkovarplease move the bug accordingly :)16:22
* eumel8 is looking at Bug Triage page16:23
*** ianychoi_phone has quit IRC16:23
pkovarah, did we lose ianychoi? the next topic is about pdfs :/16:24
*** slaweq_ has quit IRC16:24
pkovarokay, let's first discuss sydney summit then, k?16:25
pkovar#topic Sydney Summit16:25
*** openstack changes topic to "Sydney Summit (Meeting topic: docteam)"16:25
*** slaweq_ has joined #openstack-meeting16:26
pkovarso there's a shared docs + i18n session planned for onboarding16:26
pkovarnew contributors16:26
pkovarthen we have a project update session16:26
pkovarand three forum topics to cover during the week16:26
pkovarone is about release notes16:27
pkovarthen ops guide16:27
pkovarand finally install guide testing16:27
pkovarno final schedule available16:27
pkovarthe update is that i'll eventually be there16:27
pkovarwho else is going?16:28
pkovarlet me add that the release notes session is to be run by Sylvain Bauza16:29
jungleboyjI will be there.16:29
jungleboyjSorry for slow responses.  In two meetings.16:29
*** egallen_ has joined #openstack-meeting16:29
pkovarand the ops session by Erik McCormick16:29
*** tesseract has quit IRC16:29
pkovarno worries, jungleboyj16:29
eumel8just to mention the onboarding session will be on Monday, Nov 6.16:29
pkovarmy understanding is that these need to be approved first though16:30
pkovarthat hasn't happened yet16:30
*** Manuel_112 has quit IRC16:30
pkovarthanks, eumel816:30
pkovarand we will have some translators there to cover the i18n part, right16:30
eumel8it's to 90 % :-)16:30
pkovar90% sounds cool16:30
*** ralonsoh has quit IRC16:31
eumel8We have the Australian Zanata guys there16:31
pkovari will let the group know when the docs sessions get approved, ofc16:31
pkovarah, that's right16:31
pkovari believe they are mostly based in brisbane16:31
pkovargood, good16:32
*** xyang1 has quit IRC16:32
*** Manuel_112 has joined #openstack-meeting16:33
*** gouthamr_ has joined #openstack-meeting16:33
pkovarokay, so that's what i have for now for summit16:33
pkovarcomments? thoughts?16:33
eumel8no16:33
*** xyang1 has joined #openstack-meeting16:34
pkovarshall we talk about pdfs?16:34
pkovaris Ian online?16:34
eumel8maybe shift 10 min later16:34
eumel8I think he is also at the way to home16:35
pkovari don't have other topics than open discussion16:35
*** gouthamr has quit IRC16:35
pkovaron the agenda16:35
pkovar#topic Open discussion16:35
*** openstack changes topic to "Open discussion (Meeting topic: docteam)"16:35
*** Tom_ has joined #openstack-meeting16:36
eumel8normaly he has a short outage and after that he is mostly back online16:36
*** lbrune has joined #openstack-meeting16:36
pkovarso if we don't have other topics to discuss, let me share some pdf links with the group and see if he gets back :)16:36
eumel8ok16:37
*** Swami has quit IRC16:37
pkovar#topic PDF builds16:37
*** openstack changes topic to "PDF builds (Meeting topic: docteam)"16:37
pkovarat the ptg the group agreed to provide pdf builds for project docs as well16:37
pkovar#link http://lists.openstack.org/pipermail/openstack-dev/2017-October/123076.html16:38
pkovarIan went ahead and started a review here: https://review.openstack.org/#/c/509297/16:38
pkovar#link https://review.openstack.org/#/c/509297/16:38
pkovaryes, it's a wip16:38
*** baoli has quit IRC16:39
pkovarthank you goes to Ian16:40
pkovarso, let's wait for 5 more mins and then end the mtg?16:40
*** Tom_ has quit IRC16:40
eumel83 assignees. Who are the other 2?16:41
pkovari'm not sure, actually16:42
eumel8and gate check error16:43
pkovaroh yeah, that could be another topic16:43
eumel8maybe a new directory for queens which is not covered by the script16:43
pkovarwe've been getting many of those16:43
pkovarrecently16:43
pkovar"pdf-unified-doc-builds.rst:document isn't included in any toctree"16:44
eumel8yeah16:44
*** baoli has joined #openstack-meeting16:44
pkovarso we should add it to index, basically16:44
*** spzala has quit IRC16:44
pkovarbut it's a wip16:44
pkovaranything else, anybody?16:47
eumel8https://github.com/openstack/docs-specs/tree/master/specs16:48
eumel8there is no queens dir16:49
jungleboyjQuck question about doc build.16:49
jungleboyjHas anyone seen an error like this before?  http://logs.openstack.org/50/507650/1/check/gate-python-cinderclient-docs-ubuntu-xenial/8c7a332/console.html#_2017-10-05_14_41_56_68137516:49
pkovareumel8: okay, i got confused by the tree structure16:49
*** ricolin has quit IRC16:50
*** tesseract has joined #openstack-meeting16:50
pkovarjungleboyj: nope, did you really reach that limit? 1000?16:50
eumel8jungleboyj: nope16:50
jungleboyjNot sure.  Happened in the check.  I think I had maybe seen that once building locally a lot time ago but don't know what caused it.16:51
jungleboyjGuess we will just see if it happens again.16:51
pkovarplease let the group know if that happens16:52
eumel8very strange16:52
pkovaryeah16:52
*** Manuel_112 has quit IRC16:52
jungleboyjpkovar:  Will do.16:53
jungleboyjDon't trust anything from the gate right now.  :-)16:54
pkovarright! :)16:54
eumel8++16:54
eumel8just wondering, the output comes from zuul, but it's an jenkins job16:55
*** Manuel_112 has joined #openstack-meeting16:56
eumel8so, it seems ianychoi will not come back16:56
*** annp has quit IRC16:56
pkovarlet's catch him on irc or ML then16:57
*** csomerville has joined #openstack-meeting16:57
eumel8yeah16:57
*** slaweq_ has quit IRC16:58
pkovarokay, thanks for attending, everybody, and for your work on openstack!16:58
*** toscalix has quit IRC16:58
eumel8thx for the meeting :)16:58
pkovarnext mtg in two weeks16:58
eumel8alright16:59
pkovar#endmeeting16:59
*** openstack changes topic to "OpenStack Meetings || https://wiki.openstack.org/wiki/Meetings"16:59
*** cody-somerville has quit IRC16:59
openstackMeeting ended Thu Oct  5 16:59:11 2017 UTC.  Information about MeetBot at http://wiki.debian.org/MeetBot . (v 0.1.4)16:59
openstackMinutes:        http://eavesdrop.openstack.org/meetings/docteam/2017/docteam.2017-10-05-16.00.html16:59
openstackMinutes (text): http://eavesdrop.openstack.org/meetings/docteam/2017/docteam.2017-10-05-16.00.txt16:59
openstackLog:            http://eavesdrop.openstack.org/meetings/docteam/2017/docteam.2017-10-05-16.00.log.html16:59
*** jamesmcarthur has joined #openstack-meeting17:00
jamesmcarthuro/17:00
*** tosky has left #openstack-meeting17:01
*** VW has quit IRC17:02
*** cloudrancher has quit IRC17:06
*** slaweq_ has joined #openstack-meeting17:07
*** ijw has joined #openstack-meeting17:07
*** Manuel_112 has quit IRC17:07
*** cloudrancher has joined #openstack-meeting17:07
*** iyamahat has quit IRC17:08
*** fzdarsky is now known as fzdarsky|afk17:09
*** Swami has joined #openstack-meeting17:09
*** jamesmcarthur has quit IRC17:09
*** yamamoto has joined #openstack-meeting17:11
*** eumel8 has left #openstack-meeting17:12
*** pkovar has quit IRC17:14
*** bobmel has joined #openstack-meeting17:14
*** pkovar has joined #openstack-meeting17:15
*** noslzzp has quit IRC17:15
*** Tom____ has joined #openstack-meeting17:16
*** sshank has joined #openstack-meeting17:19
*** Tom____ has quit IRC17:21
*** tesseract has quit IRC17:22
*** sshank has quit IRC17:24
*** sshank has joined #openstack-meeting17:24
*** SumitNaiksatam has quit IRC17:24
*** iyamahat has joined #openstack-meeting17:25
*** markmcclain has quit IRC17:26
*** sshank has quit IRC17:28
*** markmcclain has joined #openstack-meeting17:29
*** mohankumar has quit IRC17:29
*** acoles has left #openstack-meeting17:30
*** raildo has quit IRC17:31
*** e0ne has joined #openstack-meeting17:35
*** lbragstad has quit IRC17:37
*** sshank has joined #openstack-meeting17:39
*** slaweq_ has quit IRC17:40
*** lpetrut_ has quit IRC17:41
*** e0ne has quit IRC17:42
*** slaweq_ has joined #openstack-meeting17:43
*** yamahata has joined #openstack-meeting17:43
*** raildo has joined #openstack-meeting17:47
*** SumitNaiksatam has joined #openstack-meeting17:51
*** julim has quit IRC17:51
*** pkovar has quit IRC17:55
*** claudiub has quit IRC17:57
*** galstrom is now known as galstrom_zzz17:59
*** SumitNaiksatam has quit IRC18:00
*** mohankumar has joined #openstack-meeting18:01
*** SumitNaiksatam has joined #openstack-meeting18:01
*** cloudrancher has quit IRC18:01
*** cloudrancher has joined #openstack-meeting18:02
*** galstrom_zzz is now known as galstrom18:05
*** galstrom is now known as galstrom_zzz18:05
*** Tom___ has joined #openstack-meeting18:07
*** galstrom_zzz is now known as galstrom18:08
*** lbragstad has joined #openstack-meeting18:10
*** julim has joined #openstack-meeting18:10
*** dustins has joined #openstack-meeting18:10
*** Tom___ has quit IRC18:11
*** diablo_rojo has joined #openstack-meeting18:12
*** slaweq_ has quit IRC18:16
*** ijw has quit IRC18:16
*** e0ne has joined #openstack-meeting18:18
*** julim has quit IRC18:18
*** julim has joined #openstack-meeting18:19
*** diablo_rojo has quit IRC18:19
*** electrofelix has quit IRC18:20
*** slaweq_ has joined #openstack-meeting18:20
*** VW has joined #openstack-meeting18:23
*** e0ne has quit IRC18:23
*** yamamoto has quit IRC18:24
*** yamamoto has joined #openstack-meeting18:27
*** lpetrut_ has joined #openstack-meeting18:29
*** nikhil has quit IRC18:32
*** yamamoto has quit IRC18:32
*** sambetts|afk has quit IRC18:33
*** galstrom is now known as galstrom_zzz18:33
*** sambetts_ has joined #openstack-meeting18:36
*** ijw has joined #openstack-meeting18:39
*** ijw has quit IRC18:41
*** slaweq_ has quit IRC18:53
*** pkovar has joined #openstack-meeting18:55
*** slaweq_ has joined #openstack-meeting18:56
*** Tom___ has joined #openstack-meeting18:57
*** Tom___ has quit IRC19:02
*** baoli has quit IRC19:02
*** baoli has joined #openstack-meeting19:02
*** diablo_rojo has joined #openstack-meeting19:11
*** Rockyg has quit IRC19:12
*** sshank has quit IRC19:13
*** markvoelker_ has joined #openstack-meeting19:15
*** markvoelker has quit IRC19:15
*** slaweq_ has quit IRC19:22
*** slaweq_ has joined #openstack-meeting19:23
*** bill_az has joined #openstack-meeting19:37
*** Tom___ has joined #openstack-meeting19:38
*** pchavva has quit IRC19:39
*** diablo_rojo has quit IRC19:41
*** Tom___ has quit IRC19:42
*** JudeC has joined #openstack-meeting19:47
*** baoli has quit IRC19:48
*** baoli has joined #openstack-meeting19:49
*** dustins has quit IRC19:56
*** dustins has joined #openstack-meeting19:56
*** xyang1 has quit IRC20:00
*** xyang1 has joined #openstack-meeting20:00
*** ianw|pto is now known as ianw20:00
*** jkilpatr has quit IRC20:03
*** jprovazn has quit IRC20:06
*** eharney has quit IRC20:07
*** edmondsw has quit IRC20:07
*** edmondsw has joined #openstack-meeting20:08
*** edmondsw_ has joined #openstack-meeting20:09
*** artom has quit IRC20:09
*** artom has joined #openstack-meeting20:10
*** edmondsw has quit IRC20:12
*** edmondsw_ has quit IRC20:14
*** fzdarsky|afk has quit IRC20:18
*** jamemcc_ has quit IRC20:21
*** jkilpatr has joined #openstack-meeting20:22
*** jamemcc_ has joined #openstack-meeting20:22
*** galstrom_zzz is now known as galstrom20:26
*** sshank has joined #openstack-meeting20:26
*** lbragstad has quit IRC20:30
*** unicell has joined #openstack-meeting20:34
*** Tom has joined #openstack-meeting20:38
*** edmondsw has joined #openstack-meeting20:40
*** lbragstad has joined #openstack-meeting20:40
*** Tom has quit IRC20:43
*** gouthamr_ has quit IRC20:44
*** Patifa has quit IRC20:47
*** priteau has quit IRC20:49
*** priteau has joined #openstack-meeting20:50
*** davidsha has joined #openstack-meeting20:51
*** lpetrut_ has quit IRC20:55
*** Patifa has joined #openstack-meeting20:57
*** priteau has quit IRC20:59
*** slaweq_ has quit IRC21:00
*** slaweq_ has joined #openstack-meeting21:00
*** Patifa has quit IRC21:04
*** lbrune has quit IRC21:04
*** mlavalle has joined #openstack-meeting21:10
*** Patifa has joined #openstack-meeting21:10
*** Patifa has quit IRC21:10
*** rajinir is now known as rajinir-afk21:11
*** aeng has joined #openstack-meeting21:14
*** Patifa has joined #openstack-meeting21:15
*** dustins has quit IRC21:16
*** baoli has quit IRC21:19
*** rcernin has joined #openstack-meeting21:22
*** raildo has quit IRC21:22
*** dprince has quit IRC21:23
*** b1airo has joined #openstack-meeting21:23
*** Tom_ has joined #openstack-meeting21:29
*** Tom_ has quit IRC21:33
*** sgrasley1 has quit IRC21:35
*** sgrasley2 has joined #openstack-meeting21:35
*** esberglu has quit IRC21:36
*** sgrasley2 is now known as sgrasley121:37
*** edmondsw has quit IRC21:41
*** edmondsw has joined #openstack-meeting21:41
*** gouthamr has joined #openstack-meeting21:43
*** edmondsw has quit IRC21:46
*** felipemonteiro__ has quit IRC21:46
*** julim_ has joined #openstack-meeting21:49
*** julim has quit IRC21:49
*** Patifa has quit IRC21:51
*** slaweq_ has quit IRC21:55
*** Patifa has joined #openstack-meeting21:56
*** Patifa has quit IRC21:58
mlavalle#startmeeting neutron_drivers22:00
openstackMeeting started Thu Oct  5 22:00:13 2017 UTC and is due to finish in 60 minutes.  The chair is mlavalle. Information about MeetBot at http://wiki.debian.org/MeetBot.22:00
openstackUseful Commands: #action #agreed #help #info #idea #link #topic #startvote.22:00
*** openstack changes topic to " (Meeting topic: neutron_drivers)"22:00
openstackThe meeting name has been set to 'neutron_drivers'22:00
armaxhello22:00
*** ihrachys has joined #openstack-meeting22:00
mlavallehey22:00
*** bill_az has quit IRC22:00
ihrachysssup22:00
mlavalleamotoki, yamamoto: ping22:00
mlavallelet's wait a copuple of minutes for amotoki and yamamoto22:02
ihrachysok22:02
amotokihi, sorry for late22:03
*** Nel1x has joined #openstack-meeting22:03
mlavallenp problem amotoki, thanks for attending22:04
mlavalleI don't see yamamoto, so let's get going22:04
*** Patifa has joined #openstack-meeting22:04
mlavalleThe agenda is here: https://wiki.openstack.org/wiki/Meetings/NeutronDrivers#Agenda22:05
mlavalle#topic Alternate time meeting22:05
*** openstack changes topic to "Alternate time meeting (Meeting topic: neutron_drivers)"22:05
mlavalleyesterday armax and I had a conversation about looking for a time slot alternative22:05
mlavallearmax problem is that early morning hist time is when he can work with his Suse counterparts in Europe22:06
mlavalleso he proposes to "share the pain", alternating the meeting time22:06
*** rcernin has quit IRC22:06
ihrachysI am fine22:07
mlavallethe same way we do with the Neutron meeting22:07
ihrachysso this slot and some early CA, US one?22:07
mlavalleyes22:07
mlavalleit would have to be sustainable when we fallback to standard time in the US22:08
armaxso 2pm UTC22:08
armaxand 10pm UTC22:08
armaxevery other week22:08
*** baoli has joined #openstack-meeting22:08
armaxor 1400UTC and 2200 UTC I should say22:08
mlavallethe present meeting is at 2200utc22:08
mlavalledoes 1400UTC work for you, armax, when we fallback to standard time22:09
mlavalle?22:09
armaxthat would be 6am, I don’t typically function at that time22:09
armaxeven if I am awake22:09
mlavallehow about 1500UTC22:09
armaxbut the problem for me is that the mornings from 7am to 10am are loocked up22:09
*** Tom_ has joined #openstack-meeting22:10
mlavallearmax: so on the alternate week you wouldn't attend?22:10
*** aeng has quit IRC22:10
armaxthe reason to alternate is to allow the rest of the team to meet in a time you all are comforable with22:10
armaxand I would be able to engage half the time22:11
armaxmlavalle: right, unless I happen to travel and I am in a funny timezone :)22:11
mlavalleihrachys: what are your thoughts?22:11
*** baoli has quit IRC22:12
mlavalleamotoki: does 1400UTC work for you?22:12
ihrachyswell I am fine with the change if it helps to keep armax involved and is better for Asian fellas22:12
amotokiI am okay with either. 14or15UTC is easier to attend.22:12
ihrachysI enjoy mornings, so it's to the better for me22:12
*** baoli has joined #openstack-meeting22:12
mlavalleand I understand that yamamoto also prefers 1400UTC22:13
armaxright, I think we should give this a try22:13
armaxand see if we can engage a few other folks who may be interested in attending but are not in US timezones22:13
mlavalleand at the same time, we allow people in the US East cost, Europe and Middle East to attend the meeting every two weeks22:13
haleybi'm in a US timezone and have trouble at this time :)22:14
mlavalleI know haleyb is interested in attending22:14
*** Tom_ has quit IRC22:14
mlavalleok, let's give it a try22:14
*** yamamoto has joined #openstack-meeting22:14
armaxhaleyb: right22:15
mlavallenext week will be our first alternate session22:15
*** bobh has quit IRC22:15
armaxso early mornings may gather a larger crowd22:15
mlavalleearly morning US time, that is22:15
yamamotohi22:16
mlavallehey yamamoto22:16
ihrachysmlavalle, make sure you send the patch for irc-meetings repo earlier22:16
ihrachysso that we have ical files in advance22:16
mlavalleihrachys: I'll do it tonight or tomorrow morning22:16
ihrachysand cancel meetings if there is overlap22:16
ihrachysdo we need a doodle?22:16
ihrachysto pick a day22:16
mlavallebefore that, maybe Thursday already works22:17
mlavallethat was my assumption22:17
armaxmlavalle: we should look at what’s available in the openstack calendar22:17
amotokias far as I checked, 1400UTC Thursday next week is only used by one meeting, so it would be no problem22:17
armaxbut I assume you already thought of that :)22:17
mlavalle^^^^22:18
amotokisorry.... I see a wrong slsot22:18
ihrachysneutron-upgrades meeting is in the same slot22:18
ihrachyson Thu22:18
amotokiall five meeting channels seems to be used already..22:18
*** ianychoi_phone has joined #openstack-meeting22:18
*** ianychoi_phone has quit IRC22:19
ihrachysUS mornings are usually packed because of sync with Europe22:19
mlavalleok, so I have to fix the meeting room problem22:19
mlavalleI'll work on that as soon as we finish this meeting22:20
mlavalleyamamoto: does 1400UTC work better for you?22:20
armaxwe need to increase timezones22:20
*** fnaval has quit IRC22:20
yamamotomlavalle: it's fine22:20
armaxby moving to mars22:21
ihrachysarmax, or just get another channel22:21
mlavallethe idea is to alternante between 2200UTC and 1400UTC22:21
armaxihrachys: too simple22:21
ihrachysor hold them in #openstack-neutron channel22:21
armaxihrachys: you gotta think bolder22:21
ihrachysactually, that wouldn't be that bad22:21
armaxihrachys: there’s no nice logging that way22:21
armaxis there?22:21
amotokiwe can use a project channel for meetings now. meeting bot is there22:21
armaxamotoki: that makes it hard to index the meeting logs22:22
armaxthough, no?22:22
amotokifwaas team moved their meeting to #neutron-fwaas and it works.22:22
ihrachysI think it was even encouraged somewhere, but I struggle to find the email22:22
*** Patifa has quit IRC22:22
amotokiarmax: we can use the same title, but I am not sure how gerrit bot can pollute our logs..22:22
armaxum22:22
mlavalleI'll ask xgerman and sridar thei experience22:22
armaxthat might work22:22
armaxit’s worth a try at least once22:23
armaxand see how we do22:23
ihrachysthe "[openstack-dev] [tc][all] Move away from meeting channels" thread22:23
ihrachyshttp://lists.openstack.org/pipermail/openstack-dev/2017-June/118899.html22:23
armaxihrachys: I still think we should move to mars22:23
ihrachysarmax, well, it's 2024 no?22:23
armaxit’s not impractical at all22:23
ihrachysgotta have some interim solution22:23
armaxactually22:23
armaxlet me try something22:23
* ihrachys fastened seatbelts22:24
armaxso22:24
armaxhttp://eavesdrop.openstack.org/meetings/neutron_drivers/2017/neutron_drivers.2017-10-05-22.24.log.txt22:24
armaxwe’re good22:24
amotokiI was surprised that two same name meetings can be started22:25
*** awaugama has quit IRC22:25
mlavalleok, let's give it a try next week22:25
armaxthe danger is the noise that comes from people interleaved messages22:25
armaxunless we tell them to BACK OFF!22:25
armaxa tad rude, but that works22:25
mlavallein the alternate time slot22:25
mlavalleI'll still see if I can get a meeting room22:25
armaxmlavalle: sounds good to me22:25
*** Patifa has joined #openstack-meeting22:26
armaxmlavalle: shall I get quotes for tickets to mars?22:26
armaxwho’s coming?22:26
mlavalleI'll go22:26
armaxsweet22:26
mlavalle#topic Triaged bugs22:26
*** openstack changes topic to "Triaged bugs (Meeting topic: neutron_drivers)"22:27
mlavalleTriaged bugs to discuss today are here: https://bugs.launchpad.net/neutron/+bugs?field.status%3Alist=Triaged&field.tag=rfe22:27
mlavalleFirst up is https://bugs.launchpad.net/neutron/+bug/165393222:27
openstackLaunchpad bug 1653932 in neutron "[rfe] network router:external field not exported" [Wishlist,Triaged]22:27
mlavalleThe way I see this one is that we have an agreement on how to move it forward22:28
armaxyup22:29
armaxwe lack hands that can crack code up22:29
mlavallehe is not to do it?22:29
mlavalleat least we could ask22:30
armaxwe could try22:30
mlavalleunless someone in the meeting wants to go for it22:30
armaxit’s straighforward work22:31
armaxit only takes time22:31
ihrachysdoes the description reflect the final idea?22:31
armaxactually I’d say this is almost low-hanging fruit22:31
armaxand it’s a great starter bug22:31
armaxbecause it touches many parts of the system22:31
ihrachysit tells what's bad but doesn't say what's expected22:31
armaxbut the ‘easy’ ones22:31
armaxihrachys: what do you mean?22:32
*** galstrom is now known as galstrom_zzz22:32
ihrachysarmax, well from looking at the description, it's not clear what you actually agreed on in comments22:32
armaxoh22:33
ihrachysthere are multiple ideas there, and I think we need capture the final one in description so that whoever is going to implement it knows the path22:33
armaxwe said we’ll expose a new API that shows the subnets for the floating IP ranges avaialble22:33
armaxihrachys: I can do that22:33
ihrachysgo for it22:33
armaxI suggest we mark it approved and also introduce a new tag22:34
armaxrfe-ready22:34
ihrachysdefine difference to rfe-approved?22:35
mlavallewhat do we want to signal with that?22:35
armaxand start advertising that with rfe-ready are approved ready that are in need of volunteers22:35
armaxthe original workflow assumed that rfe-approved was for bugs that had owners on both sides of reviews and contributions22:36
mlavalleso we transition from rfe-ready to rfe-approved once we get volunteers?22:36
armaxif we mark this one approved but no-one picks it up it’s just gonna linger22:36
armaxor we simply mark it approved without assignee22:36
amotokiwhat is the difference from rfe-postponed?22:37
armaxand start advertising on the ML and team meetings for volunteers22:37
mlavallewe can also use it in the on-boarding sessions during summits22:37
armaxrfe-postoned was for bugs that were considered worthy but had dependencies that prevented them from being worked on straightaway22:37
mlavallearmax: are definitions (except rfe-ready) documented somewhere?22:38
*** Patifa has quit IRC22:38
*** lbragstad has quit IRC22:38
amotokiokay, rfe-postponed means it is not ready.22:38
amotokirfe-ready is a new proposal, so we need to document it if we use it22:39
armaxhttps://docs.openstack.org/neutron/latest/contributor/policies/blueprints.html,22:39
armaxbut I don’t see the rfe-postponed22:39
mlavalleI can update that document22:39
armaxmlavalle: there’s a link on the wiki page22:39
armaxand it looks like there are a few22:39
armaxhttps://bugs.launchpad.net/neutron/+bugs?field.tag=rfe-postponed22:39
armaxwe should go back and see which ones are still relevant22:39
mlavalleihrachys, yamamoto, haleyb: thoughts?22:40
*** beekhof_mb has joined #openstack-meeting22:40
ihrachysre new tag, just post a patch and we can then discuss22:40
armaxmlavalle: anyhow, leave this with me and I’ll put some notes together and see if this can get traction22:40
mlavalleI like the idea of a category that we can advertise for work ready to b done22:40
ihrachysI think rfe-approved without assignee would work same, but let's take a look22:40
armaxihrachys: agreed22:40
armaxI actually prefer that22:40
armaxso long as we’re proactive in seeking for help22:41
armaxit’s worth a try22:41
mlavalleI am not so hung up on the tag itself22:41
ihrachys+ for advertising broadly22:41
mlavalleI like the concept of have something ready to be picked up, though, and advertiseing it22:41
mlavalleany other comments?22:42
armaxI suppose it’s important that the RFE being advertised is somewhat well scoped22:42
mlavalleyeap22:42
mlavallethe same applies to low hanging fruit bugs22:43
ihrachysyes, that's why I asked to update description in that bug. if you think it's low hanging, you should expect people that are not in context of the project enough to understand what is expected.22:43
armaxOK, 40 mins in, we’re just 1 in22:43
mlavallearmax: will you document this?22:43
armaxmlavalle: this being the bug?22:43
armaxmlavalle: yes22:43
ihrachysand the process?22:43
mlavallethe process22:44
armaxihrachys: the process too? Oh boy, ok22:44
ihrachysI mean, the unassigned + focus on scope22:44
armaxyou guys take the whole arm with the finger22:44
ihrachysthat's how bureaucracies work22:44
ihrachysthey expand and waste ink22:44
armaxif you know what I mean22:44
mlavalleok, so this RFE is approved22:44
armaxmlavalle: I’d say so22:45
mlavalleNext up is https://bugs.launchpad.net/neutron/+bug/168983022:45
openstackLaunchpad bug 1689830 in neutron "[RFE] advanced policy for allowed addres pairs" [Wishlist,Triaged]22:45
*** xyang1 has quit IRC22:45
armaxthis is also another one where we said that another API might solve the use case22:46
armaxI am not particularly fond of the approach, but I suppose I get by22:46
mlavalleyeap22:46
mlavalleand the submitter agreed with kevinbenton's comment22:47
armaxthis is also another starter bug22:47
mlavalleI'd say so22:47
amotokii almost agree, but have one thing to clarify22:49
amotokido we suggest to add a new attribute to allowed_address_pair dictionary or add a new attr to the port dict?22:49
mlavallethe comment says to the port22:50
armaxmlavalle:  +122:50
mlavallecomment #1622:50
amotokiyeah, the comment says so.22:50
amotokion the other hand, it is a variation of allowed-address-paris, so I wonder which is easier to understand for end-users.22:51
amotokithought?22:54
amotokieither would work and achieves the goal requested in this bug22:55
mlavallebut I think the intent is that we are saying in the new attributes the ports from which we can take addresses for allowed-address-pairs22:55
mlavallein other words, the new attribute would express the range of possiblities for allowed address pairs22:55
mlavalledoes that make sense?22:56
armaxyes22:56
ihrachysok please update the description22:56
ihrachysit does suggest something very different22:57
ihrachysa new policy rule or smth22:57
mlavalleyeah, agree with ihrachys22:57
armaxthat’s why people who files RFE should refrain from making proposals22:57
armax:(22:57
ihrachysyeah, stick to use case22:57
armaxthey should stick to describing the problem22:57
amotokiit works for me22:57
armaxbut it doesn’t matter how LOUD we said it22:57
ihrachyswho's to update22:57
armaxit doesn’t sink in22:58
mlavalleI'll update it22:58
amotokiso end-users will see addresses from ports specified in the new attribute?22:58
armaxmlavalle: +122:58
armax2 mins to the top of the hours22:58
armaxhour*22:58
mlavalleamotoki: no, they will see port UUID's that they can impersonate22:58
amotokiokay22:59
mlavallewe ran out of time22:59
mlavalleplease remember next week will try the alternate time slot22:59
mlavalleI will send message to the ML22:59
mlavalleThanks for attending23:00
mlavalle#endmeeting23:00
*** openstack changes topic to "OpenStack Meetings || https://wiki.openstack.org/wiki/Meetings"23:00
openstackMeeting ended Thu Oct  5 23:00:19 2017 UTC.  Information about MeetBot at http://wiki.debian.org/MeetBot . (v 0.1.4)23:00
openstackMinutes:        http://eavesdrop.openstack.org/meetings/neutron_drivers/2017/neutron_drivers.2017-10-05-22.00.html23:00
openstackMinutes (text): http://eavesdrop.openstack.org/meetings/neutron_drivers/2017/neutron_drivers.2017-10-05-22.00.txt23:00
openstackLog:            http://eavesdrop.openstack.org/meetings/neutron_drivers/2017/neutron_drivers.2017-10-05-22.00.log.html23:00
armaxbye23:00
mlavalleo/23:00
amotokithanks23:00
yamamotobye23:00
*** Patifa has joined #openstack-meeting23:00
*** gmann_sleep is now known as gmann23:01
*** erlon has quit IRC23:01
*** tpsilva has quit IRC23:02
*** sshank has quit IRC23:06
*** mrunge has quit IRC23:06
*** iyamahat_ has joined #openstack-meeting23:06
*** hongbin has quit IRC23:07
*** mrunge has joined #openstack-meeting23:07
*** iyamahat has quit IRC23:08
*** Tom_ has joined #openstack-meeting23:10
*** Tom_ has quit IRC23:15
*** galstrom_zzz is now known as galstrom23:15
*** spn has joined #openstack-meeting23:15
*** spn has quit IRC23:15
*** spn has joined #openstack-meeting23:15
*** spn2 has quit IRC23:17
*** sdague has quit IRC23:18
*** fnaval has joined #openstack-meeting23:19
*** claudiub has joined #openstack-meeting23:19
*** baoli has quit IRC23:24
*** edmondsw has joined #openstack-meeting23:28
*** pkovar has left #openstack-meeting23:30
*** pkovar has quit IRC23:30
*** edmondsw has quit IRC23:32
*** chyka has quit IRC23:36
*** chyka has joined #openstack-meeting23:36
*** mlavalle has quit IRC23:38
*** ssathaye has quit IRC23:39
*** ssathaye has joined #openstack-meeting23:39
*** Patifa has quit IRC23:41
*** chyka has quit IRC23:41
*** SumitNaiksatam has quit IRC23:44
*** markvoelker_ has quit IRC23:51
*** davidsha has quit IRC23:52
*** kbyrne has quit IRC23:57
*** kbyrne has joined #openstack-meeting23:58

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