openstackgerrit | James Polley proposed a change to openstack/tripleo-image-elements: Make deploy-ci-overcloud script configurable https://review.openstack.org/116534 | 00:10 |
---|---|---|
*** sdake_ has quit IRC | 00:25 | |
*** sdake_ has joined #tripleo | 00:27 | |
larsks | sdake_: around now, if you're still around. | 00:35 |
*** noslzzp has quit IRC | 00:42 | |
*** cody-somerville_ has quit IRC | 00:45 | |
sdake | larsks yup just got back to pc | 00:50 |
sdake | larsks I think things are sort of working | 00:50 |
larsks | Awesome. | 00:51 |
sdake | larsks can you take a look at the patch | 00:52 |
sdake | and see if the network settings look correct | 00:52 |
sdake | I use kbr0 for the bridge | 00:52 |
sdake | not sure if that is right | 00:52 |
sdake | I use eth0 for the net interface | 00:52 |
larsks | Do you have a link handy? | 00:52 |
sdake | I think that is ok | 00:52 |
sdake | https://review.openstack.org/129380 | 00:53 |
larsks | Lookin' | 00:53 |
sdake | https://review.openstack.org/129488 | 00:53 |
sdake | libvirt as a separate container is a no go becausae guestfs is bust | 00:53 |
larsks | I don't think you can use "kbr0" for flat_network_bridge -- this isn't visible from inside the container (the container only knows about "eth0"). | 00:54 |
sdake | which should it be instead? | 00:54 |
sdake | i was able to boot a vm but not sure about accessing the netwrok | 00:55 |
sdake | so I dont know if the vm actually booted | 00:55 |
larsks | You (well, "the system administrator") is expected to create that bridge and then configure nova appropriately. You would, e.g., create "br-nova", and then tell nova to attach to it. | 00:55 |
larsks | I think there probably also need to be settings for the network ranges from which Nova allocates addresses. | 00:56 |
sdake | so br-nova would be created by the heat template then? | 00:56 |
larsks | No. | 00:56 |
sdake | you can set those ranges manually via a command | 00:56 |
larsks | br-nova would exist *inside the nova container*. | 00:56 |
larsks | Remember, host interfaces (set up e.g., by the heat templates) are not visible inside containers. | 00:56 |
sdake | got it, so the start script would create it | 00:56 |
sdake | yup | 00:56 |
sdake | if you have a command, i'll add to the scripts | 00:57 |
sdake | and try it out | 00:57 |
sdake | i've been going since 5am getting ready to eat shortly | 00:57 |
larsks | Well, creating a bridge is simply "brctl addbr <bridge_name>" | 00:57 |
sdake | ok | 00:57 |
sdake | I'll try that out then | 00:57 |
larsks | Need to make sure you have bridge-utils installed. I'm pretty sure we do. | 00:57 |
sdake | what does that bridge do pricesly? | 00:58 |
sdake | route all of the compute nodes info over that br idge? | 00:58 |
larsks | I believe that all nova instances will be attached to that bridge. | 00:59 |
sdake | how do we get the nova-network to get to the outside network? | 00:59 |
sdake | a masquarade rule? | 00:59 |
larsks | Possibly, yes. | 01:00 |
larsks | But I would worry about that *after* we are able to successfully boot an instance and have *internal* connectivity. | 01:00 |
sdake | shoudl we be asble to ssh from minion to the machine? | 01:00 |
sdake | to the vm I mean | 01:00 |
larsks | We should probably be able to ssh from the compute container to a nova instance. | 01:00 |
sdake | what about outside the compute container | 01:01 |
larsks | This has some notes about the "FlatDHCP" network model that are probably worth reading: http://docs.openstack.org/admin-guide-cloud/content/section_networking-options.html | 01:01 |
larsks | Again, I think we should worry about outside the container *after* we have things working inside the container. | 01:01 |
sdake | yar | 01:01 |
sdake | wfm | 01:01 |
larsks | Because if can't get inside the container to work first, we have nothing to test. | 01:01 |
*** cody-somerville_ has joined #tripleo | 01:01 | |
sdake | right | 01:01 |
sdake | I have a script which enters the container so that is easy enough to test | 01:02 |
sdake | I just dont know this network stuff too well so strugglign to understand the connections | 01:02 |
larsks | It may be expected that the flat_network_bridges on all compute nodes are actually on the same L2 network. | 01:03 |
larsks | That might make life tricky. | 01:03 |
larsks | E.g: http://docs.openstack.org/grizzly/openstack-compute/admin/content/figures/6/figures/FlatNetworkMultInterface.png | 01:04 |
larsks | But if we can get things working inside a *single* compute node, that gives us a starting point to work with. | 01:05 |
sdake | that picture indicates the controller has nova-network rather t hen nova-compute | 01:05 |
sdake | atm if we have 5 minons we would spin up 5 nova computes | 01:06 |
sdake | and 5 nova networks | 01:06 |
larsks | Right. And nova instances deployed inside a single compute container might work...whereas instances that end up on separate compute containers might not have the l2 connectivity people expect. | 01:07 |
larsks | But that's fine for now; we've got to start somewhere. | 01:07 |
sdake | http://paste.fedoraproject.org/143408/13767324 | 01:09 |
sdake | does that look good | 01:10 |
larsks | Sure, maybe :). The real test is if nova will boot an instance and attach it to that bridge. | 01:11 |
sdake | it does boot it | 01:11 |
sdake | (in the old kbr model) | 01:11 |
sdake | attach I am unclear about | 01:11 |
larsks | An instance launched by nova should be a member of that bridge. | 01:12 |
sdake | right so brctl show should see it | 01:12 |
larsks | Right. | 01:12 |
sdake | I think this would work if we had 3 nodes connected to one bridge, they would be able to communicate with each other | 01:13 |
sdake | but not sure on the outside communication | 01:13 |
larsks | Three "nodes" meaning "compute containers"? Connected to what bridge? How? | 01:13 |
sdake | should nova-network be 1 process or n processes? | 01:13 |
sdake | three qemuy processes in 1 compute container | 01:13 |
larsks | Right, that is what I was saying ealier -- Nova instances launched inside the same container might Just Work. | 01:14 |
larsks | Avoid the word "node", because that often means "physical host". | 01:14 |
sdake | agree | 01:14 |
sdake | too many nouns :) | 01:14 |
sdake | typiucall yI try to say minion since that is unequivaocble | 01:14 |
sdake | let me spin that up and try it | 01:15 |
larsks | I have to take off for the evening. I will try applying that batch and booting things in the morning. | 01:15 |
sdake | real quick | 01:19 |
sdake | when was k8s 0.4 coming? | 01:19 |
sdake | monday? | 01:19 |
larsks | Just a sec, checking... | 01:19 |
larsks | Possibly. Has not dropped yet, apparently. | 01:20 |
sdake | no it has not | 01:20 |
sdake | I hate to release a busted release since all the binaries will change / etc | 01:20 |
sdake | guess we will find out monday :) | 01:20 |
StevenK | sdake: But it is Monday! :-P | 01:20 |
sdake | if it lands monday we can make some quick fixes I think | 01:21 |
sdake | only in AUS :) | 01:21 |
StevenK | sdake: And New Zealand, Japan, Singapore ... :-) | 01:21 |
sdake | well right | 01:21 |
sdake | atleast I got 1 correct ;) | 01:21 |
StevenK | sdake: :-) | 01:22 |
*** jpeeler has quit IRC | 01:41 | |
*** avozza is now known as zz_avozza | 01:53 | |
*** nosnos has joined #tripleo | 01:54 | |
*** pcrews has joined #tripleo | 01:55 | |
*** yamahata has joined #tripleo | 01:57 | |
*** jpeeler has joined #tripleo | 02:01 | |
*** jerryz has joined #tripleo | 02:03 | |
jerryz | frdvgfbv | 02:06 |
jerryz | ] | 02:06 |
lifeless | bless you | 02:07 |
jerryz | sorry, my baby was on the keyboard | 02:10 |
lifeless | its cool | 02:17 |
lifeless | how old are they? | 02:17 |
jerryz | almost 2 | 02:17 |
lifeless | awesome | 02:18 |
jerryz | if next time i post something like fdsaaaaaaaaaaaaaaaaaaaaaaaa, then please call the ambulance. | 02:19 |
lifeless | :> | 02:19 |
*** takadayuiko has joined #tripleo | 02:26 | |
*** takadayu_ has joined #tripleo | 02:26 | |
*** takadayu_ has quit IRC | 02:27 | |
*** ramishra has joined #tripleo | 02:28 | |
*** zz_avozza is now known as avozza | 02:44 | |
*** avozza is now known as zz_avozza | 02:55 | |
*** untriaged-bot has joined #tripleo | 03:00 | |
untriaged-bot | Untriaged bugs so far: | 03:00 |
untriaged-bot | https://bugs.launchpad.net/tuskar/+bug/1382468 | 03:00 |
uvirtbot | Launchpad bug 1382468 in tuskar "Bad parameter exception" [Undecided,Triaged] | 03:00 |
untriaged-bot | https://bugs.launchpad.net/diskimage-builder/+bug/1381408 | 03:00 |
uvirtbot | Launchpad bug 1381408 in diskimage-builder ""visudo" always got error when building overcloud image" [Undecided,New] | 03:00 |
*** untriaged-bot has quit IRC | 03:00 | |
*** jerryz has quit IRC | 03:01 | |
*** julim has quit IRC | 03:05 | |
*** jerryz has joined #tripleo | 03:07 | |
*** pcrews has quit IRC | 03:12 | |
*** marun has joined #tripleo | 03:15 | |
*** nosnos has quit IRC | 03:24 | |
*** nosnos has joined #tripleo | 03:25 | |
*** nosnos has quit IRC | 03:29 | |
*** marun has quit IRC | 03:38 | |
*** zz_avozza is now known as avozza | 03:46 | |
*** nosnos has joined #tripleo | 03:48 | |
*** ramishra has quit IRC | 03:52 | |
*** avozza is now known as zz_avozza | 03:56 | |
*** marun has joined #tripleo | 03:57 | |
*** ramishra has joined #tripleo | 03:58 | |
*** marun has quit IRC | 04:06 | |
*** ramishra has quit IRC | 04:10 | |
*** ramishra has joined #tripleo | 04:16 | |
*** lazy_prince is now known as killer_prince | 04:23 | |
*** rameshg87 has joined #tripleo | 04:25 | |
*** pradeep has joined #tripleo | 04:37 | |
*** sdake has quit IRC | 04:41 | |
*** zz_avozza is now known as avozza | 04:47 | |
*** tzumainn has quit IRC | 04:48 | |
openstackgerrit | Jeff Peeler proposed a change to stackforge/kolla: Implement containers for heat-engine and heat-api https://review.openstack.org/128994 | 04:50 |
*** avozza is now known as zz_avozza | 04:57 | |
*** grauwulf has quit IRC | 04:58 | |
*** pensu has joined #tripleo | 04:59 | |
jpeeler | sdake_: success finally :) going to bed now | 05:00 |
*** grauwulf has joined #tripleo | 05:00 | |
*** bvivek has joined #tripleo | 05:08 | |
*** ramishra_ has joined #tripleo | 05:24 | |
*** mrunge has joined #tripleo | 05:27 | |
*** ramishra has quit IRC | 05:28 | |
*** killer_prince has quit IRC | 05:31 | |
openstackgerrit | lokesh s proposed a change to openstack/tripleo-image-elements: :adding local boot support for uboot arm arch https://review.openstack.org/106727 | 05:53 |
openstackgerrit | lokesh s proposed a change to openstack/tripleo-image-elements: adding local boot support for uboot arm arch https://review.openstack.org/106727 | 05:57 |
*** loki184 has joined #tripleo | 05:58 | |
*** nosnos has quit IRC | 05:59 | |
*** nosnos has joined #tripleo | 06:00 | |
*** killer_prince has joined #tripleo | 06:01 | |
*** killer_prince is now known as lazy_prince | 06:01 | |
*** takadayuiko has quit IRC | 06:10 | |
*** k4n0 has joined #tripleo | 06:11 | |
*** ramishra has joined #tripleo | 06:16 | |
*** ramishra_ has quit IRC | 06:16 | |
*** jprovazn has joined #tripleo | 06:26 | |
*** rdopieralski has joined #tripleo | 06:33 | |
*** rdopieralski has quit IRC | 06:34 | |
*** rdopieralski has joined #tripleo | 06:34 | |
*** ramishra has quit IRC | 06:38 | |
*** nosnos has quit IRC | 06:39 | |
*** nosnos has joined #tripleo | 06:39 | |
*** zz_avozza is now known as avozza | 06:48 | |
*** sdake_ has quit IRC | 06:50 | |
*** ci-overcloud has joined #tripleo | 06:54 | |
ci-overcloud | ************** ci-overcloud complete status=1 ************ | 06:54 |
*** ci-overcloud has quit IRC | 06:54 | |
*** avozza is now known as zz_avozza | 06:57 | |
*** jtomasek has joined #tripleo | 07:05 | |
*** rushiagr_away is now known as rushiagr | 07:10 | |
*** pensu has quit IRC | 07:15 | |
openstackgerrit | A change was merged to openstack/os-cloud-config: Add support for injecting extra-specs into flavors https://review.openstack.org/123345 | 07:16 |
*** jcoufal has joined #tripleo | 07:28 | |
*** ci-overcloud has joined #tripleo | 07:36 | |
ci-overcloud | ************** ci-overcloud complete status=1 ************ | 07:36 |
*** ci-overcloud has quit IRC | 07:36 | |
*** zz_avozza is now known as avozza | 07:39 | |
openstackgerrit | A change was merged to openstack/tripleo-image-elements: Add SSL PKI properties for keystone https://review.openstack.org/129049 | 07:41 |
*** ramishra has joined #tripleo | 07:43 | |
*** gfidente has joined #tripleo | 07:45 | |
openstackgerrit | A change was merged to openstack/tripleo-image-elements: Migrates corosync element to svc-map https://review.openstack.org/129072 | 07:47 |
*** lazy_prince is now known as killer_prince | 08:04 | |
*** rlandy has joined #tripleo | 08:04 | |
*** dtantsur has joined #tripleo | 08:06 | |
*** ci-overcloud has joined #tripleo | 08:06 | |
ci-overcloud | ************** ci-overcloud complete status=1 ************ | 08:06 |
*** ci-overcloud has quit IRC | 08:06 | |
*** ramishra has quit IRC | 08:09 | |
*** athomas has joined #tripleo | 08:11 | |
*** jistr has joined #tripleo | 08:12 | |
*** derekh has joined #tripleo | 08:12 | |
*** bvivek has quit IRC | 08:15 | |
*** ramishra has joined #tripleo | 08:15 | |
*** yamahata has quit IRC | 08:20 | |
*** ramishra has quit IRC | 08:25 | |
* tchaypo brings the conversation over here | 08:32 | |
* derekh follows | 08:32 | |
derekh | tchaypo: did your call to load-image succeed ? | 08:32 |
tchaypo | *headdesk* | 08:33 |
tchaypo | apparently it's throwing a 500... | 08:34 |
derekh | I guess you've figure it out | 08:34 |
*** akrivoka has joined #tripleo | 08:34 | |
derekh | ahh | 08:34 |
tchaypo | I suspected something like this was happening, because "glance image-list" is suspiciously short | 08:34 |
*** lucasagomes has joined #tripleo | 08:35 | |
derekh | greghaynes: so do we need more ram for the HA test ? or did you identify someway to reduce requirements ? | 08:35 |
tchaypo | of course the logging says nothing. | 08:35 |
*** bvivek has joined #tripleo | 08:38 | |
*** rushiagr is now known as rushiagr_away | 08:38 | |
tchaypo | this is beautiful. with deubg turned off I just get told there was a failure. With it on I get pages and pages.. | 08:39 |
derekh | tchaypo: ;-( | 08:39 |
derekh | tchaypo: I'd double check swift is working | 08:39 |
tchaypo | Oct 20 08:40:01 undercloud-undercloud-uxtyfj4ag5qy glance-api: 2014-10-20 08:40:01.118 58628 WARNING glance_store.driver [-] Failed to configure store correctly: A value for swift_store_auth_address is required. Disabling add method. | 08:40 |
StevenK | Wasn't auth_* being discussed on Friday night? | 08:41 |
StevenK | Did something land? | 08:41 |
tchaypo | I don't think I was around on friday night | 08:41 |
StevenK | Well, I'm not really around today :-) | 08:41 |
derekh | CI jobs still working (using swift) | 08:41 |
tchaypo | StevenK: did you get access to hp1 yet? | 08:44 |
tchaypo | swift list is unhappy | 08:46 |
tchaypo | it looks like it wants a region name | 08:46 |
StevenK | tchaypo: Nope, hp1 stills says EPERM | 08:46 |
tchaypo | defaults to OS_REGION_NAME which isn't set | 08:46 |
StevenK | regionOne is mostly what we set for Keystone and such by default | 08:47 |
tchaypo | StevenK: try again | 08:47 |
*** regebro has joined #tripleo | 08:47 | |
StevenK | tchaypo: Works now, thanks | 08:48 |
tchaypo | even manually specifying that, still get the same error | 08:48 |
tchaypo | I'd restart the swift service on the undercloud | 08:49 |
tchaypo | but there's nothing in /etc/init matching *swift* | 08:49 |
tchaypo | bit o dpm | 08:50 |
* tchaypo regains control of keyboard | 08:50 | |
tchaypo | but I don't know if there's meant to be | 08:50 |
*** kbyrne has joined #tripleo | 08:51 | |
derekh | tchaypo: FWIW swift list on hp1 is working, no sign of region name being set | 08:51 |
derekh | tchaypo: actually hold on | 08:51 |
derekh | tchaypo: I may have sent you down the wrong path, we don't have swift on the undercloud do we ? | 08:51 |
tchaypo | no, it doesn't seem so | 08:51 |
tchaypo | it's not under /opt/stack either | 08:51 |
derekh | tchaypo: sorry | 08:51 |
tchaypo | and no init script in /etc/init | 08:51 |
tchaypo | so let's ignore those errors :) | 08:52 |
derekh | tchaypo: I was thinking of glance problems I've had on the overcloud | 08:52 |
tchaypo | what does glance use when it's not using swift? *reads docs* | 08:52 |
derekh | tchaypo: probably local filesystem | 08:52 |
derekh | tchaypo: usually /var/lib/glance | 08:53 |
derekh | tchaypo: or /mnt/state/... | 08:53 |
tchaypo | but in this case it would be mnt/state | 08:53 |
tchaypo | and that wasn't remounted when the server came back up | 08:53 |
tchaypo | and glance hasn't been restarted since /mnt/state was put in place | 08:53 |
tchaypo | but restarting the glance services still gives me 500s | 08:54 |
derekh | I doubt that would matter, glance wouldn't try to access that directory until it needs to | 08:55 |
*** rushiagr_away is now known as rushiagr | 08:57 | |
tchaypo | glance-reg.log seems to have an actual error | 08:59 |
tchaypo | http://paste.openstack.org/show/122114/ | 08:59 |
tchaypo | also I am E_NO_TIME and have to run away be domestic. | 08:59 |
StevenK | Huh | 09:01 |
StevenK | It sounds like oslo.i18n ate it, too | 09:01 |
*** avozza is now known as zz_avozza | 09:03 | |
tchaypo | glance-reg seems to die hard | 09:03 |
tchaypo | http://paste.openstack.org/show/122120/ | 09:03 |
tchaypo | init respawns it | 09:03 |
GheRivero | morning all | 09:03 |
tchaypo | lo ghe | 09:04 |
*** pelix has joined #tripleo | 09:05 | |
*** killer_prince has quit IRC | 09:09 | |
*** lazy_prince has joined #tripleo | 09:09 | |
*** zz_avozza is now known as avozza | 09:14 | |
*** pblaho has joined #tripleo | 09:14 | |
rameshg87 | GheRivero, derekh, hi | 09:18 |
rameshg87 | GheRivero, derekh, can you please have a look at the review https://review.openstack.org/#/c/123642/ . it has been around for some days :( | 09:19 |
derekh | rameshg87: yup, will take a look today | 09:20 |
rameshg87 | derekh, thanks | 09:21 |
*** ramishra has joined #tripleo | 09:22 | |
*** pbelanyi has joined #tripleo | 09:28 | |
*** jp_at_hp has joined #tripleo | 09:29 | |
*** k4n0 has quit IRC | 09:32 | |
*** k4n0 has joined #tripleo | 09:34 | |
openstackgerrit | Giulio Fidente proposed a change to openstack/tripleo-image-elements: Improve nfs-server to support multiple shares and options https://review.openstack.org/125968 | 09:36 |
*** ifarkas has joined #tripleo | 09:43 | |
tchaypo | reading http://lists.openstack.org/pipermail/openstack-dev/2014-June/038857.html it seems as though there's an error happening inside glance-registry, and then in attempting to process the error message it throws a different error about the unicode | 09:48 |
GheRivero | [A | 09:50 |
GheRivero | [A | 09:50 |
openstackgerrit | Giulio Fidente proposed a change to openstack/tripleo-image-elements: Improve nfs-server to support multiple shares and options https://review.openstack.org/125968 | 09:53 |
*** avozza is now known as zz_avozza | 09:53 | |
shadower | rbrady: ping | 09:53 |
jerryz | tchaypo: could you take a look at this problem? http://paste.openstack.org/show/122132/ | 09:55 |
openstackgerrit | A change was merged to openstack/tripleo-image-elements: Migrate from map-services to svc-map https://review.openstack.org/129066 | 09:55 |
jerryz | tchaypo: there should be enough space on sdb | 09:55 |
jerryz | tchaypo: never mind. the disk turns out to small | 10:03 |
* tchaypo admires passing birdies | 10:04 | |
tchaypo | i was about to suggesting using parted to print info about the disk to check :) | 10:05 |
*** pensu has joined #tripleo | 10:06 | |
openstackgerrit | A change was merged to openstack/tripleo-heat-templates: Passthrough{Specific} and allNodesConfig for BlockStorage nodes https://review.openstack.org/112075 | 10:07 |
*** yamahata has joined #tripleo | 10:12 | |
*** rushiagr is now known as rushiagr_away | 10:17 | |
openstackgerrit | Derek Higgins proposed a change to openstack-infra/tripleo-ci: Build a local pip mirror of python packages being tested https://review.openstack.org/71837 | 10:43 |
*** akrivoka has quit IRC | 10:48 | |
openstackgerrit | Nicholas Randon proposed a change to openstack/tripleo-image-elements: Fix RabbitMQ element clustering start and stop https://review.openstack.org/115524 | 10:53 |
openstackgerrit | A change was merged to openstack/diskimage-builder: Enable dracut deploy ramdisks https://review.openstack.org/105275 | 11:03 |
openstackgerrit | A change was merged to openstack/diskimage-builder: Avoid overwritting of hooks https://review.openstack.org/126869 | 11:04 |
*** lazy_prince has quit IRC | 11:09 | |
*** slagle has joined #tripleo | 11:09 | |
*** lazy_prince has joined #tripleo | 11:11 | |
*** akrivoka has joined #tripleo | 11:17 | |
*** rushiagr_away is now known as rushiagr | 11:21 | |
derekh | rameshg87: Some comments added | 11:24 |
*** loki184 has quit IRC | 11:24 | |
openstackgerrit | Lennart Regebro proposed a change to openstack/tuskar-ui: More readable flavor names https://review.openstack.org/128684 | 11:25 |
tchaypo | Oct 20 11:24:55 undercloud-undercloud-uxtyfj4ag5qy glance-reg: ERROR: Could not bind to 0.0.0.0:9191 after trying for 30 seconds | 11:25 |
rameshg87 | derekh, thanks, let me check | 11:25 |
rameshg87 | derekh, it would be good if can just copy paste me the logs into paste.openstack.org, i will see if i can make out something from it | 11:27 |
rameshg87 | derekh, regarding the fedora failure | 11:27 |
derekh | rameshg87: ok, will see if I cam manage to get a log from the VM, its also possible I'm using it wrong | 11:31 |
rameshg87 | derekh, okay. | 11:31 |
rameshg87 | derekh, and regarding DIB_IMAGE_ROOT_FS_UUID | 11:32 |
*** killer_prince has joined #tripleo | 11:32 | |
rameshg87 | derekh, https://review.openstack.org/#/c/123642/8/README.md | 11:32 |
rameshg87 | derekh, it can be used by all the elements (not only iso element) | 11:32 |
rameshg87 | derekh, but can't be passed to disk-image-create | 11:32 |
rameshg87 | derekh, are there some other suggestions to put this info ? | 11:33 |
derekh | rameshg87: Actually I probably did something wronge, will try again, stand by | 11:35 |
rameshg87 | derekh, okay .. | 11:35 |
openstackgerrit | A change was merged to openstack/diskimage-builder: Allow source-repositories to be disabled completely https://review.openstack.org/128695 | 11:35 |
derekh | rameshg87: Actually setting DIB_IMAGE_FS_UUID like this ${DIB_IMAGE_ROOT_FS_UUID:-`uuidgen -r`} , still testing the other thing | 11:36 |
*** jprovazn has quit IRC | 11:37 | |
rameshg87 | derekh, ah okay .. | 11:37 |
openstackgerrit | A change was merged to openstack/tuskar: Updated from global requirements https://review.openstack.org/122674 | 11:37 |
rameshg87 | derekh, but there is no reason why user should be interested in passing DIB_IMAGE_FS_UUID :) | 11:37 |
rameshg87 | derekh, even user should be generating it randomly just like uuidgen | 11:37 |
rameshg87 | derekh, so should we really give that option ? | 11:38 |
derekh | rameshg87: ok, make sense, I guess I just expected to be able to set it because its listed beside DIB_OFFLINE which can be set from outside disk-image-create and the readme doesn't say one can be set and the other can't so I assumed if it was listed in the same place then they could both be treated similarly | 11:41 |
rameshg87 | derekh, should i just add a note this can't be set from outside ? | 11:42 |
derekh | rameshg87: ya I think so, I think it will just make it clearer | 11:43 |
rameshg87 | derekh, sure will do .. | 11:44 |
openstackgerrit | Nicholas Randon proposed a change to openstack/tripleo-heat-templates: Simplify the layout of haproxy net binds config https://review.openstack.org/129258 | 11:45 |
rbrady | shadower: pong | 11:49 |
*** lucasagomes is now known as lucas-hungry | 11:50 | |
derekh | rameshg87: ok, looks like I was doing something stupid with the disk not being found its working now, just needed to change the path to isolinux.bin mentioned in the review | 11:50 |
rameshg87 | derekh, yeah sure, will do that .. | 11:51 |
rameshg87 | derekh, i am just changing it to use pkg-map | 11:51 |
derekh | rameshg87: ok, thanks | 11:51 |
*** killer_prince has quit IRC | 11:52 | |
*** lazy_prince has quit IRC | 11:52 | |
*** lazy_pri- has joined #tripleo | 11:52 | |
*** lazy_pri- is now known as lazy_prince | 11:53 | |
gfidente | ping TheJulia you around? | 11:57 |
shadower | rbrady: I just wanted to ask about that push to https://review.openstack.org/#/c/123100/ but you answered that there | 11:58 |
*** rameshg87 has quit IRC | 11:59 | |
openstackgerrit | Michael Kerrin proposed a change to openstack/diskimage-builder: Handle extra spaces in merge-svc-map-files https://review.openstack.org/129590 | 12:01 |
pbelanyi | rbrady: (and shadower) what are the reasons for reverting my change? | 12:05 |
openstackgerrit | A change was merged to openstack/tuskar-ui: More readable flavor names https://review.openstack.org/128684 | 12:06 |
rbrady | pbelanyi: read the comments on 123100 | 12:06 |
pbelanyi | rbrady: I've just read it, but it's still not clear to me why my patch (https://review.openstack.org/#/c/123713/) got reverted | 12:08 |
shadower | pbelanyi: I think it's because rbrady based his patch on top of lsmola's patch which was not rebased on our latest revisions. And gerrit then pushed the old commits as new revisions | 12:09 |
rbrady | pbelanyi: remember me pinging you about dependencies friday? Well, I followed the docs and I somehow botched it. We'll get it fixed shortly. | 12:09 |
shadower | pbelanyi: I'm going to re-upload the correct version of my patch and you can rebase on top of taht | 12:10 |
*** rhallisey has joined #tripleo | 12:10 | |
openstackgerrit | A change was merged to openstack/tuskar-ui: Correctly show failed events https://review.openstack.org/128686 | 12:10 |
pbelanyi | rbrady: oh, ok, so you based your patch on lsmola's and that's why... | 12:11 |
rbrady | pbelyani: first I tried basing off of yours, which is probably where I went wrong. Later I tried rebasing off of lsmola's | 12:11 |
lsmola | pblaho: maybe we should just squash my patches and rbrady's patches to yours | 12:12 |
lsmola | pblaho: damn it was to pbelanyi | 12:12 |
openstackgerrit | Tomas Sedovic proposed a change to openstack/tripleo-heat-templates: Compute and controller templates without merge.py https://review.openstack.org/123100 | 12:12 |
pblaho | lsmola: smash them ! | 12:12 |
rbrady | lsmola: great idea | 12:13 |
pblaho | lsmola: :-) | 12:13 |
shadower | pbelanyi: okay feel free to rebase on top of that | 12:13 |
shadower | btw yea I think lsmola's and rbrady's patches could be merged with pbelanyi's change if everyone's fine with that | 12:13 |
lsmola | shadower: yeah seems like it can take while to merge it and this rebasing is tiring :-) | 12:14 |
lsmola | pbelanyi: could you squash them? or we should do that? | 12:14 |
*** morazi has quit IRC | 12:14 | |
pbelanyi | lsmola, rbrady: ok, I'll incorporate your mods into my patch | 12:16 |
*** dprince has joined #tripleo | 12:16 | |
rbrady | pbelanyi: thanks! | 12:16 |
*** bvivek has quit IRC | 12:19 | |
lsmola | athomas: I've submitted the Deployment of OpenStack using instack talk for devconf | 12:25 |
lsmola | athomas: but if anybody else wants to do it, I can just pass it | 12:25 |
lsmola | dtantsur: will you submit the ironic talk? | 12:26 |
*** noslzzp has joined #tripleo | 12:29 | |
rdopieralski | athomas: robot talk submitted | 12:31 |
openstackgerrit | Ana Krivokapic proposed a change to openstack/tuskar-ui: Add last event to deployment in progress page https://review.openstack.org/128708 | 12:32 |
*** ramishra has quit IRC | 12:36 | |
openstackgerrit | Ana Krivokapic proposed a change to openstack/tuskar-ui: Add last event to deployment in progress page https://review.openstack.org/128708 | 12:37 |
*** jdob has joined #tripleo | 12:40 | |
openstackgerrit | Peter Belanyi proposed a change to openstack/tripleo-heat-templates: Add converted version of block and object storage https://review.openstack.org/123713 | 12:42 |
*** jprovazn has joined #tripleo | 12:42 | |
openstackgerrit | A change was merged to openstack/tripleo-image-elements: Use Percona Packages for Ubuntu and Debian https://review.openstack.org/90134 | 12:42 |
pbelanyi | lsmola rbrady shadower: squashing done, I hope I've included everything https://review.openstack.org/#/c/123713/16 | 12:44 |
lsmola | pbelanyi: cool, thank you | 12:45 |
rbrady | pbelanyi: thanks! lgtm. Will test it now. | 12:46 |
athomas | rdopieralski, lsmola Magic | 12:46 |
athomas | rdopieralski, I'm only encouraging the robot talk because I want to see it myself! | 12:46 |
athomas | rdopieralski, I don't care about what the rest of the audience want ;-) | 12:46 |
athomas | Well, that's not true. Everyone knows robots are cool | 12:47 |
athomas | Anyone who doesn't want to hear about robots isn't going to attend devconf anyway | 12:47 |
tchaypo | there was a great talk at pycon-au a few years ago | 12:48 |
tchaypo | about massive spinning robot claws | 12:48 |
*** zz_avozza is now known as avozza | 12:48 | |
rdopieralski | tchaypo: O.o | 12:49 |
lsmola | pbelanyi: seems it is correct, abandoning my patches | 12:50 |
lsmola | tchaypo: lol, that sounds dangerous :-) | 12:50 |
*** lucas-hungry is now known as lucasagomes | 12:51 | |
*** radez_g0n3 is now known as radez | 12:55 | |
StevenK | I don't think I want to see massive spinning robot claws throwing exceptions | 12:58 |
StevenK | They sound heavy | 12:59 |
tchaypo | http://pycon-au.org/2010/conference/schedule/event/60/index.html | 12:59 |
*** tzumainn has joined #tripleo | 12:59 | |
tchaypo | usually they were throwing rubbish | 12:59 |
StevenK | No files, I seee. | 12:59 |
StevenK | s/\(ee\)e/\1/ | 12:59 |
tchaypo | oh look, it's tuesday. | 13:02 |
tchaypo | i think that means it's bedtime | 13:02 |
*** pensu has quit IRC | 13:03 | |
*** weshay has joined #tripleo | 13:05 | |
openstackgerrit | A change was merged to openstack/tuskar-ui: Add support for min, max and step in the NumberPicker https://review.openstack.org/128235 | 13:05 |
*** julim has joined #tripleo | 13:08 | |
*** jlabocki has joined #tripleo | 13:10 | |
*** wuhg has joined #tripleo | 13:11 | |
*** dprince has quit IRC | 13:13 | |
*** lazy_prince has quit IRC | 13:18 | |
*** avozza is now known as zz_avozza | 13:18 | |
*** dprince has joined #tripleo | 13:19 | |
*** morazi has joined #tripleo | 13:21 | |
*** dprince has quit IRC | 13:29 | |
*** dprince has joined #tripleo | 13:30 | |
*** killer_prince has joined #tripleo | 13:37 | |
*** killer_prince is now known as lazy_prince | 13:37 | |
openstackgerrit | Erik Colnick proposed a change to openstack/tripleo-heat-templates: Enable Neutron DVR support in TripleO installation https://review.openstack.org/129617 | 13:40 |
*** pblaho has quit IRC | 13:41 | |
openstackgerrit | Erik Colnick proposed a change to openstack/tripleo-heat-templates: Enable Neutron DVR support in TripleO installation https://review.openstack.org/129617 | 13:45 |
openstackgerrit | Dougal Matthews proposed a change to openstack/tuskar: Default to keystone auth strategy https://review.openstack.org/93370 | 13:54 |
openstackgerrit | Dougal Matthews proposed a change to openstack/tuskar: Update Tuskar Install Documentation https://review.openstack.org/125596 | 13:54 |
*** k4n0 has quit IRC | 13:55 | |
*** rushiagr is now known as rushiagr_away | 13:58 | |
*** zz_avozza is now known as avozza | 14:00 | |
*** lucasagomes has quit IRC | 14:01 | |
*** nosnos has quit IRC | 14:09 | |
*** nosnos has joined #tripleo | 14:09 | |
*** cwolfe__ has quit IRC | 14:13 | |
*** regebro has quit IRC | 14:13 | |
*** nosnos has quit IRC | 14:14 | |
*** lucasagomes has joined #tripleo | 14:16 | |
*** beekneemech is now known as bnemec | 14:16 | |
greghaynes | derekh: I got sidetracked on that issue. In theory we can turn down the number of worker processes... | 14:23 |
*** pcrews has joined #tripleo | 14:24 | |
derekh | greghaynes: ok cool, was just wondering | 14:25 |
*** ramishra has joined #tripleo | 14:27 | |
*** rwsu has joined #tripleo | 14:30 | |
*** jerryz has quit IRC | 14:38 | |
*** pensu has joined #tripleo | 14:41 | |
openstackgerrit | Nicholas Randon proposed a change to openstack/tripleo-heat-templates: Simplify the layout of haproxy net binds config https://review.openstack.org/129258 | 14:47 |
greghaynes | derekh: did the CI pypi mirror patch end up working? | 14:49 |
derekh | greghaynes: doesn't look like it, was trying to figure it out earlier but got abit sidetracked I should get back to it later this evening | 14:50 |
openstackgerrit | Alexis Lee proposed a change to openstack/os-apply-config: Allow extraction of list items https://review.openstack.org/129636 | 14:53 |
openstackgerrit | Alexis Lee proposed a change to openstack/os-apply-config: Allow extraction of list items https://review.openstack.org/129636 | 14:54 |
greghaynes | derekh: looks like it makes and installs the sdist | 14:57 |
greghaynes | so thats something | 14:57 |
derekh | greghaynes: yup, its being made alright but Its not getting used | 14:58 |
derekh | greghaynes: so half way there ;-) | 14:58 |
greghaynes | where did you find that format for index.html? | 14:58 |
greghaynes | is that actually needed? | 14:58 |
derekh | greghaynes: I forget, I think at the time I looked at some existing index.html files and copied them, I'm pretty sure it was needed | 14:59 |
*** jistr has quit IRC | 14:59 | |
*** blinky_ghost has joined #tripleo | 14:59 | |
*** untriaged-bot has joined #tripleo | 15:00 | |
untriaged-bot | Untriaged bugs so far: | 15:00 |
untriaged-bot | https://bugs.launchpad.net/tuskar/+bug/1382468 | 15:00 |
untriaged-bot | https://bugs.launchpad.net/diskimage-builder/+bug/1381408 | 15:00 |
*** untriaged-bot has quit IRC | 15:00 | |
uvirtbot | Launchpad bug 1382468 in tuskar "Bad parameter exception" [Undecided,Triaged] | 15:00 |
uvirtbot | Launchpad bug 1381408 in diskimage-builder ""visudo" always got error when building overcloud image" [Undecided,New] | 15:00 |
*** jistr has joined #tripleo | 15:01 | |
blinky_ghost | hi all, can anybody tell me if the instructions on this git repo https://github.com/agroup/instack-undercloud are updated and working to test tripleo with Juno? thanks. | 15:01 |
openstackgerrit | Jeff Peeler proposed a change to stackforge/kolla: Add heat service to tools/start scripts https://review.openstack.org/129639 | 15:01 |
*** jlabocki has quit IRC | 15:02 | |
greghaynes | derekh: hrm, dont you need a root index.html> | 15:04 |
greghaynes | oh | 15:04 |
greghaynes | yea, the root index.html seems like it might be insufficient | 15:04 |
greghaynes | derekh: mind if I upload a patch to test this theory? | 15:05 |
openstackgerrit | Alexis Lee proposed a change to openstack/os-apply-config: Allow extraction of list items https://review.openstack.org/129636 | 15:05 |
derekh | greghaynes: I think the format I had was working, but test away whats the wort thing that could happen | 15:06 |
derekh | greghaynes: although my memory could be hazy | 15:07 |
*** pradeep has quit IRC | 15:08 | |
openstackgerrit | Erik Colnick proposed a change to openstack/tripleo-heat-templates: OEnable Neutron DVR support in TripleO installation https://review.openstack.org/129617 | 15:11 |
openstackgerrit | greghaynes proposed a change to openstack-infra/tripleo-ci: Build a local pip mirror of python packages being tested https://review.openstack.org/71837 | 15:12 |
greghaynes | yea, I could be totally wrong but cant hurt | 15:12 |
openstackgerrit | Erik Colnick proposed a change to openstack/tripleo-heat-templates: OEnable Neutron DVR support in TripleO installation https://review.openstack.org/129617 | 15:12 |
greghaynes | derekh: oh, another possible issue is the patch were testing is for oslo.messaging which may or may not be installed via --pre (since itll be a transitive dependency) | 15:15 |
derekh | greghaynes: ahh ok, sounds plausible | 15:16 |
greghaynes | im going to grab an os-cloud-config patch instead for now | 15:16 |
openstackgerrit | Erik Colnick proposed a change to openstack/tripleo-heat-templates: Enable Neutron DVR support in TripleO installation https://review.openstack.org/129617 | 15:18 |
openstackgerrit | greghaynes proposed a change to openstack-infra/tripleo-ci: Build a local pip mirror of python packages being tested https://review.openstack.org/71837 | 15:18 |
openstackgerrit | greghaynes proposed a change to openstack-infra/tripleo-ci: Build a local pip mirror of python packages being tested https://review.openstack.org/71837 | 15:27 |
*** sdake has joined #tripleo | 15:31 | |
*** sdake has quit IRC | 15:31 | |
*** sdake has joined #tripleo | 15:31 | |
sdake | morning | 15:32 |
*** rdopieralski has quit IRC | 15:36 | |
*** pradeep has joined #tripleo | 15:38 | |
openstackgerrit | A change was merged to stackforge/kolla: Fixes k8s neutron pod image source and formatting https://review.openstack.org/129400 | 15:44 |
*** pradeep1 has joined #tripleo | 15:45 | |
*** jistr has quit IRC | 15:45 | |
*** pradeep has quit IRC | 15:46 | |
sdake | larsks updates-testing has the latest k8s binaries | 15:49 |
larsks | Yes, just installed them :) | 15:49 |
sdake | any chance you could give it a run and fix what is busted | 15:49 |
larsks | Taking a look. | 15:49 |
sdake | i'm almost done sorting out nova | 15:49 |
*** yamahata has quit IRC | 15:51 | |
openstackgerrit | Tzu-Mainn Chen proposed a change to openstack/tuskar-ui: Add nodes.sh script to generate node csv https://review.openstack.org/129249 | 15:52 |
openstackgerrit | Ramakrishnan G proposed a change to openstack/diskimage-builder: iso element to build bootable ISO images https://review.openstack.org/123642 | 15:53 |
*** rameshg87 has joined #tripleo | 15:54 | |
rameshg87 | derekh, SpamapS: ^^^^ , please have a look at the review https://review.openstack.org/#/c/123642/9 | 15:56 |
*** eghobo has joined #tripleo | 15:58 | |
*** ramishra has quit IRC | 16:00 | |
sdake | larsks also we shouldn't be using walter's atomic repo I believe for k8s now | 16:01 |
sdake | it has all gone into f20/f21 | 16:01 |
nibalizer | /win 16 | 16:01 |
larsks | sdake: Yes, noticed based on the fact that the packages are in updates-testing. | 16:01 |
sdake | right :) | 16:01 |
openstackgerrit | Alexis Lee proposed a change to openstack/os-apply-config: Allow extraction of list items https://review.openstack.org/129636 | 16:04 |
openstackgerrit | A change was merged to openstack/tripleo-image-elements: SELinux: Fix /mnt/state/var/log/keepalived context https://review.openstack.org/128769 | 16:05 |
openstackgerrit | A change was merged to openstack/tuskar-ui: Add last event to deployment in progress page https://review.openstack.org/128708 | 16:07 |
*** pradeep has joined #tripleo | 16:08 | |
openstackgerrit | Alexis Lee proposed a change to openstack/os-apply-config: Allow extraction of list items https://review.openstack.org/129636 | 16:09 |
*** prad has joined #tripleo | 16:09 | |
*** pradeep1 has quit IRC | 16:10 | |
*** pradeep1 has joined #tripleo | 16:10 | |
openstackgerrit | greghaynes proposed a change to openstack/os-cloud-config: Put a cap on our cyclomatic complexity https://review.openstack.org/129656 | 16:10 |
*** Hefeweizen has joined #tripleo | 16:12 | |
openstackgerrit | Alexis Lee proposed a change to openstack/tripleo-image-elements: Send multiple signals https://review.openstack.org/129658 | 16:12 |
*** pradeep has quit IRC | 16:13 | |
*** ramishra has joined #tripleo | 16:13 | |
*** eghobo has quit IRC | 16:23 | |
*** ramishra has quit IRC | 16:30 | |
openstackgerrit | James Slagle proposed a change to openstack/diskimage-builder: svc-map requires PyYAML https://review.openstack.org/129305 | 16:31 |
*** cody-somerville_ is now known as cody-somerville | 16:31 | |
*** marun has joined #tripleo | 16:32 | |
lxsli | greghaynes: re: "send multiple signals", are you saying signals need to be attempted in parallel? | 16:32 |
lxsli | thanks for swift review :) | 16:32 |
openstackgerrit | A change was merged to openstack/tripleo-image-elements: Add missing packages to tempest element https://review.openstack.org/127055 | 16:33 |
lxsli | re: retries, I'd rather try all signals once then fail and let ORC handle the retry loop I think? | 16:33 |
*** cwolfe__ has joined #tripleo | 16:35 | |
openstackgerrit | James Slagle proposed a change to openstack/tripleo-image-elements: Add package install support for tuskar-ui https://review.openstack.org/129311 | 16:35 |
openstackgerrit | James Slagle proposed a change to openstack/tripleo-image-elements: Add package install support for tuskar https://review.openstack.org/129310 | 16:35 |
openstackgerrit | A change was merged to openstack/tripleo-image-elements: Migrate geard to svc-map https://review.openstack.org/129073 | 16:35 |
greghaynes | lxsli: I think that would also work, im betting the reason its not that way is so retries happen faster | 16:35 |
greghaynes | lxsli: parallel would be idea, that seems hard though.... | 16:35 |
greghaynes | er, would be ideal | 16:35 |
lxsli | Currently retries go around the ORC loop | 16:36 |
greghaynes | oh? maybe I misread | 16:37 |
lxsli | Parallelism would be possible but I'd like to avoid it in the initial attempt | 16:37 |
* greghaynes rereads | 16:37 | |
*** pradeep has joined #tripleo | 16:37 | |
greghaynes | ah, youre right, not sure why I thought otherwise | 16:37 |
lxsli | as soon as it hits 'exit 1' in call_curl() it'll stop; won't even try to send a signal if the handle fails | 16:37 |
greghaynes | disreguard that comment :) I think the first half about not doing the remaining signals in the list is still true thogh | 16:38 |
*** pradeep1 has quit IRC | 16:38 | |
lxsli | I'll fix the patch to attempt all signals (in series) before exiting, that OK for a first stab? | 16:38 |
greghaynes | yep, I was just worried there was a retry loop that would block forever | 16:38 |
greghaynes | which isnt the case | 16:38 |
lxsli | been there, done that, bad idea ;) | 16:39 |
SpamapS | Yeah, just limit it at 1000000 seconds | 16:46 |
SpamapS | 11 days is enough for anything to sort itself out. ;) | 16:47 |
*** jsidhu has joined #tripleo | 16:52 | |
*** rameshg87 has quit IRC | 16:57 | |
*** athomas has quit IRC | 17:03 | |
*** radez is now known as radez_g0n3 | 17:04 | |
openstackgerrit | Alexis Lee proposed a change to openstack/tripleo-image-elements: Send multiple signals https://review.openstack.org/129658 | 17:06 |
lxsli | there we go... gotta run though o/ | 17:07 |
*** dkehn has quit IRC | 17:08 | |
*** derekh has quit IRC | 17:09 | |
*** ifarkas has quit IRC | 17:10 | |
*** daneyon has quit IRC | 17:12 | |
*** daneyon has joined #tripleo | 17:12 | |
*** julim has quit IRC | 17:14 | |
*** dtantsur is now known as dtantsur|afk | 17:15 | |
openstackgerrit | Michael Kerrin proposed a change to openstack/diskimage-builder: Handle extra spaces in merge-svc-map-files https://review.openstack.org/129590 | 17:16 |
openstackgerrit | Steven Dake proposed a change to stackforge/kolla: Use hostPort to lock 1 nova-compute/nova-network per node https://review.openstack.org/129488 | 17:19 |
*** saurabhs has joined #tripleo | 17:26 | |
*** lucasagomes is now known as lucas-dinner | 17:27 | |
*** pradeep1 has joined #tripleo | 17:27 | |
*** pradeep has quit IRC | 17:29 | |
openstackgerrit | greghaynes proposed a change to openstack-infra/tripleo-ci: Build a local pip mirror of python packages being tested https://review.openstack.org/71837 | 17:29 |
*** julim has joined #tripleo | 17:31 | |
*** pradeep has joined #tripleo | 17:35 | |
*** pradeep1 has quit IRC | 17:36 | |
*** pradeep has quit IRC | 17:37 | |
*** jehb has joined #tripleo | 17:45 | |
*** blinky_ghost has quit IRC | 17:48 | |
*** mrunge has quit IRC | 17:49 | |
*** wuhg has quit IRC | 17:53 | |
*** dkehn has joined #tripleo | 18:04 | |
openstackgerrit | James Polley proposed a change to openstack/os-cloud-config: If one node is locked, keep trying the rest. https://review.openstack.org/129119 | 18:05 |
tchaypo | great. | 18:11 |
tchaypo | so the one thing register-nodes can't deal with changes in | 18:11 |
tchaypo | is the mac address | 18:11 |
tchaypo | SpamapS: ng: do you guys still need those nodes you claimed in hp2? | 18:13 |
*** ifarkas has joined #tripleo | 18:13 | |
*** jang2 has joined #tripleo | 18:16 | |
tchaypo | wheee, i now have a node registered with two different ironics | 18:18 |
tchaypo | ironic running on the seed knows that it's the node running the undercloud | 18:19 |
tchaypo | ironic running on the undercloud thinks it's a node it can use for the overcloud, and gets puzzled when it finds the instance locked | 18:19 |
*** pelix has quit IRC | 18:22 | |
openstackgerrit | Ryan Brady proposed a change to openstack/tripleo-image-elements: Migrates glance element from map-services to svc-map https://review.openstack.org/129698 | 18:25 |
*** pelix has joined #tripleo | 18:26 | |
tchaypo | ..... well blow me down with a feather. | 18:26 |
tchaypo | 24 nodes running in hp2 | 18:27 |
tchaypo | it's amazing what happens once you have the correct mac addresses | 18:27 |
tchaypo | StevenK: when you're awake, many many hours from now, I need to talk to you about getting https://review.openstack.org/#/c/103757/36/scripts/setup-neutron into the new setup-neutron | 18:28 |
*** spzala has joined #tripleo | 18:29 | |
*** jtomasek has quit IRC | 18:32 | |
*** pelix has quit IRC | 18:42 | |
*** jp_at_hp has quit IRC | 18:44 | |
*** lucas-dinner is now known as lucasagomes | 18:52 | |
*** pensu has quit IRC | 18:54 | |
*** jcoufal has quit IRC | 18:55 | |
*** rushiagr_away is now known as rushiagr | 18:57 | |
*** saurabhs1 has joined #tripleo | 18:57 | |
*** rhallisey has quit IRC | 18:57 | |
*** jsidhu has quit IRC | 18:58 | |
*** saurabhs has quit IRC | 18:59 | |
*** dtantsur|afk is now known as dtantsur | 19:00 | |
*** Duane has joined #tripleo | 19:01 | |
sdake | larsks daneyon should nova-network be part of controller or per-compute? | 19:02 |
larsks | sdake: per compute + enable multi-host. | 19:02 |
larsks | This would match a typical nova-network deployment on bare hardware. | 19:04 |
daneyon | sdake: most nova-network deployments are distributed (in conjunction with nova-compute) using the multi_host=true flag. | 19:05 |
*** rhallisey has joined #tripleo | 19:06 | |
sdake | thanks i'll do that hten | 19:09 |
*** rushiagr is now known as rushiagr_away | 19:13 | |
*** ifarkas has quit IRC | 19:24 | |
*** pensu has joined #tripleo | 19:26 | |
*** andreaf has joined #tripleo | 19:28 | |
*** radez_g0n3 is now known as radez | 19:30 | |
tchaypo | things I'm grumpy at today: firefox | 19:40 |
tchaypo | which now just refuses to trust the certs the IPMI uses | 19:40 |
tchaypo | doesn't give me a chance to work around it | 19:40 |
*** akrivoka has quit IRC | 19:43 | |
openstackgerrit | A change was merged to openstack/os-cloud-config: Put a cap on our cyclomatic complexity https://review.openstack.org/129656 | 19:43 |
*** rhallisey has quit IRC | 19:44 | |
*** Duane has quit IRC | 19:45 | |
lifeless | tchaypo: are you sure its the cert | 19:48 |
lifeless | tchaypo: and not sslv3 ? | 19:48 |
tchaypo | yeah, the error is that the cert has been re-used | 19:48 |
tchaypo | https://support.mozilla.org/en-US/kb/Certificate%20contains%20the%20same%20serial%20number%20as%20another%20certificate | 19:48 |
tchaypo | unless firefox has re-used the error message about re-using certificates.. | 19:48 |
tchaypo | lifeless: oh hey! don't know how much scrollback you saw, but I got 24 machines up in hp2 today | 19:49 |
tchaypo | it turns out that register-nodes won't update the mac addresses, so I deleted all the nodes and re-added them | 19:49 |
lifeless | tchaypo: \o/ | 19:50 |
tchaypo | *sigh* | 19:52 |
openstackgerrit | greghaynes proposed a change to openstack-infra/tripleo-ci: Build a local pip mirror of python packages being tested https://review.openstack.org/71837 | 19:53 |
tchaypo | the workaround is to go into firefox preferences, find all the certs that could possibly be conflicting with this one (firefox gives you no infromation about the cert) and delete them | 19:53 |
*** cwolfe__ has quit IRC | 19:55 | |
*** rhallisey has joined #tripleo | 19:57 | |
*** dprince has quit IRC | 19:58 | |
openstackgerrit | Steven Dake proposed a change to stackforge/kolla: Change to using flat nova networking from neutron https://review.openstack.org/129380 | 19:59 |
*** sdake_ has joined #tripleo | 20:01 | |
sdake_ | oddly startmeeting isn't owrking in #openstack-meeting | 20:03 |
openstackgerrit | A change was merged to stackforge/kolla: Use hostPort to lock 1 nova-compute/nova-network per node https://review.openstack.org/129488 | 20:10 |
greghaynes | hrm, I dont think our pypi element actually *works* | 20:17 |
greghaynes | http://logs.openstack.org/37/71837/13/check-tripleo/check-tripleo-ironic-undercloud-precise-nonha/861d863/console.html | 20:17 |
greghaynes | or maybe its that tripleo doesnt work with it | 20:17 |
greghaynes | either way, \O/ | 20:17 |
*** jang has quit IRC | 20:22 | |
*** jang1 has quit IRC | 20:22 | |
*** dtantsur is now known as dtantsur|afk | 20:23 | |
*** jang has joined #tripleo | 20:25 | |
*** jang has quit IRC | 20:26 | |
*** avozza is now known as zz_avozza | 20:28 | |
*** jang has joined #tripleo | 20:29 | |
*** jang has quit IRC | 20:30 | |
*** julim has quit IRC | 20:32 | |
lifeless | greghaynes: mostdefinitely does work | 20:32 |
*** lucasagomes is now known as lucas-zZz | 20:33 | |
greghaynes | hrm | 20:33 |
*** jang has joined #tripleo | 20:33 | |
greghaynes | yea, I enabled it on my local dev box and my build worked | 20:34 |
lifeless | greghaynes: the default (noted in the docs) presumes a bind mounted local cache | 20:34 |
lifeless | greghaynes: / index | 20:34 |
greghaynes | yes, and thats what I was hoping for | 20:34 |
greghaynes | I wonder if were just building that incorrectly... | 20:34 |
lifeless | greghaynes: pip isn't in the index | 20:34 |
*** jang has quit IRC | 20:34 | |
lifeless | greghaynes: and you only included one index | 20:34 |
lifeless | greghaynes: (or perhaps get-pip.py only supports one index) | 20:35 |
greghaynes | ah, so we cant really do the fallback index urls thing | 20:35 |
*** jang has joined #tripleo | 20:35 | |
*** jprovazn has quit IRC | 20:35 | |
lifeless | greghaynes: why not? | 20:35 |
*** jang has quit IRC | 20:35 | |
greghaynes | well, thats what I expected this to do | 20:36 |
greghaynes | I wonder though | 20:36 |
greghaynes | maybe were just not writing out the other index into the pip config | 20:36 |
*** jang has joined #tripleo | 20:36 | |
greghaynes | (or is that what you were saying?) | 20:36 |
lifeless | greghaynes: the element is controlled via env variables | 20:36 |
lifeless | greghaynes: (yucky but there it is) | 20:37 |
lifeless | greghaynes: so what variables are being set for this patch? | 20:37 |
greghaynes | ah, I see. none are being set | 20:38 |
*** jlabocki has joined #tripleo | 20:38 | |
jlabocki | ping larsks: https://github.com/larsks/heat-kuburnetes on the etherpad | 20:38 |
greghaynes | so looks like I need to export the env vars for openstack pypi mirrors + file://tmp/pypi | 20:38 |
jlabocki | is 404 | 20:38 |
jlabocki | changing to https://github.com/larsks/heat-kubernetes/ | 20:38 |
*** jang has quit IRC | 20:38 | |
larsks | Yeah, I didn't write that etherpad :) | 20:39 |
*** pensu has quit IRC | 20:39 | |
jlabocki | larsks: $ heat stack-create -f heat-kubernetes/kubecluster.yaml -e local.yaml my-kube-cluster | 20:39 |
jlabocki | ERROR: Property error : kube_master: image "k8s-f20" does not validate glance.image | 20:39 |
larsks | jlabocki: do you have an image named that locally? | 20:40 |
lifeless | greghaynes: the default should be to include the pypi index | 20:40 |
jlabocki | I suppose there is an assumption the glance image is in the repo | 20:40 |
jlabocki | nope, where can I get it? | 20:40 |
larsks | We don't provide one. | 20:40 |
jlabocki | oh, maybe that's on line 12? | 20:40 |
larsks | There are instructions in the README for creating one. | 20:40 |
larsks | Or you can just use an F20 cloud image, although in that case you need to reboot minions after they come up. | 20:40 |
greghaynes | lifeless: hrm... correct | 20:41 |
jlabocki | ok, I'll try to update instructions, but might run out of time | 20:41 |
greghaynes | looks like we dont set either of the env vars that would turn that off | 20:41 |
greghaynes | so, now im just confused why this doesnt work | 20:41 |
larsks | jlabocki: no worries. | 20:41 |
*** jang has joined #tripleo | 20:41 | |
lifeless | greghaynes: perhaps as I suggested get-pip doesn't support multiple indices? | 20:41 |
greghaynes | ah | 20:42 |
jlabocki | when you say the README.md tells you how to create a F20 image | 20:42 |
jlabocki | https://github.com/larsks/heat-kubernetes/blob/master/README.md | 20:42 |
jlabocki | are you referring to "The cluster is based on Fedora 20, and makes use of the https://copr.fedoraproject.org/coprs/walters/atomic-next/ https://copr.fedoraproject.org/ repository. | 20:42 |
jlabocki | " | 20:42 |
jlabocki | just not seeing where it tells you how to make an image | 20:42 |
*** jang has quit IRC | 20:42 | |
larsks | jlabocki: Huh, yeah. There is a get_image.sh script in that repository; I thought there was a reference in the README. | 20:42 |
larsks | Apparently I was mistaken. | 20:42 |
jlabocki | ah | 20:43 |
jlabocki | get image | 20:43 |
jlabocki | ok, | 20:43 |
larsks | I will take a look at that later this evening. | 20:43 |
jlabocki | thanks | 20:43 |
greghaynes | oh my, this code is terrifying | 20:43 |
*** jdob has quit IRC | 20:44 | |
*** jang has joined #tripleo | 20:44 | |
jlabocki | sudo yum provides virt-customize | 20:44 |
jlabocki | No matches found | 20:44 |
jlabocki | hmmm | 20:44 |
jlabocki | larsks: any idea where RHEL7 ships virt-customize | 20:45 |
larsks | jlabocki: punt for now; I am not going to be able to focus on this until later. | 20:45 |
jlabocki | cheers | 20:45 |
larsks | jlabocki: you could try "yum install /usr/bin/virt-customize" and see if that picks up anything. | 20:45 |
openstackgerrit | A change was merged to openstack/tripleo-image-elements: Migrates from map-services to svc-map https://review.openstack.org/129065 | 20:46 |
jpeeler | jlabocki: on fedora, it's in libguestfs-tools-c | 20:46 |
*** jang has quit IRC | 20:46 | |
openstackgerrit | Ryan Hallisey proposed a change to stackforge/kolla: Add nova-novncproxy to the nova-controller https://review.openstack.org/129374 | 20:46 |
openstackgerrit | Ben Nemec proposed a change to openstack/tripleo-image-elements: Make rdo-release install safe https://review.openstack.org/129727 | 20:47 |
*** jang has joined #tripleo | 20:47 | |
jlabocki | trying to install libguestfs* | 20:47 |
jpeeler | it's new-ish i think, so maybe virt-customize is not in rhel 7? | 20:47 |
*** jang has quit IRC | 20:47 | |
jpeeler | what version is in rhel 7? | 20:47 |
larsks | sdake_: maybe I can stick an updated F20 image at people.redhat.com for the purposes of the announcement. | 20:48 |
*** jang has joined #tripleo | 20:48 | |
jpeeler | virt-customize is in 1.26 | 20:48 |
sdake_ | wfm | 20:48 |
*** bth- has joined #tripleo | 20:48 | |
sdake_ | and then just turn off updates? | 20:49 |
larsks | Updates aren't turned on by default. | 20:49 |
larsks | So no worries there. | 20:49 |
*** jang has quit IRC | 20:50 | |
*** jang has joined #tripleo | 20:51 | |
*** gfidente has quit IRC | 20:51 | |
*** jang has quit IRC | 20:51 | |
*** jang has joined #tripleo | 20:52 | |
*** radez is now known as radez_g0n3 | 20:52 | |
*** jang has quit IRC | 20:54 | |
jpeeler | rhallisey: nova-novncproxy needs to be added to the controller yaml file too, right? | 20:55 |
openstackgerrit | A change was merged to openstack/tripleo-image-elements: systemd: always use /lib/systemd https://review.openstack.org/129162 | 20:55 |
rhallisey | jpeeler, not yet, that was just an initial commit that needed an update | 20:56 |
rhallisey | jpeeler, since it's not needed for the release not worried about it yet | 20:56 |
jpeeler | oh ok cool | 20:56 |
*** radez_g0n3 is now known as radez | 20:57 | |
*** jang has joined #tripleo | 20:57 | |
jlabocki | no virt-cuztomize in RHEL7 | 20:58 |
jlabocki | jpeeler ^ | 20:58 |
jlabocki | I can't test | 20:58 |
jlabocki | not enough time | 20:58 |
*** jang has quit IRC | 20:58 | |
openstackgerrit | A change was merged to openstack/tripleo-incubator: Check for firewalld before starting seed https://review.openstack.org/129051 | 20:59 |
*** jang has joined #tripleo | 21:00 | |
*** untriaged-bot has joined #tripleo | 21:00 | |
untriaged-bot | Untriaged bugs so far: | 21:00 |
untriaged-bot | https://bugs.launchpad.net/tuskar/+bug/1382468 | 21:00 |
untriaged-bot | https://bugs.launchpad.net/diskimage-builder/+bug/1381408 | 21:00 |
*** untriaged-bot has quit IRC | 21:00 | |
uvirtbot | Launchpad bug 1382468 in tuskar "Bad parameter exception" [Undecided,Triaged] | 21:00 |
uvirtbot | Launchpad bug 1381408 in diskimage-builder ""visudo" always got error when building overcloud image" [Undecided,New] | 21:00 |
*** cwolfe__ has joined #tripleo | 21:00 | |
lifeless | greghaynes: terrifying, or going-blind terrifying ? | 21:01 |
greghaynes | yes | 21:02 |
greghaynes | lifeless: clarkb indicates that you are correct - that get-pip.py script will not fall back | 21:02 |
greghaynes | so I need to add pip + dependencies to the mirror | 21:02 |
*** jang has quit IRC | 21:02 | |
greghaynes | which makes me think we should be using a tool like devpi | 21:02 |
tchaypo | from memory | 21:03 |
tchaypo | the point where pypi-mirror development got too hard | 21:03 |
tchaypo | was having to have pip+dependencies in the mirror | 21:03 |
greghaynes | haha | 21:03 |
* tchaypo cheers for devpi ;) | 21:03 | |
clarkb | tchaypo no not really | 21:03 |
tchaypo | I defer to clarkb, who was actually there | 21:03 |
clarkb | it was like a one line patch | 21:03 |
clarkb | but interested parties refused to write it | 21:04 |
greghaynes | clarkb: I wrote it! | 21:04 |
greghaynes | https://review.openstack.org/#/c/105650/ | 21:04 |
clarkb | I think greghaynes may have eventuallu | 21:04 |
greghaynes | (want to +A it?) | 21:04 |
tchaypo | heh | 21:04 |
clarkb | hrm why didnt sergey +a | 21:04 |
*** jang has joined #tripleo | 21:04 | |
greghaynes | I do like how that bug got closed at wontfix with a fix patch already posted | 21:05 |
clarkb | sorry that whole thing was frustrating. I posted fix to bug asked a couple people to write change but apparently my fix was wrong | 21:06 |
clarkb | anyways approves | 21:06 |
*** rlandy has quit IRC | 21:06 | |
*** jang has quit IRC | 21:06 | |
clarkb | greghaynes you should ask mordred for core :) | 21:06 |
greghaynes | \O/ | 21:06 |
greghaynes | haha | 21:07 |
mordred | what did I do? | 21:07 |
clarkb | deprecated pypi-mirror | 21:07 |
greghaynes | clarkb: is trying to pawn pypi-mirror review responsibilities off on me | 21:07 |
clarkb | and didnt rehome it | 21:07 |
mordred | ah. greghaynes you want to be new pypi-mirror ptl? | 21:07 |
tchaypo | and didn't announce it, or update docs, or provide a migration path... | 21:08 |
mordred | we do not need it - but if you do and want to own it, that's fine by me :) | 21:08 |
greghaynes | mordred: eh, I dont think I need it either so probably not worth the button clicking | 21:08 |
*** jang has joined #tripleo | 21:08 | |
openstackgerrit | Steven Dake proposed a change to stackforge/kolla: Change to using flat nova networking from neutron https://review.openstack.org/129380 | 21:09 |
*** jang has quit IRC | 21:10 | |
*** jang has joined #tripleo | 21:13 | |
*** sdake_ has quit IRC | 21:13 | |
*** jang has quit IRC | 21:14 | |
*** dsneddon has quit IRC | 21:15 | |
*** dsneddon has joined #tripleo | 21:15 | |
*** jang has joined #tripleo | 21:16 | |
*** jang has quit IRC | 21:18 | |
*** jang has joined #tripleo | 21:21 | |
larsks | jpeeler: around? | 21:21 |
jpeeler | yes | 21:21 |
-openstackstatus- NOTICE: Zuul erroneously marked some changes as having merge conflicts. Those changes have been added to the check queue to be rechecked and will be automatically updated when complete. | 21:22 | |
larsks | jpeeler: https://github.com/larsks/heat-kubernetes/blob/master/get-image.sh#L8 | 21:22 |
*** jang has quit IRC | 21:22 | |
larsks | Is that supposed to be checking of "$IMAGE" has content, or is that supposed to be checking if the file exists locally? | 21:23 |
larsks | Because right now it does not make sense... | 21:23 |
jpeeler | ha oops, i didn't test that part. i was looking for the file to exist locally | 21:23 |
larsks | Thanks. Just checking. | 21:23 |
larsks | rhallisey: ^^^ | 21:23 |
rhallisey | ok I'll send another pull request | 21:24 |
*** jang has joined #tripleo | 21:25 | |
jpeeler | just needs a -f rhallisey | 21:26 |
larsks | And quotes! | 21:26 |
jpeeler | shoot, yes | 21:26 |
*** jang has quit IRC | 21:26 | |
jpeeler | should have just used the [[ | 21:27 |
*** jang has joined #tripleo | 21:28 | |
jpeeler | larsks: i think crux needs to verify in endpoint-create that the existing entry matches fully - i had to manually delete endpoints because of public ip address changes | 21:29 |
*** jang has quit IRC | 21:30 | |
*** sseago has quit IRC | 21:30 | |
larsks | jpeeler: verify what where? If you want to unilaterally replace the endpoints for a service, just add --remove-all... | 21:31 |
*** sseago has joined #tripleo | 21:31 | |
larsks | E.g https://github.com/stackforge/kolla/blob/master/docker/glance/glance-api/start.sh#L23 | 21:31 |
jpeeler | ok guess i need to add that then | 21:32 |
larsks | I have to poke pick up kids. Back online in a few hours. | 21:32 |
larsks | s/poke/go/ | 21:32 |
larsks | Wow. The heck, fingers. | 21:32 |
*** jang has joined #tripleo | 21:33 | |
*** jang has quit IRC | 21:34 | |
openstackgerrit | Jeff Peeler proposed a change to stackforge/kolla: Implement containers for heat-engine and heat-api https://review.openstack.org/128994 | 21:35 |
*** jang has joined #tripleo | 21:37 | |
*** prad has quit IRC | 21:38 | |
*** jang has quit IRC | 21:38 | |
*** jang has joined #tripleo | 21:40 | |
*** openstackgerrit has quit IRC | 21:40 | |
*** ccrouch has quit IRC | 21:42 | |
*** jang has quit IRC | 21:42 | |
*** jang has joined #tripleo | 21:44 | |
*** jang has quit IRC | 21:46 | |
*** zz_avozza is now known as avozza | 21:48 | |
*** radez is now known as radez_g0n3 | 21:48 | |
*** jang has joined #tripleo | 21:49 | |
*** jang2 has quit IRC | 21:49 | |
*** jang has quit IRC | 21:50 | |
*** jang has joined #tripleo | 21:52 | |
tchaypo | prepare for notification of ci-overcloud fail | 21:53 |
tchaypo | although maybe we'll be lucky and it will build inside the usual timeout.. | 21:53 |
*** jang has quit IRC | 21:54 | |
*** jehb has quit IRC | 21:55 | |
*** jang has joined #tripleo | 21:56 | |
tchaypo | only one still spawning... | 21:57 |
tchaypo | lifeless: if you're idly casting around for something exciting to do today... | 21:58 |
tchaypo | which i know is likely, as you never have much on your plate | 21:58 |
*** jang has quit IRC | 21:58 | |
tchaypo | i think we need to update https://review.openstack.org/#/c/103757/36/scripts/setup-neutron and push it into the new setup-neutron | 21:59 |
*** morazi has quit IRC | 22:00 | |
*** jang has joined #tripleo | 22:00 | |
*** jang has quit IRC | 22:02 | |
*** jang has joined #tripleo | 22:03 | |
*** jang has quit IRC | 22:03 | |
*** jang has joined #tripleo | 22:04 | |
lifeless | tchaypo: StevenK assured me he had that covered | 22:05 |
*** jang has quit IRC | 22:06 | |
*** jang has joined #tripleo | 22:08 | |
tchaypo | well in another few hours once he wakes up.. | 22:10 |
tchaypo | still one stubborn holdout | 22:10 |
*** jang has quit IRC | 22:10 | |
*** jang has joined #tripleo | 22:11 | |
*** jang has quit IRC | 22:11 | |
*** jang has joined #tripleo | 22:12 | |
*** rhallisey has quit IRC | 22:14 | |
*** jang has quit IRC | 22:14 | |
tchaypo | there are still ~10 nodes I don't have a correct MAC address for. For now I've removed them from ironic so that they don't slow down builds. I can add them to the seed's ironic one at a time, find the mac, then move them back to the undercloud ironic | 22:15 |
tchaypo | but i don't think that's worth holding up getting this up and running | 22:15 |
*** weshay has quit IRC | 22:15 | |
*** jang has joined #tripleo | 22:17 | |
greghaynes | tchaypo: I thought you two were same time zone? | 22:17 |
tchaypo | if you mean lifeless, he's a few hours ahead of me | 22:18 |
greghaynes | you and StevenK | 22:18 |
tchaypo | if you mean stevenk - i couldn't sleep this morning so I've been working since about 4:45. Steven usually comes online around 10 | 22:18 |
greghaynes | or does he keep greg-like hours | 22:18 |
greghaynes | ah | 22:18 |
tchaypo | not quite greg-like | 22:18 |
*** jang has quit IRC | 22:18 | |
tchaypo | i feel like this conversation now has a mandatory reference to Eastern Standard Tribe | 22:19 |
*** jang has joined #tripleo | 22:19 | |
*** jang has quit IRC | 22:19 | |
*** jang has joined #tripleo | 22:20 | |
*** lucas-zZz has quit IRC | 22:20 | |
tchaypo | jump on the console of the stuck node and it says it didn't get any PXE boot offers | 22:20 |
tchaypo | do i have the right AMC? | 22:21 |
*** eghobo has joined #tripleo | 22:22 | |
*** jang has quit IRC | 22:22 | |
*** jang has joined #tripleo | 22:24 | |
*** jang has quit IRC | 22:26 | |
*** jang has joined #tripleo | 22:28 | |
*** eghobo has quit IRC | 22:29 | |
*** rhallisey has joined #tripleo | 22:30 | |
*** jang has quit IRC | 22:30 | |
*** eghobo has joined #tripleo | 22:32 | |
*** jang has joined #tripleo | 22:33 | |
*** jang has quit IRC | 22:34 | |
*** jang has joined #tripleo | 22:36 | |
*** jang has quit IRC | 22:38 | |
*** jang has joined #tripleo | 22:40 | |
lifeless | tchaypo: which eastern and which standard? | 22:42 |
*** jang has quit IRC | 22:42 | |
*** openstackgerrit has joined #tripleo | 22:42 | |
tchaypo | lifeless: you havne't read? | 22:43 |
tchaypo | http://craphound.com/est/?page_id=1574 | 22:43 |
*** eghobo has quit IRC | 22:44 | |
*** jang has joined #tripleo | 22:44 | |
*** avozza is now known as zz_avozza | 22:45 | |
*** zz_avozza is now known as avozza | 22:46 | |
*** jang has quit IRC | 22:46 | |
tchaypo | oh myyyyyy | 22:48 |
tchaypo | there's a new kindle out | 22:48 |
tchaypo | i haven't read a review yet but i want it | 22:48 |
*** jang has joined #tripleo | 22:48 | |
*** eghobo has joined #tripleo | 22:48 | |
*** eghobo has quit IRC | 22:49 | |
* tchaypo sets mode +fanboi | 22:50 | |
*** jang has quit IRC | 22:50 | |
*** jang has joined #tripleo | 22:52 | |
*** eghobo has joined #tripleo | 22:53 | |
*** ci-overcloud has joined #tripleo | 22:53 | |
ci-overcloud | ************** ci-overcloud complete status=1 ************ | 22:53 |
*** ci-overcloud has quit IRC | 22:53 | |
*** marun has quit IRC | 22:54 | |
*** jang has quit IRC | 22:54 | |
*** jang has joined #tripleo | 22:55 | |
*** jang has quit IRC | 22:58 | |
*** jang has joined #tripleo | 22:59 | |
*** jang has joined #tripleo | 23:00 | |
*** jang has quit IRC | 23:02 | |
*** jang has joined #tripleo | 23:03 | |
*** jang has quit IRC | 23:03 | |
*** jang has joined #tripleo | 23:04 | |
lifeless | tchaypo: allo george :P | 23:05 |
*** jang has quit IRC | 23:06 | |
*** jang has joined #tripleo | 23:09 | |
*** jang has quit IRC | 23:10 | |
*** jang has joined #tripleo | 23:11 | |
*** jang has joined #tripleo | 23:12 | |
*** saurabhs1 has left #tripleo | 23:14 | |
*** jang has quit IRC | 23:14 | |
*** jang has joined #tripleo | 23:17 | |
*** jang has quit IRC | 23:18 | |
*** jang has joined #tripleo | 23:21 | |
*** jang has quit IRC | 23:22 | |
*** jang has joined #tripleo | 23:23 | |
*** jang has quit IRC | 23:23 | |
lifeless | tchaypo: no, I don't enjoy ory doctorows books, at least the ones I've tried. | 23:24 |
*** jang has joined #tripleo | 23:24 | |
tchaypo | me neither | 23:24 |
tchaypo | EST just happens to be one of the ones I've tried | 23:24 |
*** jang has quit IRC | 23:26 | |
*** jang has joined #tripleo | 23:27 | |
*** jang has quit IRC | 23:27 | |
*** jang has joined #tripleo | 23:28 | |
tchaypo | my head has turned to moosh. It's time for a break. | 23:28 |
*** rameshg87 has joined #tripleo | 23:29 | |
tchaypo | I was about to say that the thing I'm bashing my head against right now is trying to get the mac address of the one node that didn't come up.. | 23:30 |
tchaypo | but i should be able to just remove it and figure that out later | 23:30 |
rameshg87 | SpamapS: hi | 23:30 |
*** jang has quit IRC | 23:30 | |
tchaypo | I've been trying to get on the ILO via firefox + ssh as a socks proxy, but that hasn't been working too well | 23:31 |
*** jang has joined #tripleo | 23:33 | |
*** jang has quit IRC | 23:34 | |
*** jang has joined #tripleo | 23:35 | |
*** jang has quit IRC | 23:35 | |
*** jang has joined #tripleo | 23:36 | |
*** jang has quit IRC | 23:38 | |
*** jang has joined #tripleo | 23:39 | |
rhallisey | sdake, didn't work for me | 23:39 |
*** jang has joined #tripleo | 23:40 | |
*** jang has quit IRC | 23:42 | |
*** jang has joined #tripleo | 23:45 | |
*** jang has quit IRC | 23:46 | |
*** jang has joined #tripleo | 23:47 | |
*** jang has quit IRC | 23:47 | |
*** jang has joined #tripleo | 23:48 | |
*** jang has quit IRC | 23:50 | |
*** jang has joined #tripleo | 23:51 | |
*** jang has joined #tripleo | 23:52 | |
*** jang has quit IRC | 23:54 | |
*** Kiall has quit IRC | 23:56 | |
*** jang has joined #tripleo | 23:57 | |
*** Kiall has joined #tripleo | 23:58 | |
*** jang has quit IRC | 23:58 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!