| JoshNang | cd oslo | 00:02 |
|---|---|---|
| JoshNang | :/ wrong window | 00:02 |
| clif_h | adam_g: I think I'm going to pick this up monday morning, as its friday evening. Thanks for your help. | 00:04 |
| clif_h | Probably something wrong with my change. | 00:04 |
| adam_g | clif_h, no worries. i'll be out on monday and tuesday for 2 freaking days of jury duty but i'll respond to pings on irc in the evening if you need anything | 00:05 |
| clif_h | adam_g: thanks much! sorry about the jury duty | 00:06 |
| JayF | JoshNang: 404 Norway not found | 00:06 |
| JoshNang | :P | 00:06 |
| openstackgerrit | Adam Gandelman proposed openstack/ironic: Do not pass PXE net config from bootloader to ramdisk https://review.openstack.org/141148 | 00:10 |
| NobodyCam | ieek we lost Norway... how does one lose a whole Country | 00:11 |
| JayF | NobodyCam: I looked all around my desk and couldn't find it | 00:11 |
| NobodyCam | lol | 00:11 |
| *** romcheg has quit IRC | 00:12 | |
| *** shakamunyi has quit IRC | 00:15 | |
| *** ryanpetrello has quit IRC | 00:25 | |
| *** andreykurilin_ has quit IRC | 00:28 | |
| *** ryanpetrello has joined #openstack-ironic | 00:34 | |
| *** Masahiro has joined #openstack-ironic | 00:36 | |
| *** anderbubble has joined #openstack-ironic | 00:36 | |
| *** anderbubble has quit IRC | 00:38 | |
| *** Masahiro has quit IRC | 00:40 | |
| * NobodyCam is going to start the weekend | 00:42 | |
| NobodyCam | have a good night ya'll | 00:42 |
| *** jb11211 has quit IRC | 00:42 | |
| NobodyCam | I may be around this weekend working on the PixieBootsBot :-p | 00:43 |
| *** ryanpetrello has quit IRC | 00:43 | |
| *** rlr0329 has joined #openstack-ironic | 00:45 | |
| *** ryanpetrello has joined #openstack-ironic | 00:46 | |
| rlr0329 | I have installed ironic with devstack using the stable/juno branch and I am trying to deploy images on a baremetal node using the pxe_ipmitool driver. When I try to node-set-provision-state to active I get "Failed to deploy. Error: No VIFs found for node <node> when attempting to update DHCP BOOT options. Looking at ironic.common.network.py it appears that it is looking for the vif info in the port extra attribute. | 00:47 |
| rlr0329 | However, in the port I just created the extra attribute is empty. When/how is that data supposed to be populated? | 00:47 |
| *** ChuckC has quit IRC | 00:51 | |
| *** david-lyle is now known as david-lyle_afk | 00:51 | |
| *** ryanpetrello has quit IRC | 00:51 | |
| NobodyCam | rlr0329: the nova driver sets many things... it can be done with out nova.. but I would start by refering you to what the nova driver does. https://github.com/openstack/nova/blob/master/nova/virt/ironic/driver.py#L285-L303 | 00:55 |
| rlr0329 | NobodyCam: Going to look at that. Thx | 00:56 |
| *** ChuckC has joined #openstack-ironic | 01:11 | |
| *** ryanpetrello has joined #openstack-ironic | 01:12 | |
| *** marcoemorais has quit IRC | 01:12 | |
| *** marcoemorais has joined #openstack-ironic | 01:13 | |
| *** ryanpetrello has quit IRC | 01:24 | |
| Haomeng|2 | NobodyCam: morning:) | 01:27 |
| Haomeng|2 | rlr0329: yes, if you dont want to use nova and neutron, just set dhcp_provider=none, then run dnsmasq to do dhcp+pxe configuration by manually | 01:27 |
| *** marcoemorais has quit IRC | 01:28 | |
| *** marcoemorais has joined #openstack-ironic | 01:28 | |
| Haomeng|2 | rlr0329: this is the dnsmasq conf sample - http://paste.openstack.org/show/149196/ | 01:29 |
| rlr0329 | haomeng: I am trying to use nova and neutron. Is the dnsmasq conf sample if I want to do it manually? | 01:33 |
| Haomeng|2 | rlr0329: yes, if we use default configuration, have to run nova boot to launch the bm provision | 01:35 |
| Haomeng|2 | rlr0329: so no need to set dnsmasq.conf by manually if you did not change dhcp_provider to none in ironic.conf | 01:35 |
| Haomeng|2 | rlr0329: :) | 01:35 |
| rlr0329 | I did not set it to non. I think part of what I may be missing is the sequence of creation and relationship between the node and the instance. So do I create the node first and then use nova boot to create the instance? | 01:36 |
| rlr0329 | haomeng|2: dhcp_provider is not set in my ironic.conf so it defaults to neutron correct? | 01:37 |
| *** Nisha has quit IRC | 01:38 | |
| *** shakamunyi has joined #openstack-ironic | 01:39 | |
| Haomeng|2 | rlr0329: yes, default is neutron | 01:40 |
| *** dlaube has quit IRC | 01:40 | |
| rlr0329 | haomeng: Is the correct sequence to 1. create node 2. set node-provision-state to active 3. use nova boot to launch the provision? | 01:42 |
| *** shakamunyi has quit IRC | 01:44 | |
| *** marcoemorais has quit IRC | 01:51 | |
| *** marcoemorais has joined #openstack-ironic | 01:51 | |
| Haomeng|2 | rlr0329: no | 01:55 |
| Haomeng|2 | rlr0329: 1. create node, 2 nova boot | 01:55 |
| Haomeng|2 | rlr0329: no need to ruhn node-provision-state by manually | 01:55 |
| Haomeng|2 | rlr0329: nova boot will call neutron api to prepare neutron dhcp port and set pxe options | 01:56 |
| Haomeng|2 | rlr0329: so that is normal way to run ironic | 01:56 |
| Haomeng|2 | rlr0329: with nova boot | 01:56 |
| rlr0329 | haomeng: that helps how does nova boot know which node to use? the flavor? | 01:57 |
| rlr0329 | haomeng: after the node-validate is successful, then run nova boot. correct? | 01:58 |
| *** ryanpetrello has joined #openstack-ironic | 02:02 | |
| NobodyCam | morning Haomeng|2 :) | 02:06 |
| *** jb11211 has joined #openstack-ironic | 02:12 | |
| *** ryanpetrello has quit IRC | 02:15 | |
| *** marcoemorais has quit IRC | 02:20 | |
| *** Masahiro has joined #openstack-ironic | 02:25 | |
| *** jb11211 has quit IRC | 02:26 | |
| *** kexiaodong has joined #openstack-ironic | 02:29 | |
| *** Masahiro has quit IRC | 02:29 | |
| *** Haomeng has joined #openstack-ironic | 02:30 | |
| *** ryanpetrello has joined #openstack-ironic | 02:30 | |
| *** Haomeng|2 has quit IRC | 02:31 | |
| *** ryanpetrello has quit IRC | 02:47 | |
| *** Marga_ has quit IRC | 03:01 | |
| openstackgerrit | Tan Lin proposed openstack/ironic-specs: Update amt-pxe-driver spec https://review.openstack.org/141269 | 03:06 |
| openstackgerrit | Tan Lin proposed openstack/ironic-specs: Update amt-pxe-driver spec https://review.openstack.org/141269 | 03:13 |
| *** Masahiro has joined #openstack-ironic | 03:41 | |
| *** Masahiro has quit IRC | 03:45 | |
| *** spandhe has joined #openstack-ironic | 04:04 | |
| *** lazy_prince has quit IRC | 04:10 | |
| *** harlowja is now known as harlowja_away | 04:34 | |
| *** Marga_ has joined #openstack-ironic | 04:34 | |
| *** Marga_ has quit IRC | 04:35 | |
| *** Marga_ has joined #openstack-ironic | 04:36 | |
| *** marcoemorais has joined #openstack-ironic | 05:24 | |
| *** marcoemorais1 has joined #openstack-ironic | 05:26 | |
| *** masco has joined #openstack-ironic | 05:27 | |
| *** marcoemorais has quit IRC | 05:29 | |
| *** Masahiro has joined #openstack-ironic | 05:29 | |
| *** Masahiro has quit IRC | 05:34 | |
| *** anderbubble has joined #openstack-ironic | 06:05 | |
| *** spandhe has quit IRC | 06:21 | |
| *** killer_prince has joined #openstack-ironic | 06:25 | |
| *** killer_prince is now known as lazy_prince | 06:26 | |
| *** achanda has joined #openstack-ironic | 06:28 | |
| *** anderbubble has quit IRC | 06:34 | |
| *** Marga_ has quit IRC | 06:35 | |
| *** achanda has quit IRC | 06:40 | |
| *** achanda has joined #openstack-ironic | 06:40 | |
| *** achanda_ has joined #openstack-ironic | 06:43 | |
| *** achanda has quit IRC | 06:45 | |
| *** anderbubble has joined #openstack-ironic | 06:49 | |
| *** anderbubble has quit IRC | 06:53 | |
| *** lazy_prince has quit IRC | 07:09 | |
| *** Masahiro has joined #openstack-ironic | 07:15 | |
| *** Masahiro has quit IRC | 07:19 | |
| *** enikanorov has joined #openstack-ironic | 07:23 | |
| *** achanda_ has quit IRC | 07:24 | |
| *** enikanorov_ has quit IRC | 07:26 | |
| *** killer_prince has joined #openstack-ironic | 07:26 | |
| *** killer_prince is now known as lazy_prince | 07:26 | |
| *** achanda has joined #openstack-ironic | 07:28 | |
| *** achanda has quit IRC | 07:36 | |
| *** zentropy has quit IRC | 08:07 | |
| *** achanda has joined #openstack-ironic | 08:20 | |
| *** Masahiro has joined #openstack-ironic | 09:04 | |
| *** Masahiro has quit IRC | 09:09 | |
| *** marcoemorais1 has quit IRC | 09:34 | |
| *** kexiaodong has quit IRC | 09:38 | |
| *** kexiaodong has joined #openstack-ironic | 09:39 | |
| *** Haomeng|2 has joined #openstack-ironic | 09:59 | |
| *** Haomeng has quit IRC | 10:00 | |
| *** lazy_prince has quit IRC | 10:04 | |
| *** achanda has quit IRC | 10:06 | |
| Haomeng|2 | NobodyCam: :) | 10:26 |
| Haomeng|2 | rlr0329: yes | 10:26 |
| Haomeng|2 | rlr0329: you can try to run "ironic node-set-power-state on" to verify if the bm is under ironic controled as well | 10:29 |
| *** enikanorov has quit IRC | 10:36 | |
| *** killer_prince has joined #openstack-ironic | 10:47 | |
| *** killer_prince is now known as lazy_prince | 10:47 | |
| *** Masahiro has joined #openstack-ironic | 10:53 | |
| *** Masahiro has quit IRC | 10:57 | |
| *** Haomeng has joined #openstack-ironic | 11:02 | |
| *** Haomeng|2 has quit IRC | 11:03 | |
| *** andreykurilin_ has joined #openstack-ironic | 11:55 | |
| *** achanda has joined #openstack-ironic | 12:01 | |
| *** Masahiro has joined #openstack-ironic | 12:41 | |
| *** Masahiro has quit IRC | 12:46 | |
| *** mjturek has quit IRC | 13:12 | |
| *** masco has quit IRC | 13:14 | |
| *** ryanpetrello has joined #openstack-ironic | 13:21 | |
| *** ryanpetrello has quit IRC | 13:28 | |
| *** andreykurilin_ has quit IRC | 13:33 | |
| *** masco has joined #openstack-ironic | 13:38 | |
| *** rlr0329 has quit IRC | 13:40 | |
| *** Nisha has joined #openstack-ironic | 13:59 | |
| NobodyCam | morning Ironic | 14:06 |
| *** achanda has quit IRC | 14:10 | |
| *** mitz- has quit IRC | 14:11 | |
| *** achanda has joined #openstack-ironic | 14:13 | |
| *** achanda has quit IRC | 14:15 | |
| *** achanda has joined #openstack-ironic | 14:16 | |
| *** subscope has joined #openstack-ironic | 14:19 | |
| *** achanda has quit IRC | 14:20 | |
| *** Masahiro has joined #openstack-ironic | 14:30 | |
| *** Masahiro has quit IRC | 14:35 | |
| *** achanda has joined #openstack-ironic | 14:50 | |
| *** Nisha has quit IRC | 14:58 | |
| *** Nisha has joined #openstack-ironic | 14:59 | |
| *** Nisha has quit IRC | 15:14 | |
| kexiaodong | o ha yo | 15:35 |
| *** subscope has quit IRC | 15:53 | |
| *** Masahiro has joined #openstack-ironic | 16:19 | |
| *** Masahiro has quit IRC | 16:23 | |
| *** andreykurilin_ has joined #openstack-ironic | 16:24 | |
| *** Nisha has joined #openstack-ironic | 17:01 | |
| *** marcoemorais has joined #openstack-ironic | 17:03 | |
| *** marcoemorais has quit IRC | 17:04 | |
| *** Nisha has quit IRC | 17:18 | |
| *** achanda has quit IRC | 17:20 | |
| *** achanda has joined #openstack-ironic | 17:21 | |
| *** achanda has quit IRC | 17:23 | |
| *** achanda has joined #openstack-ironic | 17:23 | |
| *** Haomeng|2 has joined #openstack-ironic | 17:46 | |
| *** Haomeng has quit IRC | 17:46 | |
| *** shakamunyi has joined #openstack-ironic | 17:51 | |
| *** Masahiro has joined #openstack-ironic | 18:08 | |
| *** Masahiro has quit IRC | 18:12 | |
| *** spandhe has joined #openstack-ironic | 18:30 | |
| *** masco has quit IRC | 18:33 | |
| *** andreykurilin_ has quit IRC | 18:39 | |
| *** achanda has quit IRC | 18:47 | |
| *** pcrews has quit IRC | 19:12 | |
| *** spandhe has quit IRC | 19:13 | |
| *** Marga_ has joined #openstack-ironic | 19:18 | |
| *** Marga_ has quit IRC | 19:18 | |
| *** Marga_ has joined #openstack-ironic | 19:18 | |
| *** romcheg has joined #openstack-ironic | 19:21 | |
| *** Marga_ has quit IRC | 19:26 | |
| *** marcoemorais has joined #openstack-ironic | 19:29 | |
| *** marcoemorais1 has joined #openstack-ironic | 19:31 | |
| *** marcoemorais has quit IRC | 19:34 | |
| *** Nisha has joined #openstack-ironic | 19:35 | |
| NobodyCam | lol :) http://paste.openstack.org/show/SY03EvpQ5Jkdi8JZmcV5 | 19:35 |
| *** Masahiro has joined #openstack-ironic | 19:57 | |
| *** kexiaodong has quit IRC | 19:58 | |
| *** kexiaodong has joined #openstack-ironic | 19:58 | |
| *** Masahiro has quit IRC | 20:01 | |
| *** Nisha has quit IRC | 20:04 | |
| *** Marga_ has joined #openstack-ironic | 20:07 | |
| *** Marga_ has quit IRC | 20:15 | |
| *** ryanpetrello has joined #openstack-ironic | 20:19 | |
| *** ryanpetrello has quit IRC | 20:36 | |
| *** marcoemorais1 has quit IRC | 21:21 | |
| *** andreykurilin_ has joined #openstack-ironic | 21:31 | |
| *** rtjure2 has joined #openstack-ironic | 21:38 | |
| *** shakamunyi has quit IRC | 21:40 | |
| *** kexiaodong has quit IRC | 21:42 | |
| *** kexiaodong has joined #openstack-ironic | 21:43 | |
| *** Masahiro has joined #openstack-ironic | 21:45 | |
| *** rtjure2 has quit IRC | 21:48 | |
| *** rtjure2 has joined #openstack-ironic | 21:49 | |
| *** Masahiro has quit IRC | 21:50 | |
| *** cuihaozhi has quit IRC | 22:18 | |
| *** cuihaozhi has joined #openstack-ironic | 22:19 | |
| *** kexiaodong has quit IRC | 23:26 | |
| *** kexiaodong has joined #openstack-ironic | 23:26 | |
| *** Masahiro has joined #openstack-ironic | 23:34 | |
| *** Haomeng has joined #openstack-ironic | 23:36 | |
| *** Haomeng|2 has quit IRC | 23:36 | |
| *** Masahiro has quit IRC | 23:38 | |
| *** shakamunyi has joined #openstack-ironic | 23:43 | |
| *** EmilienM|pto is now known as EmilienM | 23:43 | |
| *** andreykurilin_ has quit IRC | 23:48 | |
| *** anderbubble has joined #openstack-ironic | 23:48 | |
| *** pcrews has joined #openstack-ironic | 23:59 | |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!