Tuesday, 2015-01-20

*** andreykurilin_ has quit IRC00:00
*** naohirot has joined #openstack-ironic00:00
*** achanda has quit IRC00:02
*** achanda has joined #openstack-ironic00:02
*** achanda has quit IRC00:03
*** achanda has joined #openstack-ironic00:04
*** Marga_ has joined #openstack-ironic00:10
*** ryanpetrello has quit IRC00:21
*** Marga_ has quit IRC00:29
*** Marga_ has joined #openstack-ironic00:29
*** achanda has quit IRC00:30
*** smoriya has joined #openstack-ironic00:32
naohirotgood morning ironic00:32
*** jerryz has joined #openstack-ironic00:40
*** rloo has quit IRC00:43
*** rwsu has joined #openstack-ironic00:48
*** hshiina has joined #openstack-ironic00:51
*** kylestev|zzz is now known as kylestev00:51
*** ryanpetrello has joined #openstack-ironic01:15
*** ryanpetrello has quit IRC01:22
*** romcheg has quit IRC01:30
*** harlowja_away is now known as harlowja01:32
Haomengnaohirot: good morning:)01:41
naohirotHaomeng: good morning :)01:42
Haomengnaohirot: :)01:42
naohirotHaomeng: I'd like to hear your opinion regarding the get_sensors_data() implementation as earlier as possible. https://review.openstack.org/#/c/146803/01:45
Haomengnaohirot: sure, let me take a look01:45
naohirotHaomeng: If you had time, please spare some time. thanks01:46
Haomengnaohirot: sure, my pleasure:)01:46
naohirotHaomeng: I put the covered json from XML in the comment area.01:47
Haomengnaohirot: yes, understand01:47
naohirotHaomeng: thanks01:47
Haomengnaohirot: have an idea01:50
naohirotHaomeng: yes01:51
Haomengnaohirot: did you save the output of "print(sensors_data)" in ironic/drivers/modules/irmc/management.py01:51
Haomengnaohirot: I want to see the json format sonsors data format, to see if it is match ceilometer data model, looks like the 'Sensor Reading' key is missing01:51
Haomengnaohirot: "Sensor Reading" is key for ceilometer sample data01:52
Haomengnaohirot: I will add comments in details:)01:52
naohirotHaomeng: Yes please01:54
*** Haomeng|2 has joined #openstack-ironic01:55
Haomeng|2naohirot: 'Sensor Reading' is sample value, sorry for confusing01:56
naohirotHaomeng|2: Yes, that's what I thought :)01:56
Haomeng|2naohirot: yes, I will add comments inline:)01:57
*** Haomeng has quit IRC01:58
naohirotHaomeng|2: that's better and comfortable for me :)01:58
Haomeng|2naohirot: :)01:58
*** rwsu has quit IRC02:01
Haomeng|2naohirot: reviewed the sensor data codes, and left some comments inline :)02:14
naohirotHaomeng|2: I'll take a look. Is there serious one?02:15
Haomeng|2naohirot: no, dont care about:)02:16
naohirotHaomeng|2: Okay, thanks!02:16
Haomeng|2naohirot: the only one is for 'Sensor Reading' item, which should be in the json format data02:16
Haomeng|2naohirot: 'Sensor Reading' will be consumed by Ceilometer, if it is none, ceilometer will do nothing for the sensor data02:17
Haomeng|2naohirot: because it is the ceilometer sample's value, so it is key field for ceilometer:)02:17
naohirotHaomeng|2: really?02:18
Haomeng|2naohirot: yes02:18
Haomeng|2naohirot: let me check ceilometer code02:18
Haomeng|2naohirot: to see how our sensor data is consumed by ceilometer code:)02:18
naohirotHaomeng|2: When I checked ipmi native code, I believe that it is not in its code, let me check again.02:20
Haomeng|2https://github.com/openstack/ceilometer/blob/fc7e78134458b39a07af163396aa4e43602202ae/ceilometer/ipmi/pollsters/sensor.py#L6202:20
Haomeng|2naohirot: np, let me help you to check ipminative code02:20
Haomeng|2naohirot: this is the reference code - https://github.com/openstack/ironic/blob/686f2ebaece43dc0d03e958693bb290a4c865491/ironic/drivers/modules/ipminative.py#L27902:21
Haomeng|2naohirot: notice the 'Sensor Reading' data format - " 'Sensor Reading': '%s %s' % (reading.value, reading.units),"02:22
*** eghobo has quit IRC02:22
Haomeng|2naohirot: so we should take care the sensor data units also02:22
naohirotHaomeng|2: Okay, I got it. I'll fix that. It's very appreciated to find a serious bug earlier state :)02:24
Haomeng|2naohirot: dont worry, that is normal process, to commit more patch for a bp:)02:24
Haomeng|2naohirot: you are welcome:)02:24
*** kylestev is now known as kylestev|zzz02:24
naohirotHaomeng|2: :)02:25
Haomeng|2naohirot: another comments here:)02:30
naohirotHaomeng|2: yes02:30
Haomeng|2naohirot: looks like the data structor is not same with the define in base class with your json output - http://paste.openstack.org/show/156887/02:30
naohirotHaomeng|2: you mean nested dict is not acceptable?02:31
Haomeng|2naohirot: the first level data is the sensor data type, and 2nd level is the sensor id, 3rd level is the sensor data key-values, but your 3rd level is 'Decoded'02:31
Haomeng|2naohirot: yes, we have to follow the same data model, which is defined in -  https://github.com/openstack/ironic/blob/686f2ebaece43dc0d03e958693bb290a4c865491/ironic/drivers/base.py#L579-L604, and it is defined with Ceilometer team, and Ceilometer take this model as the stand data interface between ironic and ceilometer02:34
naohirotHaomeng|2: the 3rd level 'Decoded' is key, then value is nested dict.02:34
Haomeng|2naohirot: yes, but not sure if ceilometer will not consume such nested dict:)02:34
Haomeng|2naohirot: at least, we should have 'Sensor Reading' in the 3rd level02:35
naohirotHaomeng|2: if I just replaced 'Decoded' to 'Sensor Reading', and if they accept nested dict, it should be fine, right?02:37
Haomeng|2naohirot: no, '02:37
Haomeng|2naohirot: 'Sensor Reading' value is the current sensor data, for example, if it is fan, maybe the current value is '7200 RPM', so it should not be nested dict I think02:38
Haomeng|2naohirot: let me show the data reference which is created by me02:38
naohirotHaomeng|2: okay, how about key1 and key2? Shouldn't they be nested too?02:39
Haomeng|2naohirot: not sure how ceilometer process other keys, maybe the nested value can be supported, but for 'Sensor Reading' it should not be nested I think, this is ceilometer code logic - https://github.com/openstack/ceilometer/blob/fc7e78134458b39a07af163396aa4e43602202ae/ceilometer/ipmi/pollsters/sensor.py#L6202:40
Haomeng|2naohirot: this is the ipminative sensor data reference - https://github.com/openstack/ironic/blob/686f2ebaece43dc0d03e958693bb290a4c865491/ironic/tests/drivers/test_ipminative.py#L149-L17402:42
Haomeng|2naohirot: hope this can help you to understand the sensor data model02:42
naohirotHaomeng|2: Okay, I need some time to read the code throughly, and I'll ask you some question later if I had further question.02:45
*** ijw has quit IRC02:46
*** ramineni has joined #openstack-ironic02:46
*** ijw has joined #openstack-ironic02:46
*** chenglch has joined #openstack-ironic02:48
*** jerryz has quit IRC02:50
*** jerryz has joined #openstack-ironic02:51
*** achanda has joined #openstack-ironic03:20
*** naohirot has quit IRC03:29
*** hshiina has quit IRC03:33
jerryzHaomeng|2: ping03:37
*** achanda has quit IRC03:41
*** dlaube has quit IRC03:42
Haomeng|2jerryz: pong:)03:43
*** achanda has joined #openstack-ironic03:44
Haomeng|2aohirot: ok, thankyou03:44
jerryzHaomeng|2: i went ahead and wrote the token file but it was still stuck at that ironic api call03:45
jerryzHaomeng|2: is that supposed to be like this in the first place03:45
Haomeng|2jerryz: that means the token created by manually not working03:45
jerryzHaomeng|2: it is03:45
jerryzHaomeng|2: the access was granted and 202 was returned03:46
Haomeng|2jerryz: but the client should reuse the token, strange03:46
jerryzHaomeng|2: if the node had been deployed successfully, was it supposed to go through this process?03:46
Haomeng|2jerryz: you did not launch ironic deployment from nova boot?03:46
jerryzHaomeng|2: why it didn't boot directly from disk03:46
Haomeng|2jerryz: good question03:47
jerryzHaomeng|2: i did. and the node had been running normal until the power outage03:47
Haomeng|2jerryz: that is because for the pxe_ipmitool driver, we dont support to write bootloader into local harddisk03:47
Haomeng|2jerryz: so have to boot load from pxe03:47
Haomeng|2jerryz: wil be away for a while:)03:48
jerryzHaomeng|2: ok. talk to you in the afternoon03:48
*** harlowja is now known as harlowja_away03:49
*** Nisha has joined #openstack-ironic03:51
*** achanda has quit IRC03:51
*** hshiina has joined #openstack-ironic03:51
*** Masahiro has quit IRC03:55
*** Masahiro has joined #openstack-ironic03:58
*** yuanying_ has joined #openstack-ironic04:00
*** yuanying has quit IRC04:01
*** achanda has joined #openstack-ironic04:02
*** naohirot has joined #openstack-ironic04:04
openstackgerritAnusha Ramineni proposed openstack/ironic-specs: Implement Cleaning Operations for iLO drivers  https://review.openstack.org/14240104:15
*** dlaube has joined #openstack-ironic04:17
*** dlaube has quit IRC04:17
*** chlong has quit IRC04:19
jrolldevananda: great find on https://bugs.launchpad.net/nova/+bug/141219704:25
jrollthat won't present unless there's a flavor out of capacity with less ram than a flavor with capacity04:26
*** pensu has joined #openstack-ironic04:26
*** kbyrne has quit IRC04:27
*** chlong has joined #openstack-ironic04:28
*** rameshg87 has joined #openstack-ironic04:30
devanandajroll: true. but as more and more people start to scale out usage of ironic, someone's gonna hit it04:49
jrolldevananda: ofc, I just didn't think about it04:50
jrollI noticed that in cells logs, but didn't really dig04:50
*** rameshg87_ has joined #openstack-ironic04:50
devanandaright. it jumped out at me as I was reviewing your change04:50
jrollyep, thanks :)04:51
jrolldevananda: unrelated, have you looked at https://review.openstack.org/143480 ?04:52
jrollI think it's our highest requested feature lately04:52
jrollalso, would love to investigate if neutron can do dhcp/pxe on a vlan, so we can still pxe boot on a tenant network04:52
devanandaooh. right, that'd be cool04:53
* devananda pushes interesting-spec-reading to the back burner, prepares for meeting04:55
jrollindeed04:55
*** mjturek has quit IRC04:55
devanandanaming convention?04:55
devanandawas there a conversation about this I missed?04:55
jrollapparently04:56
jrollI'm not aware of it either04:56
devanandaah. split boot & deploy04:56
devanandapxe_iscsi vs pxe_agent04:56
devanandailo_iscsi vs ilo_agent04:56
devanandaetc04:56
jrollhmm04:57
devanandaif we include management, console, and other types of drivers, soon we have names that take an hour to type04:57
* devananda is feeling sarcastic04:57
jrollright04:57
JayFthat springs from my comment on the iRMC spec04:57
JayFthe names chosen don't make sense04:57
devanandaJayF: yes04:57
JayFand all alternatives are similarly bad04:57
JayFwhen in doubt, add more brains04:57
mrdalol04:57
devanandaheh04:58
devanandagreat. that seems like a fun topic for a late-night discussion :)04:58
JayFeveryone on our time04:58
JayFwill be significantly more agreeable04:58
devanandatotally!04:58
*** chenglch has quit IRC04:59
jrollI don't see whyw e have to change the entire naming convention due to this04:59
jrollbut ok04:59
mrdameeting time :)05:00
*** vdrok_ has joined #openstack-ironic05:00
*** rameshg87_ has quit IRC05:01
*** rameshg87 has quit IRC05:01
*** rameshg87 has joined #openstack-ironic05:01
*** pradipta_away is now known as pradipta05:03
*** achanda has quit IRC05:09
*** achanda has joined #openstack-ironic05:11
*** david-lyle has joined #openstack-ironic05:15
*** jerryz has quit IRC05:36
*** jerryz has joined #openstack-ironic05:50
*** coolsvap|afk is now known as coolsvap05:57
rameshg87i am here. if folks are leaving, i will just bring it up in the mailing list06:01
lintan_jroll: so my propose is to use a same interface to trigger trusted_boot or secure_boot06:01
devanandaI am heading to sleep - have a very long day of meetings tomorrow so I probably won't be on IRC too much06:01
jrolllintan_: I'm too tired to think about this right now, I was just curious about that one question06:01
rameshg87i wanted to bring some discussion on raid configuration spec : https://review.openstack.org/#/c/135899/06:01
rameshg87we have been going back and forth on something in this spec06:02
rameshg87the problem is like this - an operator can provide hints to ironic to figure out the physical disks to use for raid configuration06:02
rameshg87some set of folks want to provide hints like vendor names for disks, desired model names and desired firmware versions.06:02
rameshg87i have added these as part of the spec as some people need this and it is quite easy for the driver to filter disks based on vendor, model and firmware version06:02
rameshg87but some set of folks are against it because every driver will have to implement these mechanisms of filtering06:02
lintan_jroll, we can discuss later https://review.openstack.org/#/c/147419/06:02
rameshg87may be we need an agreement06:02
jrollrameshg87: I'd post to the list, but we've already decided that hints can be used to decide which disk gets the OS iirc06:03
rameshg87jroll, yeah, i will post this to the list06:03
rameshg87jroll, it's not related to which disk gets the OS. but which disks are to be used for raid configuration.06:03
mrdarameshg87: I think that's a good call06:04
devanandarameshg87: yea, I've just briefly skimmed the comments -- I think that is worth a mailing list discussion06:04
*** anderbubble has joined #openstack-ironic06:04
jrollrameshg87: right, but drivers already need code to inspect these things06:04
jrollhttps://review.openstack.org/#/c/138729/06:04
rameshg87devananda, jroll, eah06:04
jrollanyhow, I need to sleep06:04
rameshg87devananda, jroll, i will bring it up in mailing list06:04
devanandaok, /me really goes to bed now. need to get up early ...06:04
jrollhave a good night, everyone06:04
rameshg87devananda, jroll, thanks, good night06:04
*** vdrok_ has quit IRC06:05
naohirotrameshg87: today's meeting was too fast, I was getting behind the conversation. You are very thoughtful to avoid chaos. :)06:07
*** pcrews has quit IRC06:17
*** Marga_ has quit IRC06:18
jiangfei|3hi, all. can nova deploy machine  used by port, not network, it does work?06:22
*** eghobo has joined #openstack-ironic06:25
*** eghobo has quit IRC06:30
rameshg87naohirot, :)06:31
*** coolsvap is now known as coolsvap|afk06:31
naohirotrameshg87: :)06:32
jiangfei|3hi naohirot.06:34
naohirotjiangfei|3: Hi06:34
jiangfei|3i want to use port to deploy machine when nova boot ,  do you know about it06:35
naohirotjiangfei|3: I don't have much experience to operate ironic from nova06:35
naohirotjiangfei|3: but I think other forks could help you.06:36
jiangfei|3naohirot:  thank you.06:36
naohirotjiangfei|3: did you follow the page06:36
naohirothttp://docs.openstack.org/developer/ironic/dev/dev-quickstart.html#deploying-ironic-with-devstack06:36
jiangfei|3naohirot: i know use netwok to deploy.06:37
*** eghobo has joined #openstack-ironic06:37
jiangfei|3naohirot: ok06:37
naohirotjiangfei|3: I see, I didn't have experience to use port to deploy.06:38
*** Nisha has quit IRC06:38
jiangfei|3naohirot: thank you.  :)06:38
naohirotjiangfei|3: you are welcome. do you have acquaintance in Ironic team?06:40
*** chenglch has joined #openstack-ironic06:40
jiangfei|3naohirot: no, i  just joined the ironic06:42
*** coolsvap|afk is now known as coolsvap06:43
naohirotjiangfei|3: I also joined a couple of months ago, if Haomeng|2 were not busy, he could help you.06:43
Haomeng|2naohirot: yes, I am back06:43
Haomeng|2jerryz: hi06:44
naohirotHaomeng|2: Hi06:44
Haomeng|2jiangfei|3: any concern?06:44
jiangfei|3hi, <Haomeng|2>06:44
Haomeng|2naohirot: you want boot from port?06:44
jiangfei|3Haomeng|2: can nova deploy machine  used by port, not network,06:44
jiangfei|3<Haomeng|2>: i want to know06:44
naohirotHaomeng|2: actually not me, jiangfei|3 .06:45
Haomeng|2jiangfei|3: sure06:45
Haomeng|2naohirot: sorry06:45
Haomeng|2jiangfei|3: --nic <net-id=net-uuid,v4-fixed-ip=ip-addr,v6-fixed-ip=ip-addr,port-id=port-uuid>06:45
naohirotHaomeng|2: np06:45
Haomeng|2jiangfei|3: we can pass port-uuid is input for nova booting06:45
jerryzHaomeng|2: hi. afternoon06:46
Haomeng|2jerryz: good afternoon06:46
Haomeng|2jerryz: i have question06:46
Haomeng|2jerryz: did you launch the ironic bm provision from nova boot?06:46
jerryzHaomeng|2: yes.06:46
Haomeng|2jerryz: I remember the last disscusstion that we missing the token from context06:47
jiangfei|3Haomeng|2:  --nic net-id=net-uuid port-id=port-uuid.   port-uuid is the vif06:47
Haomeng|2jiangfei|3: yes, you can run 'neutron port-list'06:47
Haomeng|2jiangfei|3: if you want to boot from special port, have to create port first06:47
jerryzHaomeng|2: i am building a tripleO ci cloud. so definitely heat stack-create -》 nova boot06:47
Haomeng|2jerryz: yes, heat will call nova06:48
*** davideagnello has joined #openstack-ironic06:48
Haomeng|2jerryz: but it is very strange that there is no token in your context06:48
Haomeng|2jerryz: what version you are using06:48
jerryzHaomeng|2: right now, only seed cloud was restored and undercloud can not boot06:48
jiangfei|3Haomeng|2: if the machine has 4 ports,  does it need register all?06:48
Haomeng|2jerryz: yes, i try to run devtest to deploy tripleo seed-under-over cloud env, and undercloud can not deploy06:49
Haomeng|2jiangfei|3: no, ironic just depedns on the pxe port06:49
*** mrda is now known as mrda-away06:49
Haomeng|2jiangfei|3: for normal case it is the first nic in your server06:49
Haomeng|2jiangfei|3: and what domain we are talking about, the port concept in both neutron and ironic06:50
jiangfei|3Haomeng|2:  yes, but i don't know why use list.06:50
Haomeng|2jiangfei|3: which list?06:51
Haomeng|2jerryz: what error message we got from pxe remote booting, tftp can not get the token?06:51
jerryzHaomeng|2: the code with which i built undercloud image was around Nov.24 201406:51
jiangfei|3Haomeng|2: ironic/dirver if len(network_info) > len(ports):06:51
Haomeng|2jerryz: should be fine, it is not very old:)06:51
jiangfei|3Haomeng|2:  method in   _plug_vifs06:52
Haomeng|2jiangfei|3: can you provide the url for your code, let me check the code logic06:52
Haomeng|2jiangfei|3: in our driver?06:52
Haomeng|2jiangfei|3: nova driver?06:52
Haomeng|2jiangfei|3: ok, let me check06:52
jerryzHaomeng|2: first of all, no token file in tftpboot, second i manually created that file, the authorization went through but stuck at wait for deployment complete06:52
*** davideagnello has quit IRC06:52
jiangfei|3Haomeng|2 : nova/virt/ironic/driver.py06:52
jerryzHaomeng|2: ironic node show suggests that the node is active so ironic is basically doing nothing06:53
Haomeng|2jerryz: ok, that mean the token workaround working ,but new issue we encountered, right?06:53
Haomeng|2jiangfei|3: ok06:53
Haomeng|2jerryz: can you check the conductor log, to see what commands issued, such as iscsi, if dd command run06:54
jerryzHaomeng|2: nothing06:54
Haomeng|2jerryz: I assume you are runing with pxe_ipmitool driver, right06:54
jerryzHaomeng|2: yes, for under cloud i used a virsh host06:54
*** Nisha has joined #openstack-ironic06:54
jerryzHaomeng|2: pxe_ssh06:54
Haomeng|2jerryz: that should be pxe_ssh06:54
Haomeng|2jerryz: ok, what is the console we got from the vm06:55
jerryzHaomeng|2: does dd still need to be run?06:55
Haomeng|2jerryz: I guess, it hung at some points06:55
Haomeng|2jiangfei|3: you mean these codes - https://github.com/openstack/nova/blob/master/nova/virt/ironic/driver.py#L883 ?06:56
Haomeng|2jerryz: yes, the *core* command is dd for pxe driver06:56
Haomeng|2jerryz: can you show the screen for vm console?06:57
jiangfei|3Haomeng|2: yes06:57
*** david-lyle has quit IRC06:57
Haomeng|2jerryz: we shuold get some output of the pxe_ssh agent output from the console06:57
jerryzHaomeng|2: wait a min06:57
Haomeng|2jerryz: ok06:57
Haomeng|2jiangfei|3: this logic means that if we input more then one netid, for example, two netids, but we just have one NIC in bm, so it can not match, because for each net will be for one single NIC06:59
Haomeng|2jerryz: and paste the conductor log06:59
Haomeng|2jerryz: thank you06:59
*** yuanying_ has quit IRC07:02
jiangfei|3Haomeng|2:  if we input two netid, and bm has four ports.  dows these  two netid working07:03
Haomeng|2jiangfei|3: yes, should work07:04
Haomeng|2jiangfei|3: two physical NICs will be picked up and assign to two net07:04
jiangfei|3Haomeng|2: and neutron will deploy  two ip for these two ports in bm?07:04
jerryzHaomeng|2: the token got expired. it brought up another question, is the token supposed to be updated regularly?07:05
Haomeng|2jerryz: yes, but it should be auto-handled by ironic client, for our case, it is cloned by manually:)07:06
*** yuanying has joined #openstack-ironic07:06
Haomeng|2jiangfei|3: yes, depens on the subnets, if they have dhcp enabled07:06
*** yuanying has quit IRC07:07
jerryzHaomeng|2: https://github.com/openstack/ironic/blob/686f2ebaece43dc0d03e958693bb290a4c865491/ironic/drivers/modules/pxe.py#L45107:07
jerryzHaomeng|2: on what condition is destroy_token called07:08
Haomeng|2jerryz: yes, this is called from deploy ramdisk, to notify conductor, it is ready to dd07:08
Haomeng|2jerryz: pxe deploy ramdisk will prepare the iscsi, if it is ready, will callback via ironic api with the token07:09
Haomeng|2jerryz: so we can see such wget call from the console07:09
Haomeng|2jerryz: can you recreate the issue to see where the ramdisk hangs from the screen of console07:10
*** anderbubble has quit IRC07:12
jerryzHaomeng|2: updating the token file right now07:12
Haomeng|2jerryz: ok:)07:13
*** achanda has quit IRC07:15
jerryzHaomeng|2: conductor said node uuid is not waiting to be deployed07:20
jerryzHaomeng|2: this is the old code, now continue_deployment has changed07:20
Haomeng|2jerryz: can you paste the conductor log?07:20
Haomeng|2jerryz: maybe07:20
Haomeng|2jerryz: and paste the log into paste.openstack.org07:21
jerryzHoameng|2: http://paste.openstack.org/show/159090/07:21
Haomeng|2jerryz: ok, thanks07:21
Haomeng|2jerryz: ok, got, that means the node state is not in valid status07:22
jerryzHaomeng|2: provision_state validation is removed now.07:22
Haomeng|2jerryz: ?07:22
Haomeng|2jerryz: did you know the password for your mysql07:23
Haomeng|2jerryz: if yes, you can reset the node status07:23
jerryzHaomeng|2: first off, i want to make it clear in what status should the node be after a deployment07:27
Haomeng|2jerryz: should be None or error status07:28
jerryzHaomeng|2: right now, the node's provision state is shown as active07:29
Haomeng|2jerryz: so for this status, we can run nova delete to reset the ironic node status07:30
*** Masahiro has quit IRC07:31
Haomeng|2jerryz: if it is active status, that means the _continue_deploy is called, and dd is completed, but what is your console output?07:31
*** david-lyle has joined #openstack-ironic07:31
*** pensu has quit IRC07:31
*** Masahiro has joined #openstack-ironic07:31
jerryzHaomeng|2: still hangs at waiting for notice of complete07:31
jerryzHaomeng|2: because the node provision status is always active07:32
Haomeng|2jerryz: hangs at 10000 port listening?07:32
jerryzHaomeng|2: and the call back from ramdisk is returned error by conductor07:32
Haomeng|2jerryz: what error message07:32
jerryzHaomeng|2: the paste log i sent you07:33
Haomeng|2jerryz: ok, got, that is same issue, the state is wrong07:33
*** pensu has joined #openstack-ironic07:33
Haomeng|2current state is active?07:33
jerryzyes07:34
Haomeng|2jerryz: not sure if your code is so *old*07:34
jerryzHaomeng|2: not until https://review.openstack.org/#/c/140883/07:34
Haomeng|2jerryz: it is strange, all actions done successfully, then it should be in 'active' status07:34
Haomeng|2jerryz: but your state is in 'active' already, that mean _continue_deploy should be called before the state is 'active'07:35
*** david-lyle has quit IRC07:35
Haomeng|2jerryz: recenty, we enchance the status-machine for status translation, so can you try with the latest code?07:36
jerryzHaomeng|2: let me get this straight. if the node is hard rebooted due to power outage, how ironic change the state of the node?07:36
jerryzHaomeng|2: ironic-conductor itself may have been down as well07:37
Haomeng|2jerryz: yes, this is gap07:37
Haomeng|2jerryz: after conductor send signal to 10000 port to bm, conductor think the bm is ready and set to 'active' status, but maybe after restart, it hangs07:37
*** coolsvap is now known as coolsvap|afk07:39
*** yuanying has joined #openstack-ironic07:39
jerryzHaomeng|2: yeah. ironic can't handle a restart?07:40
Haomeng|2jerryz: ironic just rum ipmitool/ssh command to reboot system07:41
*** chlong has quit IRC07:41
Haomeng|2jerryz: but if system hang at some point, can not control07:41
*** david-lyle has joined #openstack-ironic07:42
*** dlpartain has joined #openstack-ironic07:42
jerryzHaomeng|2: you mean i have to reboot the node from nova?07:42
Haomeng|2jerryz: suggestions: update code to date, and delete the instance from nova, and rerun the case again07:43
*** yuanying has quit IRC07:44
*** dlpartain has left #openstack-ironic07:44
*** yuanying has joined #openstack-ironic07:44
jerryzHaomeng|2: i will do that. just scared that a chain of o-o-openstack have to be re-done after this outage07:44
Haomeng|2jerryz: yes, it is diffcult to *clean* the env if something wrong happens07:45
*** yuanying has quit IRC07:45
*** yuanying has joined #openstack-ironic07:46
*** coolsvap|afk is now known as coolsvap07:46
*** david-lyle has quit IRC07:47
jerryzHaomeng|2: thanks for the help.07:47
Haomeng|2jerryz: you are welcome, my pleasure:)07:48
Haomeng|2jerryz: good luck:)07:48
Haomeng|2jerryz: :)07:48
jiangfei|3Haomeng|2: if the machine is deploy successuful,  can ip from neutron dhcp  also working in OS.07:51
*** Masahiro has quit IRC07:52
Haomeng|2jiangfei|3: sure, os will dhcp again and get same ip from neutron dnsmasq with the special mac07:52
jiangfei|3Haomeng|3: ok, thanks07:53
*** yuanying has quit IRC07:57
*** yuanying has joined #openstack-ironic07:58
*** yuanying has quit IRC07:59
*** yuanying has joined #openstack-ironic08:00
*** david-lyle has joined #openstack-ironic08:01
Haomeng|2jiangfei|3: yw08:03
jiangfei|3Haomeng|2: does ipa  boot from network or harddisk when deploy machine successful08:04
*** yuanying has quit IRC08:05
*** david-lyle has quit IRC08:05
*** yuanying has joined #openstack-ironic08:05
*** erwan_taf has joined #openstack-ironic08:06
Haomeng|2jiangfei|3: ipa supports whole disk image, so it can boot from local I think, but I did not test IPA08:14
jiangfei|3Haomeng|2: if ipa boot from local, os can get  same ip from neutron ?08:16
Haomeng|2jiangfei|3: yes08:17
*** gridinv has joined #openstack-ironic08:18
jerryzjiangfei|3: the ip allocation is finalized upon nova boot, whenever the nic dhcp from that mac, neutron will allocate that ip address08:19
Haomeng|2jiangfei|3: yes, neutron will allocate the ip based on the mac08:23
Haomeng|2jiangfei|3: so it will get same ip whenever with same mac08:25
jiangfei|3Haomeng|2: yes, thank you. :)08:26
Haomeng|2jiangfei|3: yw08:26
*** ndipanov has joined #openstack-ironic08:26
jerryzHaomeng|2: i rebuilt the undercloud but this time metadata service seemed to be unreachable08:26
Haomeng|2jerryz: :)08:26
Haomeng|2jerryz: tripleo is complex env, so need some luck:)08:27
*** Nisha has quit IRC08:28
*** ramineni1 has joined #openstack-ironic08:32
dtantsurMorning Ironic08:32
*** ramineni has quit IRC08:35
*** tteggel_ is now known as tteggel08:40
*** tteggel has quit IRC08:40
*** tteggel has joined #openstack-ironic08:40
*** davideagnello has joined #openstack-ironic08:41
*** Nisha has joined #openstack-ironic08:43
*** jcoufal has joined #openstack-ironic08:43
*** davideagnello has quit IRC08:45
*** kylestev|zzz is now known as kylestev08:48
openstackgerritDmitry Tantsur proposed openstack/ironic-specs: Allow drivers to have their own periodic tasks  https://review.openstack.org/13558908:59
*** Marga_ has joined #openstack-ironic09:00
*** ndipanov_ has joined #openstack-ironic09:02
*** ifarkas has joined #openstack-ironic09:03
openstackgerritMichael Kerrin proposed openstack/ironic: Fix ssh _get_power_status as it returned status for wrong node  https://review.openstack.org/14783209:04
*** ndipanov has quit IRC09:05
*** stendulker has joined #openstack-ironic09:06
*** coolsvap is now known as coolsvap|afk09:10
*** coolsvap|afk is now known as coolsvap09:10
*** andreykurilin_ has joined #openstack-ironic09:10
openstackgerritDmitry Tantsur proposed stackforge/ironic-discoverd: Create directory for database if it doesn't exist  https://review.openstack.org/14847009:13
*** eghobo has quit IRC09:14
*** david-lyle has joined #openstack-ironic09:19
*** lucasagomes has joined #openstack-ironic09:21
*** foexle has joined #openstack-ironic09:23
*** ramineni1 has quit IRC09:26
*** chlong has joined #openstack-ironic09:28
*** ramineni has joined #openstack-ironic09:30
dtantsurifarkas, lucasagomes, morning! kind request for both of you to review discoverd documentation update https://review.openstack.org/#/c/148267/09:31
ifarkasdtantsur, morning! I am actually already doing that! ;-)09:31
dtantsuroh cool09:31
* dtantsur brb09:32
lucasagomesdtantsur, will do 1 sec09:33
*** Nisha has quit IRC09:34
* lucasagomes still very jetlagged :(09:35
*** jistr has joined #openstack-ironic09:35
*** Marga_ has quit IRC09:38
*** romcheg has joined #openstack-ironic09:42
*** MattMan has quit IRC09:55
openstackgerritMerged stackforge/ironic-discoverd: Create directory for database if it doesn't exist  https://review.openstack.org/14847009:55
*** MattMan has joined #openstack-ironic10:01
*** kbyrne has joined #openstack-ironic10:01
*** ndipanov_ has quit IRC10:04
*** vdrok has quit IRC10:10
openstackgerritDmitry Tantsur proposed stackforge/ironic-discoverd: Update README for 1.0.0 release  https://review.openstack.org/14826710:10
*** vdrok has joined #openstack-ironic10:12
*** kbyrne has quit IRC10:15
*** ndipanov_ has joined #openstack-ironic10:17
*** pelix has joined #openstack-ironic10:20
*** saripurigopi has joined #openstack-ironic10:21
*** kbyrne has joined #openstack-ironic10:22
*** naohirot has quit IRC10:30
*** hshiina has left #openstack-ironic10:34
gilliardGood morning Ironic10:41
dtantsurgilliard, morning10:42
openstackgerritMerged stackforge/ironic-discoverd: Update README for 1.0.0 release  https://review.openstack.org/14826710:44
*** andreykurilin_ has quit IRC10:46
*** andreykurilin_ has joined #openstack-ironic10:47
*** Marga_ has joined #openstack-ironic10:48
*** pradipta is now known as pradipta_away10:52
lucasagomesgilliard, morning10:54
openstackgerritMerged openstack/ironic: Fix RPCService and Ironic Conductor so they shut down gracefully  https://review.openstack.org/14732510:57
openstackgerritDmitry Tantsur proposed stackforge/ironic-discoverd: MANAGED -> MANAGEABLE  https://review.openstack.org/14849511:00
openstackgerritDmitry Tantsur proposed stackforge/ironic-discoverd: Use --config-file argument in functional testing  https://review.openstack.org/14849611:03
*** chenglch has quit IRC11:03
*** ramineni has quit IRC11:03
*** Nisha has joined #openstack-ironic11:09
*** smoriya has quit IRC11:11
openstackgerritMerged openstack/ironic: Remove lockfile from dependencies  https://review.openstack.org/14825011:12
*** Nisha_away has joined #openstack-ironic11:13
*** rameshg87 has quit IRC11:13
*** marios__ has joined #openstack-ironic11:14
*** marios_ has quit IRC11:14
*** Nisha has quit IRC11:16
openstackgerritDmitry Tantsur proposed stackforge/ironic-discoverd: Get rid of monkey patching work around for Python 2 in main.py  https://review.openstack.org/14850211:19
*** andreykurilin_ has quit IRC11:20
openstackgerritFrederic Lepied proposed stackforge/ironic-discoverd: Add eDeploy plugin  https://review.openstack.org/14659911:22
*** Marga_ has quit IRC11:22
*** naohirot has joined #openstack-ironic11:24
*** marios__ has quit IRC11:24
*** marios_ has joined #openstack-ironic11:25
*** stendulker has quit IRC11:31
*** Nisha_away has quit IRC11:32
*** marios_ is now known as marios11:34
*** saripurigopi has quit IRC11:35
*** derekh has joined #openstack-ironic11:47
*** romcheg has quit IRC11:48
*** lsmola_ has quit IRC11:57
openstackgerritTan Lin proposed openstack/ironic-specs: Bare Metal Trust Using Intel TXT  https://review.openstack.org/13390211:58
*** lsmola has joined #openstack-ironic12:01
*** pcaruana has joined #openstack-ironic12:17
*** davideagnello has joined #openstack-ironic12:18
*** davideagnello has quit IRC12:23
*** lucasagomes is now known as lucas-hungry12:24
*** pensu has quit IRC12:29
openstackgerritNaohiro Tamura proposed openstack/ironic: Add iRMC Driver and its iRMC Power module  https://review.openstack.org/14490112:30
*** pensu has joined #openstack-ironic12:30
*** igordcard has joined #openstack-ironic12:37
*** romcheg has joined #openstack-ironic12:43
*** dprince has joined #openstack-ironic12:44
openstackgerritMerged openstack/ironic: Remove jsonutils from openstack.common  https://review.openstack.org/14825112:47
*** gridinv has quit IRC12:56
*** romcheg has quit IRC13:11
*** romcheg has joined #openstack-ironic13:13
*** ryanpetrello has joined #openstack-ironic13:13
*** EmilienM|afk is now known as EmilienM13:21
*** lucas-hungry is now known as lucasagomes13:30
*** jjohnson2 has joined #openstack-ironic13:33
*** jjohnson2_ has joined #openstack-ironic13:34
*** jjohnson2 has quit IRC13:34
*** rameshg87 has joined #openstack-ironic13:40
*** naohirot has quit IRC13:41
*** rloo has joined #openstack-ironic13:48
*** romcheg has quit IRC13:51
jjohnson2_Has anyone tried out confluent for console management or would be interested?13:53
*** jgrimm is now known as zz_jgrimm14:00
*** romcheg has joined #openstack-ironic14:04
*** kylestev is now known as kylestev|making_14:14
*** kylestev|making_ is now known as kylestev|food14:14
*** anderbubble has joined #openstack-ironic14:14
openstackgerritsteverweber proposed stackforge/pyghmi: add more commands  https://review.openstack.org/14803614:18
NobodyCamalmost morning Ironic14:20
openstackgerritRuby Loo proposed openstack/ironic: Clean up ilo's parse_driver_info()  https://review.openstack.org/14838214:22
*** mjturek has joined #openstack-ironic14:24
lucasagomesNobodyCam, rloo g'morning :)14:24
rlooafternoon lucasagomes; good almost-morning NobodyCam14:25
NobodyCammorning lucasagomes and rloo :_14:25
*** kylestev|food is now known as kylestev14:26
Shrewsrloo: morning! about https://review.openstack.org/147700... i agree those aren't transitions we currently support. I just wonder if the intent is to eventually support those?14:32
rlooShrews: I thought about it. I don't know if that is the intent or not. If it is, then it can be added when code is there to do that. If it isn't, then those transitions will hang around and someone might wonder later...14:33
* Shrews probably should ask such hard questions so early in the morning ;)14:33
rlooShrews: it isn't that early is it? :-)14:33
Shrewss/should/should not/14:33
Shrewsanything before noon is early  :-P14:33
rlooShrews: ha ha.14:34
rlooShrews: btw, with the new fsm and new *FAIL states, I don't know when ERROR would be used.14:34
Shrewsrloo: yeah, i was wondering the same thing.14:35
Shrewswe do have an 'error' on node tear down14:36
*** lazy_prince2 has joined #openstack-ironic14:36
Shrewsbut i think that is just to represent "current" state machine14:36
rlooShrews: right, that is for our current state machine. the only thing now that isn't current, is leaving target_provision_state as ACTIVE when DEPLOYFAIL. and that breaks things right now14:37
rlooShrews: https://bugs.launchpad.net/ironic/+bug/140542014:39
openstackgerritDmitry Tantsur proposed stackforge/ironic-discoverd: Fix reporting errors happened in background thread of introspect()  https://review.openstack.org/14857814:40
openstackgerritMerged stackforge/pyghmi: add more commands  https://review.openstack.org/14803614:46
openstackgerritVladyslav Drok proposed openstack/ironic: Support for non-Glance image references  https://review.openstack.org/13674114:48
* NobodyCam gets another cup of coffee14:49
openstackgerritDmitry Tantsur proposed stackforge/ironic-discoverd: Add missing test for client and mark some code as non-covered  https://review.openstack.org/14858414:53
dtantsurmorning NobodyCam, rloo, Shrews14:53
rlooafternoon dtantsur!14:54
*** anderbubble has quit IRC14:55
NobodyCammoorning dtantsur :)14:55
NobodyCammornign Shrews :)14:55
Shrewshey dtantsur and NobodyCam14:57
jrollmorning rloo NobodyCam dtantsur Shrews lucasagomes and everyone else :D15:10
*** pensu has quit IRC15:10
dtantsurjroll, o/15:10
rloohi jroll15:10
NobodyCammorning jroll15:10
lucasagomesjroll, yo morning15:11
NobodyCamoh jroll are you going to push up a new 143480?15:11
jrollNobodyCam: yeah, my todo list is massive right now :P15:11
jrollI was also thinking more, should check if neutron can dhcp something on a vlan15:12
jrollthough tftp won't be reachable :/15:12
jrolls/dhcp/pxe/15:12
* jroll wonders if there's anything that can be done about that, I think this will have to be localboot only15:12
NobodyCam:-p15:16
*** coolsvap is now known as coolsvap|afk15:16
NobodyCamjroll: seems that would work15:20
NobodyCamsome quick googling uncovered this: http://www.symantec.com/business/support/index?page=content&id=HOWTO107115:21
jjohnson2_jroll, tftp can be reachable.  Setting up relay dhcp is how we typically handle the cross vlan case15:23
jrollNobodyCam: but part of the point is that tenant instances can't reach the control plane, so how do we get to tftp on the conductor?15:23
jjohnson2_thoguh more commonly, we advocate for a presence on the vlan, it's usually easier than trying to get relaydhcp15:23
jrollNobodyCam: the conductor would have to sit on all vlans and be reachable by tenants15:23
jrolljjohnson2_: right, I'm aware of dhcp relat, my question is if neutron can do this :)15:24
jrollrelay*15:24
jrollthinking about booting tenant instances, the ramdisk and provisioning network is easily solved15:24
* dtantsur brb15:25
jjohnson2_fyi, in xCAT land, we are working toward having a netboot service manager that can live on networks and have some of the stuff delegated15:26
jjohnson2_and be able to live indepdent of DHCP (though pxe requires *a* viable short term address, the usual case switches to a static address immediately)15:26
openstackgerritVladyslav Drok proposed openstack/ironic: Support for non-Glance image references  https://review.openstack.org/13674115:27
*** vdrok is now known as vdrok_afk15:31
*** Marga_ has joined #openstack-ironic15:38
*** BadCub01_ has joined #openstack-ironic15:42
*** alexpilotti has joined #openstack-ironic15:47
*** rameshg87 has quit IRC15:50
*** achanda has joined #openstack-ironic15:50
*** kylestev is now known as kylestev|afk15:50
* devananda lurks while in meetings15:51
jrollmorning devananda15:52
*** pcrews has joined #openstack-ironic15:52
NobodyCammorning devananda :)15:53
*** achanda has quit IRC15:55
BadCub01_morning Ironic :-)15:55
lucasagomesdevananda, good morning15:58
*** ndipanov_ has quit IRC15:59
*** ijw has quit IRC16:00
*** athomas has quit IRC16:02
*** athomas has joined #openstack-ironic16:06
*** ijw has joined #openstack-ironic16:09
openstackgerritMerged openstack/ironic: Remove unused state transitions  https://review.openstack.org/14770016:11
*** ndipanov_ has joined #openstack-ironic16:12
openstackgerritMerged openstack/ironic: Fix ssh _get_power_status as it returned status for wrong node  https://review.openstack.org/14783216:15
*** martini has joined #openstack-ironic16:15
*** rameshg87 has joined #openstack-ironic16:17
*** jcoufal has quit IRC16:17
NobodyCamhttps://etherpad.openstack.org/p/ProliantCI <https://etherpad.openstack.org/p/ProliantCI>16:26
NobodyCamww16:26
*** andreykurilin_ has joined #openstack-ironic16:26
*** anderbubble has joined #openstack-ironic16:28
*** anderbubble has quit IRC16:28
*** anderbubble has joined #openstack-ironic16:29
*** andreykurilin_ has quit IRC16:37
*** andreykurilin__ has joined #openstack-ironic16:37
*** anderbubble has quit IRC16:40
*** marios has quit IRC16:42
*** afaranha has quit IRC16:43
*** ndipanov_ has quit IRC16:46
*** ndipanov has joined #openstack-ironic16:47
*** anderbubble has joined #openstack-ironic16:49
*** Nisha has joined #openstack-ironic16:49
openstackgerritOpenStack Proposal Bot proposed openstack/ironic: Updated from global requirements  https://review.openstack.org/14863416:54
openstackgerritOpenStack Proposal Bot proposed openstack/ironic-python-agent: Updated from global requirements  https://review.openstack.org/14863616:54
*** achanda has joined #openstack-ironic16:58
openstackgerritMerged stackforge/ironic-discoverd: Use --config-file argument in functional testing  https://review.openstack.org/14849616:58
openstackgerritMerged stackforge/ironic-discoverd: MANAGED -> MANAGEABLE  https://review.openstack.org/14849516:59
*** andreykurilin__ has quit IRC17:00
*** andreykurilin_ has joined #openstack-ironic17:00
*** trown is now known as trown|lunch17:01
*** mkerrin has quit IRC17:02
*** BadCub01_ has quit IRC17:03
*** andreykurilin_ has quit IRC17:05
*** eghobo has joined #openstack-ironic17:05
*** achanda has quit IRC17:07
*** jerryz has quit IRC17:07
*** rwsu has joined #openstack-ironic17:08
*** zz_jgrimm is now known as jgrimm17:08
*** lazy_prince2 has quit IRC17:11
openstackgerritNisha Agarwal proposed openstack/ironic-specs: Discover node properties for iLO drivers  https://review.openstack.org/10300717:12
*** datajerk has quit IRC17:13
*** Marga_ has quit IRC17:13
*** davideagnello has joined #openstack-ironic17:15
*** Hefeweizen has quit IRC17:15
*** rameshg87 has quit IRC17:19
*** penick has joined #openstack-ironic17:20
*** pensu has joined #openstack-ironic17:24
openstackgerritMerged stackforge/ironic-discoverd: Add missing test for client and mark some code as non-covered  https://review.openstack.org/14858417:24
openstackgerritMerged stackforge/ironic-discoverd: Get rid of monkey patching work around for Python 2 in main.py  https://review.openstack.org/14850217:26
*** anderbubble has quit IRC17:26
*** BadCub01_ has joined #openstack-ironic17:26
*** marios has joined #openstack-ironic17:28
*** romcheg has quit IRC17:29
*** romcheg has joined #openstack-ironic17:29
*** romcheg has quit IRC17:30
* NobodyCam is about to not be homeless any more :-p17:38
* BadCub01_ prepares for escrow insanity17:39
jroll\o/17:39
*** yjiang5 is now known as yjiang5_away17:41
*** lazy_prince has quit IRC17:43
*** athomas has quit IRC17:44
*** eghobo has quit IRC17:45
*** dlaube has joined #openstack-ironic17:52
*** athomas has joined #openstack-ironic17:53
*** derekh has quit IRC17:53
*** anderbubble has joined #openstack-ironic17:53
*** davideagnello has quit IRC17:57
*** igordcard has quit IRC17:58
* NobodyCam steps afk17:58
*** Marga_ has joined #openstack-ironic17:59
*** coolsvap|afk has quit IRC18:00
*** pcaruana has quit IRC18:00
*** ijw has quit IRC18:01
*** killer_prince has joined #openstack-ironic18:05
*** killer_prince is now known as lazy_prince18:05
NobodyCamgah some else also has an offer in on OUR house. :-p18:07
*** chlong has quit IRC18:08
*** romcheg has joined #openstack-ironic18:09
*** ijw has joined #openstack-ironic18:11
*** ifarkas has quit IRC18:11
*** achanda has joined #openstack-ironic18:11
*** jistr has quit IRC18:14
lucasagomesok folks I will call it a day18:14
lucasagomeshave good night everyone18:14
*** lucasagomes is now known as lucas-dinner18:15
*** dtantsur is now known as dtantsur|afk18:16
NobodyCamhave a good night lucas-dinner18:16
NobodyCam'night dtantsur|afk too18:17
dtantsur|afkg'night!18:17
NobodyCam:)18:17
*** ijw has quit IRC18:18
*** yjiang5_away is now known as yjiang518:19
*** erwan_taf has quit IRC18:20
*** spandhe has joined #openstack-ironic18:21
*** ndipanov is now known as ndipanov_gone18:22
*** spandhe has quit IRC18:24
*** harlowja_away is now known as harlowja18:24
*** spandhe has joined #openstack-ironic18:26
*** spandhe has left #openstack-ironic18:26
*** spandhe has joined #openstack-ironic18:26
*** achanda has quit IRC18:28
*** pelix has quit IRC18:28
*** eghobo has joined #openstack-ironic18:48
*** achanda has joined #openstack-ironic18:50
*** davideagnello has joined #openstack-ironic19:06
*** davideagnello has quit IRC19:07
*** dtantsur|afk has quit IRC19:08
*** xxj has quit IRC19:08
*** xxj has joined #openstack-ironic19:09
*** lsmola has quit IRC19:09
*** ndipanov_gone has quit IRC19:10
*** dtantsur has joined #openstack-ironic19:13
*** kylestev|afk is now known as kylestev19:18
*** ndipanov_gone has joined #openstack-ironic19:21
*** dprince has quit IRC19:22
*** lsmola has joined #openstack-ironic19:23
*** andreykurilin_ has joined #openstack-ironic19:27
*** achanda has quit IRC19:29
*** achanda has joined #openstack-ironic19:32
*** pensu has quit IRC19:35
*** trown|lunch is now known as trown19:36
*** david-lyle has quit IRC19:37
*** zer0c00l has quit IRC19:38
*** zer0c00l has joined #openstack-ironic19:40
*** openstackstatus has joined #openstack-ironic19:45
*** ChanServ sets mode: +v openstackstatus19:45
*** romcheg has quit IRC19:50
-openstackstatus- NOTICE: Gerrit restarted to address likely memory leak leading to server slowness. Sorry if you were caught in the restart19:53
*** romcheg has joined #openstack-ironic19:57
*** shakamunyi has joined #openstack-ironic20:00
*** Nisha has quit IRC20:02
*** achanda has quit IRC20:03
*** ijw has joined #openstack-ironic20:06
*** shakamunyi has quit IRC20:17
*** erwan_taf has joined #openstack-ironic20:17
*** Hefeweizen has joined #openstack-ironic20:18
*** shakamunyi has joined #openstack-ironic20:19
*** shakamunyi has quit IRC20:20
*** shakamunyi has joined #openstack-ironic20:21
*** romcheg has quit IRC20:23
*** romcheg has joined #openstack-ironic20:26
*** achanda has joined #openstack-ironic20:44
*** Marga_ has quit IRC20:45
*** Marga_ has joined #openstack-ironic20:45
*** shakamunyi has quit IRC20:46
victor_lowtherhm, the drac driver seems to care about SSL cert validity now.20:50
*** Marga_ has quit IRC20:50
*** ijw has quit IRC20:50
jrollvictor_lowther: maybe a dependency suddenly cares20:50
victor_lowtherIt probably shouldn't by default.20:50
*** Marga_ has joined #openstack-ironic20:50
jrollor actually, python 2.7.8 enables verification by default20:50
victor_lowtherIt used to not care.20:50
* victor_lowther hunts for the stop_caring decorator20:50
jrollprobably a requests/urllib parameter20:51
*** Marga_ has quit IRC20:51
*** Marga_ has joined #openstack-ironic20:51
jrolldunno what drac driver uses under the hood20:51
victor_lowtherpywsman20:51
*** achanda has quit IRC20:51
jrollvictor_lowther: are you running 2.7.8?20:51
jrollehhhhh20:51
victor_lowtherhm20:53
victor_lowtherthe code seems to be setting the stop caring flag20:53
victor_lowtheranyone seen ifarkas lately?20:54
*** Marga_ has quit IRC20:54
*** Marga_ has joined #openstack-ironic20:55
jrollnot really20:55
jrollI'd file a bug20:55
jrollor email the list20:55
*** Marga_ has quit IRC20:55
*** Marga_ has joined #openstack-ironic20:56
*** shakamunyi has joined #openstack-ironic20:57
*** mrda-away is now known as mrda20:57
mrdaMorning Ironic20:58
victor_lowtherhuh, rameshg is also not on the channel.20:58
victor_lowtherMust be a meeting or something.20:58
*** Marga_ has quit IRC20:59
*** Marga_ has joined #openstack-ironic20:59
jrollvictor_lowther: no, they don't use bouncers20:59
victor_lowthermy IRC life got much easier to manage when I found irccloud.21:00
*** krtaylor has quit IRC21:00
*** ijw has joined #openstack-ironic21:01
*** ijw has quit IRC21:06
*** Marga_ has quit IRC21:06
*** ijw has joined #openstack-ironic21:06
*** Marga_ has joined #openstack-ironic21:06
*** anderbubble has quit IRC21:09
*** krtaylor has joined #openstack-ironic21:13
*** dprince has joined #openstack-ironic21:15
victor_lowtherjroll: also, python 2.7.621:15
jrollorly21:16
jrollinteresting.21:16
victor_lowtherwsman.wsman_transport_set_verify_peer(pywsman_client, False) <-- does not appear to be doing The Right Thing21:16
jrollfile a bug or email the list21:17
jrollor fix it21:17
victor_lowtherI will see21:17
victor_lowtherhopefully it is not a pywsman bug21:17
victor_lowtherwhich it could be21:17
jrollI mean, that's also fixable21:18
victor_lowtheryeah, but that is not an openstack thing21:18
jrollmakes it easier to fix no? :P21:18
jrollif this is a contribution rights thing21:18
jrollsend me the patch and I'll submit it :P21:18
mrdalol21:18
victor_lowtherYou have clealy never dealt with the openwsman codebase.21:18
victor_lowther:)21:18
jrollha21:19
* NobodyCam is back21:24
victor_lowtherlovely -- a pile of undoccumented autogenerated SWIG21:24
victor_lowtherat least the ruby bindings are documented, sorta.21:24
*** davideagnello has joined #openstack-ironic21:25
*** Marga_ has quit IRC21:27
*** Marga_ has joined #openstack-ironic21:27
*** davideagnello has quit IRC21:29
*** davideagnello has joined #openstack-ironic21:30
*** erwan_taf has quit IRC21:32
*** BadCub01_ has quit IRC21:33
*** eghobo has quit IRC21:37
*** Marga_ has quit IRC21:40
*** Marga_ has joined #openstack-ironic21:41
*** Marga_ has quit IRC21:42
*** Marga_ has joined #openstack-ironic21:42
*** Marga_ has quit IRC21:43
*** Marga_ has joined #openstack-ironic21:44
*** anderbubble has joined #openstack-ironic21:44
*** Marga_ has quit IRC21:44
*** Marga_ has joined #openstack-ironic21:45
*** BadCub01_ has joined #openstack-ironic21:49
*** jeblair has quit IRC21:51
*** achanda has joined #openstack-ironic21:57
*** romcheg1 has joined #openstack-ironic22:00
*** romcheg has quit IRC22:02
*** davideagnello has quit IRC22:02
*** davideagnello has joined #openstack-ironic22:04
*** BadCub01_ has quit IRC22:05
*** dprince has quit IRC22:08
*** jjohnson2_ has quit IRC22:09
NobodyCamjust added an Item to the agenda22:09
openstackgerritRuby Loo proposed openstack/ironic: Improve docstrings about TaskManager's spawning feature  https://review.openstack.org/14873422:12
*** achanda has quit IRC22:19
kylestevanyone have bugs in bugs.launchped.net that they'd like fixed? looking for (estimated) small-medium patches that would help the community the most!22:19
kylestevNobodyCam: mrda: ? ^22:20
*** achanda has joined #openstack-ironic22:20
NobodyCamhey kylestev22:21
NobodyCamsearch bugs for the tag low-hanging-fruit22:22
NobodyCamthat be a great strt22:22
kylestevcool :) thank you22:24
*** ijw has quit IRC22:24
mrdakylestev: So 1271317 could be done.  There's now upstream support for specifying whether XML is supported.  Our http endpoints just need annotating to remove XML (and just allow JSON).22:24
mrdaI just haven't had time since the upstream code was completed22:25
NobodyCamanyone seen Tom Hancock ?22:26
NobodyCamwould love to see https://review.openstack.org/#/c/126625 get some love22:26
NobodyCam:-p22:26
openstackgerritVictor Lowther proposed openstack/ironic: DRAC: Fix wsman host verification  https://review.openstack.org/14873722:27
*** Marga_ has quit IRC22:31
*** Marga_ has joined #openstack-ironic22:31
*** Marga_ has quit IRC22:31
*** Marga_ has joined #openstack-ironic22:32
*** Marga_ has quit IRC22:33
*** BadCub_ has joined #openstack-ironic22:33
*** Marga_ has joined #openstack-ironic22:33
*** Marga_ has quit IRC22:34
*** Marga_ has joined #openstack-ironic22:35
*** igordcard has joined #openstack-ironic22:35
*** Marga_ has quit IRC22:35
*** Marga_ has joined #openstack-ironic22:36
*** BadCub_ has quit IRC22:36
*** igordcard has quit IRC22:36
*** Marga_ has quit IRC22:38
kylestevmrda: alright. sounds straight forward. I'll take a closer look tomorrow morning22:38
*** Marga_ has joined #openstack-ironic22:39
kylestevthat email thread from 01/2014 was very interesting22:40
*** Marga_ has quit IRC22:41
*** Marga_ has joined #openstack-ironic22:41
*** Marga_ has quit IRC22:42
*** Marga_ has joined #openstack-ironic22:42
*** Marga_ has quit IRC22:43
*** Marga_ has joined #openstack-ironic22:43
*** ryanpetrello has quit IRC22:44
*** Marga_ has quit IRC22:45
*** Marga_ has joined #openstack-ironic22:46
*** BadCub_ has joined #openstack-ironic22:47
*** zer0c00l has quit IRC22:55
*** zer0c00l1 has joined #openstack-ironic22:55
*** zer0c00l has joined #openstack-ironic22:56
*** spandhe has quit IRC22:57
*** Marga_ has quit IRC22:58
*** Marga_ has joined #openstack-ironic22:58
*** ryanpetrello has joined #openstack-ironic22:58
*** foexle has quit IRC22:58
*** davideagnello has quit IRC23:01
*** davideagnello has joined #openstack-ironic23:02
NobodyCamaweeks: just checking if 112682 is still on your todo list23:03
jrollhe's out sick today23:03
jrollbut yes23:03
NobodyCam:)23:03
jroll:P23:03
NobodyCamty jroll23:03
jrollnot a problem23:03
jrollquiet channel today23:03
NobodyCamya... Nice for holiday revovery23:04
NobodyCamrecovery even23:04
jrollja23:05
jrollha*23:05
jrollfor the lucky folks that had a holiday, that is...23:05
jroll:23:05
jroll:P23:05
jrollwow, cannot type today23:05
NobodyCamhehehee23:05
*** spandhe has joined #openstack-ironic23:07
*** BadCub_ has quit IRC23:07
*** zer0c00l1 has quit IRC23:14
*** martini has quit IRC23:19
*** romcheg1 has quit IRC23:20
*** achanda has quit IRC23:21
*** ChuckC has quit IRC23:21
*** ChuckC has joined #openstack-ironic23:21
*** achanda has joined #openstack-ironic23:21
*** anderbubble has quit IRC23:29
*** ChuckC has quit IRC23:30
*** BadCub01_ has joined #openstack-ironic23:36
*** shakamunyi has quit IRC23:38
*** Haomeng has joined #openstack-ironic23:39
*** Haomeng|2 has quit IRC23:40
*** chlong has joined #openstack-ironic23:40
*** ChuckC has joined #openstack-ironic23:42
*** naohirot has joined #openstack-ironic23:45
*** kylestev is now known as kylestev|afk23:45
*** chlong has quit IRC23:45
*** chlong has joined #openstack-ironic23:46
*** achanda has quit IRC23:48
*** Haomeng|2 has joined #openstack-ironic23:48
*** Haomeng has quit IRC23:48
naohirotgood morning ironic23:49
*** Marga_ has quit IRC23:49
*** Marga_ has joined #openstack-ironic23:50
*** achanda has joined #openstack-ironic23:50
*** Marga_ has quit IRC23:51
*** Marga_ has joined #openstack-ironic23:52
NobodyCammorning naohirot23:55
naohirotNobodyCam: good evening23:55
NobodyCam:)23:56
naohirotNobodyCam: thank you for the review, I just looked at your comments.23:56
naohirotnaohirot: phthon-scci client URL and iRMC Mgt and Deploy Spec URLs are not available at this moment.23:57
naohirotNobodyCam: I noted in the comment area.23:57

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