Thursday, 2017-12-21

*** bfournie has joined #openstack-ironic00:06
*** bfournie has quit IRC00:06
*** ijw has joined #openstack-ironic00:22
*** jaypipes has quit IRC00:25
*** yangyape_ has quit IRC00:27
*** yangyapeng has joined #openstack-ironic00:27
*** yangyapeng has quit IRC00:32
openstackgerritOpenStack Proposal Bot proposed openstack/python-ironic-inspector-client master: Updated from global requirements  https://review.openstack.org/52539500:42
openstackgerritOpenStack Proposal Bot proposed openstack/python-ironicclient master: Updated from global requirements  https://review.openstack.org/52890200:42
*** hw_wutianwei has joined #openstack-ironic00:57
*** phuongnh has joined #openstack-ironic01:01
*** trungnv has quit IRC01:03
*** zhangfei has joined #openstack-ironic01:04
*** ijw has quit IRC01:09
*** tuanla____ has joined #openstack-ironic01:09
*** ijw has joined #openstack-ironic01:11
*** yangyapeng has joined #openstack-ironic01:12
*** ijw has quit IRC01:15
*** rloo has quit IRC01:20
*** kiseok7 has joined #openstack-ironic01:22
*** penick has quit IRC01:32
*** penick has joined #openstack-ironic01:32
*** crushil has joined #openstack-ironic01:33
*** crushil has quit IRC01:42
openstackgerritVladyslav Drok proposed openstack/ironic master: [WIP] Refactor deploy interface methods  https://review.openstack.org/52443301:43
*** rmcall has quit IRC01:44
*** snasir has quit IRC01:49
*** snasir has joined #openstack-ironic01:50
*** threestrands has joined #openstack-ironic01:51
*** threestrands has quit IRC01:51
*** threestrands has joined #openstack-ironic01:51
*** jappleii__ has quit IRC01:52
*** dyasny_ has joined #openstack-ironic02:02
*** hw_wutianwei1 has joined #openstack-ironic02:02
*** kiseok7_ has joined #openstack-ironic02:03
*** gcb has joined #openstack-ironic02:03
*** ricardoas1 has joined #openstack-ironic02:03
*** davidlenwell_ has joined #openstack-ironic02:04
*** rajinir_ has joined #openstack-ironic02:04
*** chihhsin_ has joined #openstack-ironic02:05
*** actatux_ has joined #openstack-ironic02:06
*** kiseok7 has quit IRC02:07
*** hw_wutianwei has quit IRC02:07
*** harlowja has quit IRC02:07
*** dyasny has quit IRC02:07
*** v12aml has quit IRC02:07
*** ricardoas has quit IRC02:07
*** chihhsin has quit IRC02:07
*** actatux has quit IRC02:07
*** bkero has quit IRC02:07
*** davidlenwell has quit IRC02:07
*** dansmith has quit IRC02:07
*** comstud has quit IRC02:07
*** rajinir has quit IRC02:07
*** kiseok7_ is now known as kiseok702:07
*** davidlenwell_ is now known as davidlenwell02:07
*** rajinir_ is now known as rajinir02:07
*** v12aml has joined #openstack-ironic02:07
*** hw_wutianwei1 is now known as hw_wutianwei02:07
*** dansmith has joined #openstack-ironic02:08
*** dansmith is now known as Guest9968002:08
*** comstud has joined #openstack-ironic02:08
*** bkero has joined #openstack-ironic02:09
*** sambetts|afk has quit IRC02:10
*** sambetts_ has joined #openstack-ironic02:13
*** yangyapeng has quit IRC02:14
*** yangyapeng has joined #openstack-ironic02:15
*** ijw has joined #openstack-ironic02:15
*** ijw has quit IRC02:20
*** trungnv has joined #openstack-ironic02:36
*** Goneri has quit IRC02:41
*** masuberu has joined #openstack-ironic03:03
*** masber has quit IRC03:04
*** zhangfei has quit IRC03:12
zshiTheJulia, hi03:16
*** ijw has joined #openstack-ironic03:16
TheJuliaGood evening03:17
zshiRe BIOS interface, I'm thinking about where to put the caching of bios config if we pull it out from state change process(enroll -> manageable)03:17
zshievening!03:17
zshiyou mentioned that when entering cleaning step might be a good place, I'm wondering how that works03:17
*** masuberu has quit IRC03:17
zshifor example, when a set bios config cleaning step is triggered, it will first cache the bios settings, then do the setting ?03:18
*** ijw has quit IRC03:20
TheJuliazshi: _do_node_clean ?03:20
TheJuliazshi: yes, it would end up caching and then setting, which actually could be useful...03:21
TheJuliaif setting != desired_setting: apply_setting(desired_setting)03:21
zshiTheJulia, then there will be two caching per each setting03:22
zshiprevious logic is that when setting is actually applied, it will update the whole bios config to caching filed03:22
zshithis will also update settings that be done outside of ironic03:22
zshiso if we add the caching per each setting, then it will update the cache field two times03:24
*** zhangfei has joined #openstack-ironic03:24
zshiRe : if settings != desired_setting, it will not update the caching when bios config is changed outside of ironic which will lead to out-of-sync of caching field03:25
zshiwhat do you think if we add another cleaning step that does the caching separately ?03:25
*** dsneddon has quit IRC03:26
TheJuliazshi: well, realistically you have to because you can't trust that it hasn't been changed, but it shouldn't be asserted unless it needs to be changed03:31
TheJuliawell, caching is not intended to serve as a mechanism to check/verify/re-assert during operation new bios settings03:31
TheJuliathe caching should always be considered "this is what I last knew it to be, I should never fully trust it, unless we are in a workflow where I know I should be able to trust it"03:32
zshithen how we provide a way for user to get current bios settings if there is nothing  need to be changed from last caching?03:35
*** threestrands_ has joined #openstack-ironic03:39
*** threestrands_ has quit IRC03:39
*** threestrands_ has joined #openstack-ironic03:39
zshiif we put two cache action in one cleaning step, then the first caching will update the latest changes in baremetal, the second caching will update the first one with applied changes; the question is, how user can make use of the first cahcing result to decide which bios options shall be changed03:39
TheJuliazshi: well, the "operator" can query the information from the rest api, because as long as the cleaning process exits assuring that the values have been updated, I would think it would be okay03:40
zshiyes, what about the first time, when no cleaning step is exeucted03:41
zshithere is no caching of the current bios config03:41
*** threestrands has quit IRC03:41
*** namnh has joined #openstack-ironic03:42
*** tiendc has joined #openstack-ironic03:49
TheJuliazshi: it could be inserted to be collected before, as part of cleaning as orchestrated from the conductor. It could also be just automated cleaning04:03
zshido you have any reference as to "cleaning as orchestrated from the conductor" ?04:06
TheJuliazshi: are you familiar with the state machine?04:07
zshiTheJulia, I understand the state transfer04:07
*** ijw has joined #openstack-ironic04:07
TheJuliazshi: https://github.com/openstack/ironic/blob/master/ironic/conductor/manager.py#L89704:08
TheJuliaIt will always get called for manual and automated cleaning to begin04:08
zshiok, so caching could happen there if bios interface is validated04:10
TheJuliaYes, possibly04:10
zshithanks TheJulia , that's helpful!04:11
openstackgerritJohn L. Villalovos proposed openstack/ironic stable/ocata: WIP/DNM: Testing stable/ocata gate...  https://review.openstack.org/52946504:11
TheJuliazshi: no problem04:11
TheJuliazshi: anything else? I'm going to get some sleep soon04:12
*** ijw has quit IRC04:12
zshiTheJulia, that's it, have a good night!04:12
*** namnh has quit IRC04:12
TheJuliaHave a wonderful day!04:13
zshiThank you!04:14
*** masber has joined #openstack-ironic04:17
*** amarao has quit IRC04:20
*** vsaienk0 has joined #openstack-ironic04:26
*** fragatina has quit IRC04:33
*** fragatina has joined #openstack-ironic04:34
*** links has joined #openstack-ironic04:35
*** links has quit IRC04:35
*** vsaienk0 has quit IRC04:36
*** udesale has joined #openstack-ironic04:45
*** sasha2 has quit IRC04:46
*** tiendc has quit IRC04:46
*** rbudden has quit IRC04:48
*** aignatov2 has joined #openstack-ironic05:12
*** aignatov has quit IRC05:13
*** ccamacho has quit IRC05:13
*** aignatov2 is now known as aignatov05:13
*** dgautam has joined #openstack-ironic05:15
*** crushil has joined #openstack-ironic05:30
*** ramineni has quit IRC05:44
*** zhangfei has quit IRC05:56
*** ramineni has joined #openstack-ironic05:59
*** jaganathan has joined #openstack-ironic06:14
*** ijw has joined #openstack-ironic06:15
*** dpawar has joined #openstack-ironic06:19
*** jaganathan_ has joined #openstack-ironic06:20
*** ijw has quit IRC06:20
*** threestrands_ has quit IRC06:21
*** jaganathan_ has quit IRC06:21
*** jaganathan_ has joined #openstack-ironic06:21
*** snasir has quit IRC06:24
*** dyasny__ has joined #openstack-ironic06:25
*** jaganathan has quit IRC06:26
*** crushil has quit IRC06:26
*** v12aml has quit IRC06:26
*** rajinir has quit IRC06:26
*** kiseok7 has quit IRC06:26
*** jlabarre has quit IRC06:26
*** krtaylor has quit IRC06:26
*** edleafe has quit IRC06:26
*** afazekas has quit IRC06:26
*** robcresswell has quit IRC06:26
*** fdegir has quit IRC06:26
*** betherly has quit IRC06:26
*** TheJulia has quit IRC06:26
*** pas-ha has quit IRC06:26
*** jroll has quit IRC06:26
*** kencjohnston has quit IRC06:26
*** persia has quit IRC06:26
*** mgkwill has quit IRC06:26
*** marios has joined #openstack-ironic06:26
*** dyasny_ has quit IRC06:29
*** v12aml has joined #openstack-ironic06:31
*** rajinir has joined #openstack-ironic06:31
*** kiseok7 has joined #openstack-ironic06:31
*** jlabarre has joined #openstack-ironic06:31
*** afazekas has joined #openstack-ironic06:31
*** robcresswell has joined #openstack-ironic06:31
*** fdegir has joined #openstack-ironic06:31
*** betherly has joined #openstack-ironic06:31
*** TheJulia has joined #openstack-ironic06:31
*** pas-ha has joined #openstack-ironic06:31
*** jroll has joined #openstack-ironic06:31
*** kencjohnston has joined #openstack-ironic06:31
*** persia has joined #openstack-ironic06:31
*** mgkwill has joined #openstack-ironic06:31
*** edleafe has joined #openstack-ironic06:32
*** krtaylor has joined #openstack-ironic06:33
*** livelace-link has quit IRC06:33
*** livelace-link has joined #openstack-ironic06:35
*** livelace-link has quit IRC06:36
*** dgautam has quit IRC06:38
*** dsneddon has joined #openstack-ironic06:42
*** v12aml has quit IRC06:48
*** rajinir has quit IRC06:48
*** kiseok7 has quit IRC06:48
*** jlabarre has quit IRC06:48
*** afazekas has quit IRC06:48
*** robcresswell has quit IRC06:48
*** fdegir has quit IRC06:48
*** betherly has quit IRC06:48
*** TheJulia has quit IRC06:48
*** pas-ha has quit IRC06:48
*** jroll has quit IRC06:48
*** kencjohnston has quit IRC06:48
*** persia has quit IRC06:48
*** mgkwill has quit IRC06:48
openstackgerritShivanand Tendulker proposed openstack/ironic master: Adds rescue_interface to base driver class  https://review.openstack.org/50933506:50
*** aignatov has quit IRC06:50
*** aignatov has joined #openstack-ironic06:53
*** e0ne has joined #openstack-ironic06:57
*** e0ne has quit IRC06:58
*** zhenguo has quit IRC07:04
openstackgerritShivanand Tendulker proposed openstack/ironic master: Adds rescue_interface to base driver class  https://review.openstack.org/50933507:04
*** mjura has joined #openstack-ironic07:06
*** karthiks has joined #openstack-ironic07:15
*** afazekas has joined #openstack-ironic07:24
*** v12aml has joined #openstack-ironic07:24
*** mgkwill has joined #openstack-ironic07:24
*** TheJulia has joined #openstack-ironic07:24
*** kencjohnston has joined #openstack-ironic07:25
*** persia has joined #openstack-ironic07:25
*** jlabarre has joined #openstack-ironic07:25
*** jroll has joined #openstack-ironic07:25
*** robcresswell has joined #openstack-ironic07:25
*** kiseok7 has joined #openstack-ironic07:25
*** betherly has joined #openstack-ironic07:25
*** fdegir has joined #openstack-ironic07:25
*** pas-ha has joined #openstack-ironic07:25
*** vsaienk0 has joined #openstack-ironic07:26
*** rajinir has joined #openstack-ironic07:26
*** rcernin has quit IRC07:37
*** AlexeyAbashkin has joined #openstack-ironic07:41
*** ianw_pto is now known as ianw07:43
*** ianw is now known as ianw_pto07:43
*** pcaruana has joined #openstack-ironic07:58
openstackgerritzenghui.shi proposed openstack/ironic-specs master: Hardware interface for BIOS configuration  https://review.openstack.org/49648108:07
*** gcb has quit IRC08:16
*** ijw has joined #openstack-ironic08:16
*** ijw has quit IRC08:21
*** ijw has joined #openstack-ironic08:27
*** ijw has quit IRC08:32
*** ccamacho has joined #openstack-ironic08:33
*** ccamacho has quit IRC08:35
*** ccamacho has joined #openstack-ironic08:35
*** linkmark has joined #openstack-ironic08:39
*** namnh has joined #openstack-ironic08:41
*** e0ne has joined #openstack-ironic08:43
*** hjensas has joined #openstack-ironic08:44
*** zhangfei has joined #openstack-ironic08:56
*** mgoddard has joined #openstack-ironic09:01
*** gcb has joined #openstack-ironic09:03
*** mrch has joined #openstack-ironic09:04
pas-hamorning ironic ^)09:06
*** ktibi has joined #openstack-ironic09:06
*** zhangfei has quit IRC09:07
openstackgerritBrin Zhang proposed openstack/ironic master: Fix outdated links in ironic document  https://review.openstack.org/52951609:11
*** amarao has joined #openstack-ironic09:16
*** amarao1 has joined #openstack-ironic09:17
*** hjensas has quit IRC09:19
*** vsaienk0 has quit IRC09:19
*** athomas has joined #openstack-ironic09:19
*** zhangfei has joined #openstack-ironic09:20
*** hjensas has joined #openstack-ironic09:20
*** hjensas has quit IRC09:20
*** hjensas has joined #openstack-ironic09:20
*** vsaienk0 has joined #openstack-ironic09:24
*** udesale__ has joined #openstack-ironic09:26
*** derekh has joined #openstack-ironic09:28
*** udesale has quit IRC09:28
*** udesale__ has quit IRC09:31
*** udesale has joined #openstack-ironic09:33
*** udesale has quit IRC09:35
*** udesale has joined #openstack-ironic09:35
*** dtantsur|afk is now known as dtantsur09:36
dtantsurmorning ironic09:36
*** milan_ has joined #openstack-ironic09:40
dtantsurpas-ha: morning! re ansible CI job, I really wonder if we should just introduce it to standalone tests09:40
dtantsurI'd like to cover whole disk images, partition images with and without local boot09:40
dtantsurcreating 3 full jobs may be an overkill :)09:40
*** jtomasek has joined #openstack-ironic09:42
openstackgerritDmitry Tantsur proposed openstack/ironic-tempest-plugin master: [WIP] Introduce stable jobs  https://review.openstack.org/52952709:45
dtantsurjlvillal: experimenting ^^^09:45
*** udesale has quit IRC09:46
openstackgerritDmitry Tantsur proposed openstack/ironic-tempest-plugin master: [WIP] Introduce stable jobs  https://review.openstack.org/52952709:46
*** lucas-afk is now known as ucasagomes09:47
*** vsaienk0 has quit IRC09:52
*** trungnv has quit IRC09:56
*** vsaienk0 has joined #openstack-ironic09:59
*** dpawar has quit IRC10:02
*** e0ne has quit IRC10:03
*** penick has quit IRC10:04
*** udesale has joined #openstack-ironic10:05
*** ianychoi has joined #openstack-ironic10:06
*** jtomasek has quit IRC10:07
pas-hadtantsur: partition images w/o local boot are not supported by ansible interface, so it would be just 2 jobs, however I see your point10:08
*** ucasagomes is now known as lucasagomes10:09
*** MattMan_1 has quit IRC10:11
*** MattMan_1 has joined #openstack-ironic10:12
pas-haneed to change the logic somewhat then, and probably just overwrite the basic tinyipa image with the ssh-enabled one, not to introduce any extra tempest config options for it re separate id for the ssh-enabled ramdisk10:12
*** namnh has quit IRC10:20
openstackgerrityuan liang proposed openstack/ironic-python-agent master: Execut dhclient command when IPA start  https://review.openstack.org/52953510:20
openstackgerrityuan liang proposed openstack/ironic-python-agent master: Execut dhclient command when IPA start  https://review.openstack.org/52953510:24
openstackgerritDmitry Tantsur proposed openstack/ironic-tempest-plugin master: Update README and setup.cfg  https://review.openstack.org/52953810:25
openstackgerritDmitry Tantsur proposed openstack/ironic-tempest-plugin master: Update README and setup.cfg, initial version of usage guide  https://review.openstack.org/52953810:26
openstackgerritDmitry Tantsur proposed openstack/ironic-tempest-plugin master: Update README and setup.cfg, initial version of usage guide  https://review.openstack.org/52953810:27
*** dtantsur is now known as dtantsur|brb10:27
dtantsur|brbpas-ha: ack, thanks for clarifying10:27
*** sambetts_ is now known as sambetts10:31
*** fragatina has quit IRC10:35
*** fragatina has joined #openstack-ironic10:36
*** pcaruana has quit IRC10:43
*** ijw has joined #openstack-ironic10:43
*** e0ne has joined #openstack-ironic10:46
*** ijw has quit IRC10:48
*** dpawar has joined #openstack-ironic10:54
*** tuanla____ has quit IRC10:55
*** ktibi has quit IRC10:56
*** priteau has joined #openstack-ironic10:59
*** udesale has quit IRC11:01
*** AlexeyAbashkin has quit IRC11:01
*** ktibi has joined #openstack-ironic11:06
*** AlexeyAbashkin has joined #openstack-ironic11:08
*** fragatina has quit IRC11:10
*** fragatina has joined #openstack-ironic11:11
*** hoonetorg has quit IRC11:22
*** ccamacho is now known as ccamacho|brb11:31
*** hoonetorg has joined #openstack-ironic11:34
*** amarao has quit IRC11:38
*** ijw has joined #openstack-ironic11:39
*** makowals has joined #openstack-ironic11:40
*** ijw has quit IRC11:44
*** hjensas has quit IRC11:54
*** hjensas has joined #openstack-ironic11:56
*** udesale has joined #openstack-ironic12:01
openstackgerrityuan liang proposed openstack/ironic-python-agent master: Execut dhclient command when IPA start  https://review.openstack.org/52953512:03
*** dtantsur|brb is now known as dtantsur12:12
*** lucasagomes is now known as lucas-hungry12:13
openstackgerritDmitry Tantsur proposed openstack/ironic-tempest-plugin master: [WIP] Introduce stable jobs  https://review.openstack.org/52952712:18
*** jaganathan_ has quit IRC12:18
*** udesale has quit IRC12:23
*** udesale has joined #openstack-ironic12:23
openstackgerritMerged openstack/ironic master: Document the check done in "ironic-dbsync upgrade"  https://review.openstack.org/52911712:30
*** ccamacho|brb is now known as ccamacho12:38
*** hw_wutianwei has quit IRC12:47
*** jaypipes has joined #openstack-ironic12:56
*** crushil has joined #openstack-ironic12:59
*** lucas-hungry is now known as lucasagomes13:08
*** dpawar has quit IRC13:09
*** yangyapeng has quit IRC13:10
*** jcoufal has joined #openstack-ironic13:13
*** yangyapeng has joined #openstack-ironic13:15
*** amarao has joined #openstack-ironic13:16
*** yangyapeng has quit IRC13:19
*** phuongnh has quit IRC13:21
*** dprince has joined #openstack-ironic13:23
*** crushil has quit IRC13:25
*** jtomasek has joined #openstack-ironic13:34
*** catintheroof has joined #openstack-ironic13:34
*** catintheroof has quit IRC13:36
*** catintheroof has joined #openstack-ironic13:36
*** ijw has joined #openstack-ironic13:40
*** dsneddon has quit IRC13:40
*** bfournie has joined #openstack-ironic13:45
*** ijw has quit IRC13:45
openstackgerritDmitry Tantsur proposed openstack/ironic-tempest-plugin master: Introduce stable jobs  https://review.openstack.org/52952713:47
*** vsaienk0 has quit IRC13:49
*** vsaienk0 has joined #openstack-ironic13:50
*** sasha21 has joined #openstack-ironic13:53
*** dyasny__ is now known as dyasny13:59
*** rbudden has joined #openstack-ironic14:00
*** jaypipes has quit IRC14:06
TheJuliagood morning ironic14:14
dtantsurmorning TheJulia14:14
TheJuliaAnyone know fujitsu 3rd party ci really well?14:25
*** mgoddard has quit IRC14:30
dtantsurnot me14:30
*** mgoddard has joined #openstack-ironic14:32
TheJuliatheir ci does not like https://review.openstack.org/#/c/527289/ it seems14:34
patchbotpatch 527289 - ironic - Run in superconductor cellsv2 mode for non-grenade...14:34
dtantsuryeah, I've seen your comment14:34
TheJuliaI'd rather see it pass, even one of their gates before we merge, that is unless we must land that patch asap.14:35
TheJulias/rather/prefer/14:36
* TheJulia needs to wkae up14:36
TheJulialol14:36
*** jtomasek has quit IRC14:37
*** crushil has joined #openstack-ironic14:38
*** yangyapeng has joined #openstack-ironic14:44
dtantsurheh14:45
*** yangyapeng has quit IRC14:47
*** crushil has quit IRC14:48
jrollhuh, what's fujitsu doing where that breaks things?14:48
TheJuliajroll: the exact question that I think only one of their folks can answer :\14:49
jrollyeah14:49
dtantsurmorning jroll14:50
jrolloh, morning :)14:50
TheJuliajroll: Good Morning!14:50
* TheJulia swears she can type complete, possibly cogent, thoughts. Maybe...14:50
jroll2017-12-12 05:03:22.122 | ++ ./stack.sh:echo_summary:422              :   echo -e Waiting 2 minutes for Nova resource tracker to pick up 0 nodes14:51
jrollO_o14:51
TheJuliaO_O14:51
*** yangyapeng has joined #openstack-ironic14:51
dtantsurwut14:51
jrollmight be tangential to this patch, then14:52
jrollah, they do have a node at 14:12:40 here http://openstackci.jp.fujitsu.com/irmcci/89/527289/1/check/tempest-dsvm-ironic-agent-irmc/b3e5dc0/console.html.gz14:52
*** zhangfei has quit IRC14:53
TheJuliaI went and looked at another job that had passed their CI, and the consistency really makes me think it is something with their patch and the settings they are operating with :\14:54
jrollyeah, could be14:54
jrollI'll leave it to them, no sense in working too hard on it14:55
TheJuliaI seem to remember they apply a couple diffs with their jobs, so really only they can make sense of or fix it anyway14:56
*** karthiks has quit IRC14:57
* TheJulia steps away for a few minutes14:57
jrollthat's sad :/14:57
*** crushil_ has joined #openstack-ironic15:05
*** crushil__ has joined #openstack-ironic15:05
TheJuliasometimes a necessary evil15:12
*** bnemec has joined #openstack-ironic15:13
*** mjura has quit IRC15:23
*** mjura has joined #openstack-ironic15:24
*** hjensas has quit IRC15:25
jrollyeah, just saying we should fix it15:27
*** dgautam has joined #openstack-ironic15:37
*** dsneddon has joined #openstack-ironic15:40
*** SerenaFeng has joined #openstack-ironic15:41
*** dgautam has quit IRC15:44
TheJuliaagreed, that is if we can...15:45
*** dgautam has joined #openstack-ironic15:47
*** crushil__ has quit IRC15:47
*** crushil_ has quit IRC15:47
*** hjensas has joined #openstack-ironic15:51
*** hjensas has joined #openstack-ironic15:51
*** dgautam has quit IRC15:54
*** AlexeyAbashkin has quit IRC15:55
*** crushil has joined #openstack-ironic15:59
*** crushil_ has joined #openstack-ironic15:59
*** vsaienk0 has quit IRC16:00
*** dgautam has joined #openstack-ironic16:02
*** mjura has quit IRC16:02
*** udesale has quit IRC16:10
*** SerenaFeng has quit IRC16:12
*** mrch has quit IRC16:16
*** mrch has joined #openstack-ironic16:16
openstackgerritMark Goddard proposed openstack/ironic master: Node traits: Add DB API & model  https://review.openstack.org/52823816:26
*** ktibi has quit IRC16:27
openstackgerritPavlo Shchelokovskyy proposed openstack/ironic master: Setup ansible interface in devstack  https://review.openstack.org/52938316:29
*** amarao has quit IRC16:29
*** amarao has joined #openstack-ironic16:30
openstackgerritPavlo Shchelokovskyy proposed openstack/ironic-python-agent master: Fixed for addssh make target in tinyipa  https://review.openstack.org/52963816:32
*** dgautam has quit IRC16:32
jlvillalgood morning Ironic16:33
TheJuliagood morning jlvillal16:33
jlvillal:)16:33
*** amarao has quit IRC16:34
jlvillaldtantsur, I'm confused on why the ocata job fails :( https://review.openstack.org/#/c/529386/16:34
patchbotpatch 529386 - ironic-tempest-plugin - Add a stable/pike and stable/ocata test job16:34
jlvillaldtantsur, I'll try to dig into it more today16:34
dtantsurjlvillal: morning. /me too. it may be transient, hence I rechecked for statistics16:34
*** dgautam has joined #openstack-ironic16:35
* TheJulia is feeling inspired and as such needs more coffee16:35
jlvillaldtantsur, I ran a test patch on openstack/ironic for stable/ocata. Works fine. So I'm guessing something is going wonky somewhere.16:35
openstackgerritPavlo Shchelokovskyy proposed openstack/ironic-tempest-plugin master: Add ability to set deploy interface  https://review.openstack.org/52963916:35
openstackgerritPavlo Shchelokovskyy proposed openstack/ironic-tempest-plugin master: Add ansible deploy interface test  https://review.openstack.org/52964016:35
*** crushil has quit IRC16:36
*** crushil_ has quit IRC16:36
dtantsurpas-ha: we won't be able to merge any of ^^ until we get stable jobs running on the plugin. JFYI.16:37
pas-hayep, understood16:38
pas-hajust want to test it also locally in one sweep with devstack16:38
*** marios has quit IRC16:43
*** dgautam has quit IRC16:58
*** amarao1 has quit IRC17:01
*** pcaruana has joined #openstack-ironic17:04
*** e0ne has quit IRC17:06
*** vsaienk0 has joined #openstack-ironic17:09
*** jaypipes has joined #openstack-ironic17:10
*** d0ugal has quit IRC17:20
*** vsaienk0 has quit IRC17:22
*** Goneri has joined #openstack-ironic17:29
*** hjensas has quit IRC17:35
*** dgautam has joined #openstack-ironic17:36
*** d0ugal has joined #openstack-ironic17:40
*** amarao has joined #openstack-ironic17:41
*** mgoddard has quit IRC17:48
dtantsursee you tomorrow! and see you next year those having a day off tomorrow :)17:49
*** dtantsur is now known as dtantsur|afk17:49
*** amarao has quit IRC17:49
*** racedo has quit IRC17:51
*** racedo has joined #openstack-ironic17:52
*** racedo has quit IRC17:52
*** fragatina has quit IRC17:54
*** lucasagomes is now known as lucas-afk17:59
openstackgerritMerged openstack/python-ironicclient master: Accept None as a result of node validation in functional test  https://review.openstack.org/52860618:09
*** derekh has quit IRC18:12
*** zshi has quit IRC18:12
openstackgerritMerged openstack/ironic master: zuul: Remove some redundancy by consolidating the 'post.yaml' files  https://review.openstack.org/52940118:16
*** harlowja has joined #openstack-ironic18:16
*** catintheroof has quit IRC18:22
*** zshi has joined #openstack-ironic18:26
*** e0ne has joined #openstack-ironic18:33
*** oanson has quit IRC18:44
*** catintheroof has joined #openstack-ironic18:47
*** rmcall has joined #openstack-ironic18:48
*** derekh has joined #openstack-ironic18:52
*** fragatina has joined #openstack-ironic18:52
*** etingof has quit IRC18:55
*** etingof has joined #openstack-ironic18:56
*** dprince has quit IRC19:02
*** penick has joined #openstack-ironic19:03
*** sambetts is now known as sambetts|afk19:05
sambetts|afknight all o/19:05
*** penick_ has joined #openstack-ironic19:09
*** penick has quit IRC19:11
*** rmcall has quit IRC19:19
*** derekh has quit IRC19:21
*** mrch has quit IRC19:26
*** exodusftw has quit IRC19:36
*** exodusftw has joined #openstack-ironic19:44
openstackgerritJulia Kreger proposed openstack/ironic master: Add additional context to contribution guide  https://review.openstack.org/52968119:45
*** dprince has joined #openstack-ironic20:00
*** e0ne_ has joined #openstack-ironic20:05
*** e0ne has quit IRC20:08
openstackgerritJulia Kreger proposed openstack/ironic master: Add documentation covering storage multi-attach  https://review.openstack.org/52653120:08
*** pcaruana has quit IRC20:12
openstackgerritMerged openstack/ironic master: [ansible] add defaults to config  https://review.openstack.org/52571020:14
*** pcaruana has joined #openstack-ironic20:29
*** AlexeyAbashkin has joined #openstack-ironic20:29
*** AlexeyAbashkin has quit IRC20:33
*** derekh has joined #openstack-ironic20:35
*** catintheroof has quit IRC20:37
*** catintheroof has joined #openstack-ironic20:38
*** pcaruana has quit IRC20:42
*** catintheroof has quit IRC20:42
*** jcoufal has quit IRC20:57
*** derekh has quit IRC21:06
*** e0ne has joined #openstack-ironic21:16
*** e0ne_ has quit IRC21:17
*** e0ne has quit IRC21:34
*** threestrands_ has joined #openstack-ironic21:35
*** e0ne has joined #openstack-ironic21:39
*** e0ne has quit IRC21:40
*** priteau_ has joined #openstack-ironic21:47
*** priteau has quit IRC21:50
*** andreaf has quit IRC21:55
*** andreaf has joined #openstack-ironic21:56
*** d0ugal has quit IRC21:59
*** dprince has quit IRC22:02
*** d0ugal has joined #openstack-ironic22:09
*** rcernin has joined #openstack-ironic22:24
*** e0ne has joined #openstack-ironic22:24
*** bfournie has quit IRC22:28
*** etingof has quit IRC22:30
*** priteau_ has quit IRC22:32
*** catintheroof has joined #openstack-ironic22:37
*** catintheroof has quit IRC22:37
*** e0ne has quit IRC22:39
*** etingof has joined #openstack-ironic22:43
*** zshi has quit IRC22:57
*** charcol has joined #openstack-ironic23:02
*** crushil has joined #openstack-ironic23:08
*** zshi has joined #openstack-ironic23:10
*** crushil has quit IRC23:16
*** bnemec is now known as bnemec-xmas23:26
*** AlexeyAbashkin has joined #openstack-ironic23:34
*** kzaitsev_pi has quit IRC23:35
*** kzaitsev_pi has joined #openstack-ironic23:35
*** fragatina has quit IRC23:38
*** AlexeyAbashkin has quit IRC23:39

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