*** khrystoph has joined #openstack-kolla | 00:30 | |
*** khrystoph has quit IRC | 00:35 | |
*** caoyuan has joined #openstack-kolla | 00:36 | |
*** cah_link has joined #openstack-kolla | 00:42 | |
niedbalski | Jeffrey4l, ping, re: https://review.openstack.org/#/c/565264/, can you check the latest patchset? | 00:48 |
---|---|---|
Jeffrey4l | niedbalski, i think "(nova_compute_services.stdout | from_json | length) >= (groups['compute'] | length)" is unneccessary. | 00:49 |
Jeffrey4l | imaging, one of the nova-compute is down. | 00:49 |
Jeffrey4l | it should not break the whole deployment | 00:49 |
niedbalski | Jeffrey4l, not really, the nova-compute service list will still show on the compute service list call, as down, but the | length , will remain | 00:50 |
Jeffrey4l | of if nova-compute failed to start? | 00:50 |
Jeffrey4l | or if* | 00:50 |
Jeffrey4l | for example network connectivity issue? | 00:51 |
Jeffrey4l | niedbalski, ^ | 00:51 |
niedbalski | Jeffrey4l, it should be reflected in 'service list' as down as well | 00:52 |
Jeffrey4l | niedbalski no. if there are some network issue, nova-compute has no change to connect with MQ service. and the 'sevice list' should has no such item. | 00:53 |
niedbalski | Jeffrey4l, I think you mean before registering itself, remember we are running this inside a do-while loop, with a retry | 00:54 |
Jeffrey4l | niedbalski, what about the network issue? if there are network issue on one of nova-compute node, it will never register itself. | 00:55 |
Jeffrey4l | so do-while won't be helpful. | 00:55 |
niedbalski | Jeffrey4l, shouldn't be ok for the deployment to fail due to that network issue? | 00:56 |
Jeffrey4l | niedbalski, for one of nova-compute, i think it is OK. | 00:56 |
Jeffrey4l | there also some other cause which may result in nova-compute failed to start. | 00:56 |
Jeffrey4l | like libvirt failed to start for some reason. | 00:56 |
Jeffrey4l | anyway, the bottom line is, we shouldn't block the whole deployment when there is one nova-compute has issues. | 00:57 |
niedbalski | Jeffrey4l, ok, so you think is ok for the deployment to continue even if a(set) of compute(s) services aren't showing up (even after running on this do-while loop retry) | 01:00 |
Jeffrey4l | niedbalski, yes. i think it is ok. or just warning the end-user that "There may be some issue for your nova-compute, check it later" | 01:01 |
niedbalski | Jeffrey4l, ok, there is space for improvement on that front. | 01:02 |
niedbalski | Jeffrey4l, are you ok with using the cell discovery with the --by-service flag? | 01:02 |
Jeffrey4l | niedbalski, i have no idea about this. any difference when using or without --by-service? | 01:03 |
Jeffrey4l | niedbalski, when this parameter is necessary? | 01:03 |
Jeffrey4l | nova-ironic driver? | 01:04 |
*** caoyuan has quit IRC | 01:04 | |
niedbalski | Jeffrey4l, nova-ironic is one of the reasons , but I found that the normal (as opposed to by-service) to be less reliable (missed host-mappings, found a race condition check: #1768094) , with --by-service the host mappings are enforced | 01:07 |
*** zhaochao has joined #openstack-kolla | 01:07 | |
Jeffrey4l | niedbalski, isn't the option "discover_hosts_in_cells_interval = 60" works? | 01:08 |
Jeffrey4l | sound like a nova bug, right? | 01:09 |
niedbalski | Jeffrey4l, yes, sounds like a nova bug indeed, the host mapping never completed on time, so the successive retries (every cell_intervals*) are just raising the 'no host mapping found' exception | 01:11 |
niedbalski | Jeffrey4l, --by-service https://github.com/openstack/nova/commit/005a66d7e0bb716e32d29a6b5c9d9f24192596e2#diff-e5c1518bb4e7a1d9864c526109172161R222 , does this. | 01:11 |
niedbalski | Jeffrey4l, btw, I just reproduced this with more than 40 compute nodes. | 01:11 |
Jeffrey4l | niedbalski, on queens branch, right? | 01:12 |
niedbalski | Jeffrey4l, queens kolla images, kolla-ansible master | 01:12 |
Jeffrey4l | niedbalski, why you mix the kolla and kolla-ansible? | 01:12 |
Jeffrey4l | it is not a goode idea. | 01:12 |
Jeffrey4l | and may result in wired issue. | 01:13 |
niedbalski | Jeffrey4l, well, i don't but it's reproducible on master | 01:13 |
niedbalski | Jeffrey4l, queens as well | 01:13 |
Jeffrey4l | ok | 01:13 |
*** n0isyn0ise has quit IRC | 01:14 | |
niedbalski | Jeffrey4l, I will chase down the nova issue, in the meanwhile --by-service seems reliable | 01:14 |
Jeffrey4l | niedbalski, please add nova to "also affects project" on this issue, which is helpful for us to tracking the issue. | 01:15 |
niedbalski | Jeffrey4l, ok | 01:15 |
Jeffrey4l | base on the nova's code, sound like "--by-service" is better then without it. | 01:16 |
Jeffrey4l | so i think it is OK that we added --by-service parameter. | 01:16 |
niedbalski | Jeffrey4l, ok, we might revert this back once we have a better idea on what's wrong at the nova side. | 01:17 |
Jeffrey4l | niedbalski, check the commit message for https://github.com/openstack/nova/commit/005a66d7e0bb716e32d29a6b5c9d9f24192596e2#diff-e5c1518bb4e7a1d9864c526109172161R222 | 01:17 |
Jeffrey4l | https://github.com/openstack/nova/commit/005a66d7e0bb716e32d29a6b5c9d9f24192596e2#diff-e5c1518bb4e7a1d9864c526109172161R222 | 01:17 |
Jeffrey4l | This allows us to discover and map compute hosts by service instead of | 01:17 |
Jeffrey4l | by compute node, which will solve a major deployment ordering problem for | 01:17 |
Jeffrey4l | people using ironic. This also allows closing a really nasty race when | 01:17 |
Jeffrey4l | doing HA of nova-compute/ironic. | 01:17 |
Jeffrey4l | the origial issue is for nova-compute-ironic | 01:18 |
niedbalski | Jeffrey4l, yes, and I can attest this isn't only affecting ironic driver. | 01:18 |
Jeffrey4l | https://github.com/openstack/nova/blob/005a66d7e0bb716e32d29a6b5c9d9f24192596e2/releasenotes/notes/discover-hosts-by-service-06ee20365b895127.yaml | 01:18 |
Jeffrey4l | but check the releasenote ... | 01:18 |
Jeffrey4l | At this point, there is no need to use this unless you're using ironic, | 01:19 |
Jeffrey4l | as it is less efficient | 01:19 |
*** wirehead_ has quit IRC | 01:20 | |
Jeffrey4l | and during the first deployment, there is no "hypervisor" for nova-compute-ironic, so i am thinking that it is useless for us, maybe. | 01:20 |
niedbalski | Jeffrey4l, there is nothing that is ironic specific on the parameter implementation. | 01:21 |
Jeffrey4l | niedbalski, but ironic is mentioned in commit message and release notes. | 01:22 |
niedbalski | Jeffrey4l, we discussed this with martinst on the patchset 2 | 01:22 |
Jeffrey4l | brb | 01:24 |
*** wirehead_ has joined #openstack-kolla | 01:26 | |
*** caoyuan has joined #openstack-kolla | 01:49 | |
openstackgerrit | Merged openstack/kolla-ansible master: Allow setting computes_need_external_bridge. https://review.openstack.org/566609 | 02:01 |
*** hongbin has joined #openstack-kolla | 02:02 | |
*** pvc has joined #openstack-kolla | 02:03 | |
pvc | hi | 02:03 |
pvc | where can i get the mac address that will be use in ironci? | 02:03 |
*** cah_link has quit IRC | 02:04 | |
pvc | hi | 02:15 |
pvc | can someone help me on the mac address of the bare-metal service card? | 02:15 |
*** zhangfei has joined #openstack-kolla | 02:16 | |
*** dave-mccowan has quit IRC | 02:20 | |
*** hongbin_ has joined #openstack-kolla | 02:37 | |
*** hongbin has quit IRC | 02:40 | |
*** tone_zrt has joined #openstack-kolla | 02:44 | |
*** kevzha01 has joined #openstack-kolla | 02:44 | |
*** kevzha01__ has quit IRC | 02:46 | |
*** tone_z has quit IRC | 02:46 | |
openstackgerrit | johjuhyun proposed openstack/kolla-ansible master: ovs-dpdkctl.sh syntax error https://review.openstack.org/566776 | 02:46 |
*** dangtrinhnt has quit IRC | 02:47 | |
*** kevzha01 is now known as kevinz | 03:00 | |
*** cah_link has joined #openstack-kolla | 03:14 | |
*** zshi has quit IRC | 03:27 | |
*** gyankum has joined #openstack-kolla | 03:41 | |
*** janki has joined #openstack-kolla | 03:50 | |
*** hongbin_ has quit IRC | 03:55 | |
*** cah_link has quit IRC | 03:56 | |
*** cah_link has joined #openstack-kolla | 04:16 | |
*** khrystoph has joined #openstack-kolla | 04:22 | |
*** cah_link has quit IRC | 04:36 | |
*** khrystoph has quit IRC | 04:53 | |
*** radeks has joined #openstack-kolla | 05:24 | |
openstackgerrit | garyk proposed openstack/kolla-ansible master: Add support for NSXV3 https://review.openstack.org/566569 | 05:37 |
*** zshi has joined #openstack-kolla | 05:48 | |
openstackgerrit | Jeffrey Zhang proposed openstack/kolla stable/pike: Use immutable journal path rather than device name https://review.openstack.org/566785 | 05:59 |
*** pcaruana has joined #openstack-kolla | 06:01 | |
*** duonghq has joined #openstack-kolla | 06:13 | |
*** wolverineav has joined #openstack-kolla | 06:13 | |
*** cah_link has joined #openstack-kolla | 06:15 | |
*** liuzz_ has joined #openstack-kolla | 06:29 | |
*** liuzz has quit IRC | 06:29 | |
*** hamza21 has joined #openstack-kolla | 06:31 | |
openstackgerrit | johjuhyun proposed openstack/kolla-ansible master: ovs-dpdkctl.sh syntax error https://review.openstack.org/566776 | 06:36 |
openstackgerrit | Martin André proposed openstack/kolla master: Create symlinks for failed builds logs https://review.openstack.org/566588 | 06:38 |
*** bhujay has joined #openstack-kolla | 06:42 | |
*** dr_feelgood has joined #openstack-kolla | 06:44 | |
*** vabada has joined #openstack-kolla | 06:47 | |
*** egonzalez has joined #openstack-kolla | 06:51 | |
*** dciabrin_ has quit IRC | 06:56 | |
*** bmace has quit IRC | 06:59 | |
zhubingbing_ | hi guys | 06:59 |
*** bmace has joined #openstack-kolla | 07:00 | |
*** radeks_ has joined #openstack-kolla | 07:01 | |
*** dangtrinhnt has joined #openstack-kolla | 07:01 | |
*** ognjen has joined #openstack-kolla | 07:04 | |
openstackgerrit | Martin André proposed openstack/kolla master: Create symlinks for failed builds logs https://review.openstack.org/566588 | 07:08 |
*** skramaja has joined #openstack-kolla | 07:10 | |
*** dr_feelgood has quit IRC | 07:14 | |
*** dr_feelgood has joined #openstack-kolla | 07:14 | |
openstackgerrit | Chason Chan proposed openstack/kolla-ansible stable/ocata: Fix the incorrect path of inventory files https://review.openstack.org/566799 | 07:17 |
*** skramaja_ has joined #openstack-kolla | 07:18 | |
*** skramaja has quit IRC | 07:18 | |
openstackgerrit | Jeffrey Zhang proposed openstack/kolla master: Move ansible to virtualenv in kolla_toolbox https://review.openstack.org/561797 | 07:19 |
*** dr_feelgood has quit IRC | 07:19 | |
*** pvc has quit IRC | 07:21 | |
openstackgerrit | Tone Zhang proposed openstack/kolla-ansible master: wip: allow Kolla Ceph to deploy bluestore OSDs in Kolla-ansible https://review.openstack.org/566801 | 07:32 |
*** rwsu has quit IRC | 07:32 | |
*** dr_feelgood has joined #openstack-kolla | 07:37 | |
*** ognjen has quit IRC | 07:43 | |
openstackgerrit | Duong Ha-Quang proposed openstack/kolla-ansible master: Disable glance-registry https://review.openstack.org/566804 | 07:43 |
*** ognjen has joined #openstack-kolla | 07:44 | |
*** serlex has joined #openstack-kolla | 07:46 | |
openstackgerrit | Duong Ha-Quang proposed openstack/kolla-ansible master: [WIP] Apply Glance database migration https://review.openstack.org/534611 | 07:47 |
*** duonghq has quit IRC | 07:48 | |
*** lvdombrkr has joined #openstack-kolla | 07:58 | |
openstackgerrit | Merged openstack/kolla-ansible stable/pike: Fix "key_repository is world readable: /etc/keystone/fernet-keys/" warning https://review.openstack.org/566341 | 08:00 |
*** rwsu has joined #openstack-kolla | 08:02 | |
hrw | morning | 08:03 |
*** gfidente has joined #openstack-kolla | 08:03 | |
*** gfidente has quit IRC | 08:03 | |
*** gfidente has joined #openstack-kolla | 08:03 | |
*** jmccarthy has joined #openstack-kolla | 08:07 | |
*** dougsz has joined #openstack-kolla | 08:08 | |
*** skramaja_ is now known as skramaja | 08:08 | |
openstackgerrit | Merged openstack/kolla-ansible master: Enforce removal of container network namespace. https://review.openstack.org/566713 | 08:11 |
*** k_mouza has joined #openstack-kolla | 08:11 | |
*** mdnadeem has joined #openstack-kolla | 08:13 | |
openstackgerrit | Tone Zhang proposed openstack/kolla master: wip: allow Kolla Ceph to deploy bluestore OSDs in Kolla https://review.openstack.org/566810 | 08:18 |
*** hamza21 has quit IRC | 08:33 | |
*** xinliang3 has joined #openstack-kolla | 08:38 | |
*** tch has quit IRC | 08:40 | |
*** xinliang has quit IRC | 08:40 | |
*** tch has joined #openstack-kolla | 08:40 | |
*** jmccarthy has quit IRC | 08:40 | |
*** jmccarthy has joined #openstack-kolla | 08:41 | |
*** dr_feelgood has quit IRC | 08:45 | |
*** dr_feelgood has joined #openstack-kolla | 08:46 | |
*** ognjen has quit IRC | 08:46 | |
*** guest___ has joined #openstack-kolla | 08:47 | |
guest___ | hi anyone know how to get the mac of the baremetal service netowkr card | 08:48 |
*** dr_feelgood has quit IRC | 08:50 | |
*** ognjen has joined #openstack-kolla | 08:52 | |
*** vabada has quit IRC | 08:55 | |
*** vabada has joined #openstack-kolla | 08:55 | |
*** kevinz has quit IRC | 09:00 | |
*** jmccarthy has quit IRC | 09:01 | |
openstackgerrit | Mark Goddard proposed openstack/kolla-ansible stable/queens: Only copy custom fluentd filters when fluentd is enabled https://review.openstack.org/566821 | 09:01 |
*** goutham has joined #openstack-kolla | 09:03 | |
*** jmccarthy has joined #openstack-kolla | 09:05 | |
*** k_mouza_ has joined #openstack-kolla | 09:16 | |
*** k_mouza has quit IRC | 09:16 | |
*** gkadam has joined #openstack-kolla | 09:19 | |
egonzalez | hrw, what think about my comment in https://review.openstack.org/#/c/564552/ | 09:20 |
*** sambetts|afk is now known as sambetts | 09:22 | |
hrw | egonzalez: that patch was kind of -1 material. | 09:24 |
hrw | egonzalez: at Linaro CI we remove the whole directory to be able to build something ;( | 09:25 |
hrw | berendt_: can we close https://bugs.launchpad.net/kolla/+bug/1655012 as invalid? | 09:29 |
openstack | Launchpad bug 1655012 in kolla "Remove Debian support" [Medium,In progress] - Assigned to Christian Berendt (berendt) | 09:29 |
*** wolverineav has quit IRC | 09:30 | |
*** wolverineav has joined #openstack-kolla | 09:30 | |
*** dr_feelgood has joined #openstack-kolla | 09:34 | |
mago_ | Hi team! Following our discussion with egonzales on Monday, I deployed Magnum-api Kolla images with an Apache server calling the magnum WSGI script. | 09:34 |
*** wolverineav has quit IRC | 09:35 | |
mago_ | I first used this script : /var/lib/kolla/venv/bin/magnum. And got an error that it wasn't a valid WSGI script. | 09:35 |
egonzalez | mago_, thats the cmd command, the wsgi is in a diff place | 09:36 |
mago_ | I then switched to using this script : /var/lib/kolla/venv/lib/python2.7/site-packages/magnum/api/app.wsgi. Apache successfully starts now | 09:36 |
mago_ | Hi egonzales, thanks for answering, is this script the correct one : /var/lib/kolla/venv/lib/python2.7/site-packages/magnum/api/app.wsgi ? | 09:37 |
egonzalez | https://github.com/openstack/magnum/tree/master/magnum/api | 09:37 |
*** ognjen has quit IRC | 09:37 | |
egonzalez | yep | 09:37 |
openstackgerrit | Marcin Juszkiewicz proposed openstack/kolla master: base/nova-compute: install udev/systemd to satisfy dependencies https://review.openstack.org/566692 | 09:37 |
hrw | egonzalez: can you look at ^^? it blocks us from doing any Debian builds | 09:38 |
mago_ | egonzales : Thanks for confirming. I'm currently hitting an issue and was unsure if I was calling the right script. | 09:39 |
*** k_mouza_ has quit IRC | 09:39 | |
mago_ | egonzalez : the issue I'm hitting, when I call a basic "openstack coe cluster list" is a response like : "Invalid input for field 'identity/password/user/password': None is not of type 'string'" | 09:40 |
egonzalez | mago_, is there some trace in magnum api logs? | 09:40 |
mago_ | egonzalez : does it by any chance ring a bell to you ? Otherwise I might go and ask the container team :) | 09:40 |
egonzalez | hrw, just a nit, other lgtm | 09:41 |
hrw | right | 09:41 |
mago_ | egonzalez : from /var/log/kolla/magnum/app.wsgi.log : http://paste.openstack.org/show/720545/ | 09:42 |
egonzalez | mago_, for the error looks like a missing/worn config option | 09:42 |
openstackgerrit | Marcin Juszkiewicz proposed openstack/kolla master: base/nova-compute: install udev/systemd to satisfy dependencies https://review.openstack.org/566692 | 09:42 |
hrw | updated | 09:42 |
*** vabada has quit IRC | 09:46 | |
*** vabada has joined #openstack-kolla | 09:46 | |
mago_ | egonzales : the magnum.conf : http://paste.openstack.org/show/720548/ | 09:46 |
egonzalez | mago_, compare with kolla-ansible's template https://github.com/openstack/kolla-ansible/blob/master/ansible/roles/magnum/templates/magnum.conf.j2 | 09:48 |
egonzalez | missing some keystone_auth section | 09:48 |
*** k_mouza has joined #openstack-kolla | 09:52 | |
*** ognjen has joined #openstack-kolla | 09:55 | |
*** mgoddard has joined #openstack-kolla | 09:59 | |
mago_ | egonzalez : Thanks I will have a look at this section .. Strange because I have another installation (without Kolla), working fine without this section. | 10:00 |
*** k_mouza has quit IRC | 10:14 | |
openstackgerrit | Marcin Juszkiewicz proposed openstack/kolla master: base/nova-compute: install udev/systemd to satisfy dependencies https://review.openstack.org/566692 | 10:17 |
*** caowei has quit IRC | 10:20 | |
hrw | needed second coffee to get it right | 10:25 |
guest___ | hi | 10:26 |
guest___ | is there a way | 10:26 |
guest___ | that i can use gpu virtualization in openstack? | 10:26 |
hrw | uf. nova-compute built | 10:29 |
guest___ | what? | 10:29 |
guest___ | yes GPU virtualization | 10:29 |
*** k_mouza has joined #openstack-kolla | 10:30 | |
openstackgerrit | Liu Yang proposed openstack/kolla-ansible master: Add trove-guestagent.conf to trove_taskmanager container https://review.openstack.org/566846 | 10:38 |
openstackgerrit | Liu Yang proposed openstack/kolla-ansible master: Add trove-guestagent.conf to trove_taskmanager container https://review.openstack.org/566846 | 10:40 |
guest___ | is sir Liu yang here? | 10:42 |
guest___ | no iscsid when i add another compute node | 10:49 |
*** ognjen has quit IRC | 10:52 | |
*** ognjen has joined #openstack-kolla | 10:55 | |
*** wolverineav has joined #openstack-kolla | 11:03 | |
*** k_mouza has quit IRC | 11:07 | |
*** k_mouza has joined #openstack-kolla | 11:08 | |
hrw | I do wonder can kolla build be a bit better at threading... | 11:14 |
hrw | on 8core system I see one cpu core busy | 11:15 |
hrw | when it goes to pip | 11:15 |
hrw | ah. never mind - wrong profile started | 11:16 |
*** dr_feelgood has quit IRC | 11:21 | |
*** dr_feelgood has joined #openstack-kolla | 11:21 | |
*** zhangfei has quit IRC | 11:23 | |
guest___ | libvirtError: invalid argument: could not find capabilities for domaintype=kvm | 11:25 |
guest___ | libvirtError: invalid argument: could not find capabilities for domaintype=kvm when adding a compute node | 11:25 |
*** dr_feelgood has quit IRC | 11:26 | |
*** Reepicheep_ has quit IRC | 11:29 | |
*** guest___ has quit IRC | 11:29 | |
*** Reepicheep has joined #openstack-kolla | 11:32 | |
*** dr_feelgood has joined #openstack-kolla | 11:44 | |
*** skramaja has quit IRC | 11:57 | |
*** skramaja has joined #openstack-kolla | 11:57 | |
*** caoyuan has quit IRC | 12:01 | |
*** caoyuan has joined #openstack-kolla | 12:02 | |
*** caoyuan has quit IRC | 12:07 | |
*** k_mouza has quit IRC | 12:11 | |
*** dave-mccowan has joined #openstack-kolla | 12:22 | |
*** dave-mcc_ has joined #openstack-kolla | 12:24 | |
*** dave-mccowan has quit IRC | 12:26 | |
openstackgerrit | garyk proposed openstack/kolla-ansible master: Add support for NSXV3 https://review.openstack.org/566569 | 12:38 |
*** k_mouza has joined #openstack-kolla | 12:40 | |
*** jmccarthy has quit IRC | 12:42 | |
*** jmccarthy1 has joined #openstack-kolla | 12:42 | |
*** jmccarthy1 has left #openstack-kolla | 12:43 | |
*** jmccarthy has joined #openstack-kolla | 12:43 | |
openstackgerrit | Jorge Niedbalski proposed openstack/kolla-ansible stable/queens: Enforce removal of container network namespace. https://review.openstack.org/566873 | 12:45 |
openstackgerrit | Jorge Niedbalski proposed openstack/kolla-ansible stable/queens: Allow setting computes_need_external_bridge. https://review.openstack.org/566874 | 12:45 |
*** goldyfruit has joined #openstack-kolla | 12:48 | |
*** openstackgerrit has quit IRC | 12:49 | |
*** caoyuan has joined #openstack-kolla | 12:53 | |
*** gyankum has quit IRC | 12:53 | |
*** tone_z has joined #openstack-kolla | 12:54 | |
*** tone_zrt has quit IRC | 12:57 | |
*** openstackgerrit has joined #openstack-kolla | 12:58 | |
openstackgerrit | weizj proposed openstack/kolla-ansible master: Clean up keystone_authtoken groups for ceilometer https://review.openstack.org/565059 | 12:58 |
*** tone_zrt has joined #openstack-kolla | 12:58 | |
*** tone_z has quit IRC | 12:59 | |
*** ognjen_ has joined #openstack-kolla | 13:04 | |
*** gkadam_ has joined #openstack-kolla | 13:05 | |
*** ognjen has quit IRC | 13:07 | |
*** gkadam has quit IRC | 13:07 | |
*** yingjun has joined #openstack-kolla | 13:19 | |
*** dklyle has quit IRC | 13:19 | |
*** goutham has quit IRC | 13:20 | |
*** ognjen_ has quit IRC | 13:20 | |
*** ognjen has joined #openstack-kolla | 13:21 | |
*** emccormick has joined #openstack-kolla | 13:33 | |
*** yingjun has quit IRC | 13:34 | |
*** rmart04 has joined #openstack-kolla | 13:34 | |
*** jtriley has joined #openstack-kolla | 13:43 | |
*** yingjun has joined #openstack-kolla | 13:44 | |
*** yingjun has quit IRC | 13:45 | |
*** yingjun has joined #openstack-kolla | 13:46 | |
*** hamza21 has joined #openstack-kolla | 13:46 | |
*** yingjun has quit IRC | 13:46 | |
*** yingjun has joined #openstack-kolla | 13:47 | |
*** yingjun has quit IRC | 13:48 | |
*** robbbe has joined #openstack-kolla | 13:48 | |
*** yingjun has joined #openstack-kolla | 13:49 | |
*** emccormickva has joined #openstack-kolla | 13:55 | |
*** emccormick has quit IRC | 13:55 | |
*** cah_link has quit IRC | 13:59 | |
*** skramaja has quit IRC | 14:00 | |
*** tone_zrt has quit IRC | 14:00 | |
*** tone_zrt has joined #openstack-kolla | 14:00 | |
*** emccormickva has quit IRC | 14:03 | |
*** tch has quit IRC | 14:03 | |
*** tch has joined #openstack-kolla | 14:04 | |
*** ognjen has quit IRC | 14:05 | |
*** emccormickva has joined #openstack-kolla | 14:06 | |
*** hamza21 has quit IRC | 14:11 | |
*** zhangfei has joined #openstack-kolla | 14:13 | |
*** hamzy has quit IRC | 14:18 | |
*** hamzy has joined #openstack-kolla | 14:18 | |
*** mchlumsky has joined #openstack-kolla | 14:30 | |
*** egonzalez has quit IRC | 14:30 | |
*** egonzalez has joined #openstack-kolla | 14:36 | |
*** dklyle has joined #openstack-kolla | 14:42 | |
*** lvdombrkr has quit IRC | 14:43 | |
*** yingjun has quit IRC | 14:51 | |
openstackgerrit | garyk proposed openstack/kolla-ansible master: Add support for NSXV3 https://review.openstack.org/566569 | 14:59 |
*** gfidente has quit IRC | 14:59 | |
*** gyankum has joined #openstack-kolla | 15:00 | |
*** rmart04 has quit IRC | 15:01 | |
*** egonzalez has quit IRC | 15:05 | |
*** zhangfei has quit IRC | 15:06 | |
*** khrystoph has joined #openstack-kolla | 15:09 | |
*** khrystoph has quit IRC | 15:13 | |
*** jtriley_ has joined #openstack-kolla | 15:16 | |
*** jtriley has quit IRC | 15:16 | |
*** bhujay has quit IRC | 15:21 | |
*** goldyfruit has quit IRC | 15:32 | |
*** pbourke has quit IRC | 15:32 | |
*** dr_feelgood has quit IRC | 15:33 | |
*** dr_feelgood has joined #openstack-kolla | 15:33 | |
*** pbourke has joined #openstack-kolla | 15:34 | |
*** dr_feelgood has quit IRC | 15:37 | |
*** gfidente has joined #openstack-kolla | 15:37 | |
*** dr_feelgood has joined #openstack-kolla | 15:37 | |
*** gkadam__ has joined #openstack-kolla | 15:43 | |
*** gkadam_ has quit IRC | 15:46 | |
*** goldyfruit has joined #openstack-kolla | 15:48 | |
*** serlex has quit IRC | 15:49 | |
*** zhaochao has quit IRC | 15:50 | |
*** tvignaud has quit IRC | 15:50 | |
*** gyan_ has joined #openstack-kolla | 15:51 | |
*** gyankum has quit IRC | 15:54 | |
*** janki has quit IRC | 16:01 | |
*** bhujay has joined #openstack-kolla | 16:05 | |
*** dr_feelgood has quit IRC | 16:09 | |
*** dr_feelgood has joined #openstack-kolla | 16:10 | |
*** dr_feelgood has quit IRC | 16:14 | |
*** dr_feelgood has joined #openstack-kolla | 16:15 | |
*** harlowja has joined #openstack-kolla | 16:17 | |
*** radeks_ has quit IRC | 16:28 | |
*** k_mouza has quit IRC | 16:32 | |
*** k_mouza has joined #openstack-kolla | 16:33 | |
*** caoyuan has quit IRC | 16:35 | |
*** caoyuan has joined #openstack-kolla | 16:36 | |
*** caoyuan has quit IRC | 16:38 | |
*** jmccarthy has left #openstack-kolla | 16:39 | |
*** k_mouza_ has joined #openstack-kolla | 16:40 | |
*** gkadam__ has quit IRC | 16:42 | |
*** k_mouza has quit IRC | 16:42 | |
*** dr_feelgood has quit IRC | 16:44 | |
*** k_mouza_ has quit IRC | 16:44 | |
*** dr_feelgood has joined #openstack-kolla | 16:45 | |
*** dr_feelgood has quit IRC | 16:47 | |
*** dklyle has quit IRC | 16:48 | |
*** EmilienM is now known as EmilienM_PTO | 16:49 | |
*** dougsz has quit IRC | 16:51 | |
*** dr_feelgood has joined #openstack-kolla | 16:51 | |
*** gyan_ has quit IRC | 16:52 | |
*** banshee1221_ has joined #openstack-kolla | 16:55 | |
banshee1221_ | hey all, I'm running latest stable branch for queens with external ceph. I get "PermissionError: [errno 1] error opening image <image_id>_disk at snapshot None" with nova... I'm a little stumped.. I've double checked permissions on ceph and the keyring files are in all the appropriate containers. Any ideas? | 16:55 |
banshee1221_ | glance did place the image in the pool | 16:56 |
*** sambetts is now known as sambetts|afk | 17:02 | |
*** dklyle has joined #openstack-kolla | 17:04 | |
*** mgoddard has quit IRC | 17:04 | |
*** dr_feelgood has quit IRC | 17:06 | |
*** dr_feelgood has joined #openstack-kolla | 17:06 | |
*** dr_feelgood has quit IRC | 17:06 | |
*** jtriley_ has quit IRC | 17:12 | |
*** mago_ has quit IRC | 17:16 | |
*** hamzy has quit IRC | 17:28 | |
*** mdnadeem has quit IRC | 17:29 | |
*** harlowja has quit IRC | 17:31 | |
*** dklyle has quit IRC | 17:37 | |
*** bhujay has quit IRC | 17:39 | |
*** gfidente has quit IRC | 17:41 | |
*** jlvillal is now known as jlvacation | 17:51 | |
*** k_mouza has joined #openstack-kolla | 18:02 | |
*** mago_ has joined #openstack-kolla | 18:02 | |
*** k_mouza has quit IRC | 18:06 | |
*** radeks_ has joined #openstack-kolla | 18:11 | |
banshee1221_ | this only occurs when creating from CLI. If I create from the web interface then it properly creates the volume with cinder and maps it | 18:12 |
banshee1221_ | "Build of instance 6471c2ff-419e-4a3d-bb9d-da85b5a0f56c aborted: [errno 1] error opening image 6471c2ff-419e-4a3d-bb9d-da85b5a0f56c_disk at snapshot None" | 18:13 |
banshee1221_ | the above error occurs using the CLI. | 18:13 |
banshee1221_ | "openstack server create --image cirros --flavor m1.tiny --key-name mykey --nic net-id=cd1d8b74-1ee0-4eee-9293-5b133fe7b7c5 demo1" | 18:13 |
*** hamzy has joined #openstack-kolla | 18:20 | |
*** harlowja has joined #openstack-kolla | 18:25 | |
*** dasTor_ has joined #openstack-kolla | 18:25 | |
*** jaosorior has quit IRC | 18:26 | |
*** vabada2 has joined #openstack-kolla | 18:26 | |
*** vabada has quit IRC | 18:27 | |
*** geb has quit IRC | 18:28 | |
*** dasTor has quit IRC | 18:29 | |
*** strigazi has quit IRC | 18:30 | |
*** strigazi has joined #openstack-kolla | 18:31 | |
*** geb has joined #openstack-kolla | 18:32 | |
*** robbbe has quit IRC | 18:45 | |
*** robbbe has joined #openstack-kolla | 18:46 | |
*** openstackgerrit has quit IRC | 18:49 | |
*** robbbe has joined #openstack-kolla | 18:49 | |
*** robbbe has quit IRC | 18:49 | |
*** sean-k-mooney has joined #openstack-kolla | 18:51 | |
sean-k-mooney | o/ | 18:55 |
sean-k-mooney | anyone famimilr with the mariadb recovery playbook around ? | 18:56 |
*** lebauce_ has quit IRC | 19:05 | |
*** dklyle has joined #openstack-kolla | 19:09 | |
*** openstackgerrit has joined #openstack-kolla | 19:10 | |
openstackgerrit | Jorge Niedbalski proposed openstack/kolla master: Create symlink if /etc/openstack-dashboard/customer_local_settings exists https://review.openstack.org/567006 | 19:10 |
openstackgerrit | Jorge Niedbalski proposed openstack/kolla master: Create symlink if /e/o-d/customer_local_settings exists https://review.openstack.org/567006 | 19:11 |
*** dave-mcc_ has quit IRC | 19:14 | |
openstackgerrit | Jorge Niedbalski proposed openstack/kolla-ansible master: horizon: allow to configure by custom_local_settings.j2 https://review.openstack.org/550800 | 19:16 |
openstackgerrit | Jorge Niedbalski proposed openstack/kolla-ansible master: horizon: allow to configure by custom_local_settings.j2 https://review.openstack.org/550800 | 19:18 |
*** dave-mccowan has joined #openstack-kolla | 19:21 | |
hogepodge | Hey, quick question, what's the status of installing Magnum with Kolla? | 19:26 |
hogepodge | (particularly, Kolla-Ansible) | 19:26 |
hogepodge | I wanted to get a sense of if it was something people were doing before I started going down any rat-holes. ;-) | 19:27 |
*** mago_ has quit IRC | 19:42 | |
*** dr_feelgood has joined #openstack-kolla | 19:53 | |
*** wolverineav has quit IRC | 19:58 | |
*** wolverineav has joined #openstack-kolla | 19:58 | |
*** munimeha has joined #openstack-kolla | 20:00 | |
*** wolverineav has quit IRC | 20:03 | |
*** xinliang3 has quit IRC | 20:03 | |
*** xinliang3 has joined #openstack-kolla | 20:03 | |
*** radeks__ has joined #openstack-kolla | 20:04 | |
*** radeks_ has quit IRC | 20:05 | |
*** radeks has quit IRC | 20:06 | |
*** cz2 has joined #openstack-kolla | 20:12 | |
*** cz2 has left #openstack-kolla | 20:12 | |
*** emccormick has joined #openstack-kolla | 20:20 | |
*** pcaruana has quit IRC | 20:21 | |
*** emccormickva has quit IRC | 20:22 | |
*** dklyle has quit IRC | 20:32 | |
*** k_mouza has joined #openstack-kolla | 20:53 | |
*** radeks__ has quit IRC | 20:53 | |
*** lebauce_ has joined #openstack-kolla | 20:56 | |
*** mandre is now known as mandre_off | 20:59 | |
*** ognjen has joined #openstack-kolla | 21:13 | |
*** dr_feelgood has quit IRC | 21:17 | |
*** k_mouza has quit IRC | 21:17 | |
*** dr_feelgood has joined #openstack-kolla | 21:17 | |
*** k_mouza has joined #openstack-kolla | 21:18 | |
*** k_mouza has joined #openstack-kolla | 21:18 | |
*** dr_feelg_ has joined #openstack-kolla | 21:21 | |
*** banshee1221_ has quit IRC | 21:21 | |
*** dr_feelgood has quit IRC | 21:22 | |
*** dr_feelg_ has quit IRC | 21:25 | |
*** dr_feelgood has joined #openstack-kolla | 21:33 | |
*** dr_feelgood has quit IRC | 21:34 | |
*** hjensas is now known as hjensas|afk | 21:49 | |
*** k_mouza has quit IRC | 21:52 | |
sean-k-mooney | does anyone know why the mariadb recovery playbook leaves the containers in the bootstrap mode and how to fix it. | 22:06 |
sean-k-mooney | specifically https://github.com/openstack/kolla-ansible/blob/master/ansible/roles/mariadb/tasks/recover_cluster.yml#L111-L126 sets teh bootstrap args on the container and its never replaced with the non boostrap version later in the playbook | 22:07 |
*** rwsu has quit IRC | 22:13 | |
*** goldyfruit has quit IRC | 22:17 | |
*** ognjen has quit IRC | 22:23 | |
*** robbbe has joined #openstack-kolla | 22:51 | |
*** robbbe has quit IRC | 22:55 | |
*** goldyfruit has joined #openstack-kolla | 23:28 | |
*** munimeha has quit IRC | 23:30 | |
*** goldyfruit has quit IRC | 23:37 | |
*** goldyfruit has joined #openstack-kolla | 23:49 |
Generated by irclog2html.py 2.15.3 by Marius Gedminas - find it at mg.pov.lt!