*** gouthamr_ is now known as gouthamr | 04:07 | |
opendevreview | wushiming proposed openstack/kolla-ansible master: Replace deprecated assertRaisesRegexp https://review.opendev.org/c/openstack/kolla-ansible/+/816938 | 06:38 |
---|---|---|
opendevreview | wushiming proposed openstack/kolla-ansible master: Replace deprecated assertRaisesRegexp https://review.opendev.org/c/openstack/kolla-ansible/+/816938 | 06:53 |
shyamb | Hi | 07:03 |
shyamb | Does kolla source containers installs pip packages or it copies actual source code? | 07:03 |
hrw | git source | 09:47 |
hrw | shyam2389: or to be precise: dependencies comes from pip, openstack components from git/archive | 09:48 |
shyam2389 | hrw: okay, thanks | 09:49 |
shyam2389 | hrw: How can I add a pip location/url to fetch dependency? Any doc? | 09:49 |
hrw | shyam2389: can you expand what you want to achieve? | 09:50 |
shyam2389 | I want to install my plugin on horizon source image | 09:50 |
shyam2389 | that plugin has some dependencies | 09:50 |
shyam2389 | kolla-build is failing at that dependency step | 09:50 |
hrw | shyam2389: you can use template overrides and add your piece of code to image | 09:51 |
shyam2389 | hrw: I added the code | 09:51 |
shyam2389 | but the plugin has some more dependencies | 09:51 |
shyam2389 | I think I can use normal linux way to specify pip location | 09:52 |
hrw | shyam2389: you can expand horizon_pip_packages, horizon_plugins_pip_packages variables (both define things to install with pip) | 09:53 |
shyam2389 | hrw: Yes, I can define package name there | 09:54 |
shyam2389 | but my package is not available at default pip repository | 09:54 |
shyam2389 | I have special location for it. | 09:54 |
hrw | shyam2389: then define PIP_EXTRA_INDEX_URL somewhere? or give full url to package? | 09:55 |
shyam2389 | hrw: okay, thanks. I will give a try | 09:55 |
hrw | shyam2389: my local aarch64 builds use PIP_EXTRA_INDEX_URL to point to my cache archive. CI uses it to point to own cache | 09:55 |
shyam2389 | PIP_EXTRA_INDEX_URL variable in docker template? | 09:56 |
shyam2389 | or linux env variable | 09:56 |
shyam2389 | on build machine | 09:56 |
hrw | in docker template | 09:57 |
shyam2389 | hrw: okay, thank you | 09:58 |
hrw | {% block base_header %} | 09:59 |
hrw | ENV PIP_EXTRA_INDEX_URL https://snapshots.linaro.org/ldcg/python-cache/ | 09:59 |
hrw | {% endblock %} | 09:59 |
hrw | this is what Linaro CI uses | 09:59 |
hrw | and pip index is nothing more than directory over https | 10:09 |
shyam2389 | hrw: great, thank you | 10:28 |
shyam2389 | hrw: my docker push is working | 10:28 |
shyam2389 | but kolla-build push is failing with access denied | 10:29 |
shyam2389 | I logged in to dockerhub with docker login command on shell | 10:29 |
shyam2389 | hrw: Do we need to provide docker registry credentials somewhere else? | 10:29 |
hrw | hm. should work | 10:30 |
shyam2389 | I don't see any command line options for this | 10:30 |
shyam2389 | if we have it in kolla-build.conf let me know | 10:30 |
hrw | let me check | 10:32 |
shyam2389 | okay | 10:33 |
hrw | INFO:kolla.common.utils.base:Trying to push the image | 10:34 |
hrw | INFO:kolla.common.utils.base:Pushed successfully | 10:34 |
hrw | hm. | 10:34 |
shyam2389 | hrw: Where can I find this equivalent dir on source images? /usr/share/openstack-dashboard/openstack_dashboard/local | 10:41 |
shyam2389 | hrw: is this the correct location? /var/lib/kolla/venv/lib/python3.8/site-packages/openstack_dashboard/local | 10:43 |
shyam2389 | or something else? | 10:43 |
hrw | iirc this one | 10:43 |
hrw | sorry, debugging something | 10:43 |
shyam2389 | hrw: okay | 10:44 |
opendevreview | Merged openstack/kayobe-config master: Fix configuration sync for infra-vms https://review.opendev.org/c/openstack/kayobe-config/+/816845 | 11:05 |
opendevreview | Merged openstack/kayobe-config stable/xena: Fix configuration sync for infra-vms https://review.opendev.org/c/openstack/kayobe-config/+/816846 | 11:06 |
kevko | morning \o/ | 11:20 |
kevko | testing wallaby on vms and i see this error on compute node (from time to time) ..when creating heat stack -> https://paste.opendev.org/show/810830/ any advice ? | 11:21 |
hrw | kevko: migrate from VMS to Linux? | 11:25 |
kevko | what ? :D | 11:25 |
kevko | just saying that openstack is deployed on VMs ..not baremetal :d | 11:26 |
hrw | joking | 11:27 |
kevko | ok Joker ;D | 11:27 |
kevko | any advice ? | 11:27 |
hrw | I had a blog post titled like 'Running Fedora on VMs' so url was /running-fedora-on-vms/ and got some similar answers | 11:28 |
hrw | no idea | 11:28 |
kevko | it looks similar then this -> https://bugs.launchpad.net/nova/+bug/1810978 and in bugreport there is also link to https://bugs.launchpad.net/neutron/+bug/1760047 | 11:28 |
frickler | kevko: iirc there were some issues with eventlet and python3.9, not sure whether all fixes went into wallaby | 11:31 |
kevko | hmmm | 11:32 |
kevko | some links ? :) | 11:32 |
shyam2389 | Hi | 11:56 |
shyam2389 | I have plugin in rpm format | 11:57 |
shyam2389 | Can I install it on source image of horizon? | 11:57 |
shyam2389 | Or pip format is mandatory? | 11:57 |
hrw | I would say that wheel is needed | 11:59 |
shyam2389 | hrw: Would it be a valid approach? | 11:59 |
shyam2389 | Have we used it anywhere? | 12:00 |
hrw | python packages comes in wheel format | 12:00 |
hrw | if you have rpm then it is distribution package which happens to ship python package | 12:01 |
shyam2389 | hrw: okay | 12:02 |
shyam2389 | I see deb in docker tempplate : https://github.com/openstack/kolla/blob/stable/victoria/docker/horizon/Dockerfile.j2#L113-L115 | 12:02 |
shyam2389 | Are these debian packages or pip packages? | 12:03 |
shyam2389 | or rpm here: https://github.com/openstack/kolla/blob/stable/victoria/docker/horizon/Dockerfile.j2#L106 | 12:03 |
hrw | 106, 112 are distro packages | 12:04 |
hrw | 129, 133 are pip | 12:04 |
shyam2389 | hrw: Okay | 12:05 |
shyam2389 | So, I have this horizon plugin, installs some files in horizon directories, we have rpm, debian packages of it. | 12:05 |
shyam2389 | hrw: But do not have pip package | 12:06 |
shyam2389 | we are looking for way to install these packages using template override on horizon source images | 12:06 |
shyam2389 | But I think If I install rpm/debian on source horizon image, it will not get installed in "/var/lib/kolla/venv/lib/python/.." | 12:07 |
shyam2389 | it will get install on base python | 12:07 |
hrw | shyam2389: the deal is easy - if you use distro packages then you want binary images. | 12:09 |
hrw | if you want source then use wheels | 12:09 |
hrw | and you have source then creating wheel is just a moment... | 12:10 |
shyam2389 | hrw: got it. | 12:10 |
frickler | kevko: hmm, not sure, possibly I mixed up https://docs.openstack.org/releasenotes/nova/stein.html#known-issues and https://github.com/eventlet/eventlet/issues/619 | 12:13 |
opendevreview | Merged openstack/kayobe-config-dev stable/xena: Fix configuration sync for infra-vms https://review.opendev.org/c/openstack/kayobe-config-dev/+/816849 | 12:43 |
opendevreview | Verification of a change to openstack/kayobe-config-dev master failed: Fix configuration sync for infra-vms https://review.opendev.org/c/openstack/kayobe-config-dev/+/816848 | 13:01 |
holtgrewe | I'm trying to get kayobe to run with stable/xena. I'm running into an issue on seed deployment >>Network not found: no network with matching name 'compute_net'<<. Full error trace: https://gist.github.com/holtgrewe/0f479a7588301bc3452c1a3a83c8a89f my current configuration https://github.com/holtgrewe/kayobe-config/tree/my-xena | 13:02 |
holtgrewe | It looks like the definition of "compute_net" is not carried into libvirt and I wonder if anyone could have a look and tell me what part of the configuration I'm missing? I'ved tried to define the network in multiple places yet I have not had any success yet. | 13:03 |
holtgrewe | Maybe I have to reconfigure the hypervisor, though... | 13:06 |
holtgrewe | That did half of the trick... | 13:08 |
holtgrewe | disabling selinux did the other half | 13:17 |
opendevreview | Adrian Andreias proposed openstack/kolla-ansible master: docs: Get release name dynamically https://review.opendev.org/c/openstack/kolla-ansible/+/816582 | 13:56 |
holtgrewe | Is the stable/xena branch supposed to use wallaby images for bifrost deploy? | 14:44 |
mgoddard | holtgrewe: xena should use xena images | 14:45 |
holtgrewe | Interesting... must be old data | 14:48 |
holtgrewe | mgoddard, thanks for some reason I had an old kayobe-kolla checkout... | 15:01 |
holtgrewe | oooh, there is no kayobe xena on pypi yet... | 15:03 |
mgoddard | holtgrewe: not released yet | 15:04 |
mgoddard | stable/xena branch exists though, and is basically what will be released | 15:05 |
holtgrewe | thanks for the feedback | 15:05 |
holtgrewe | I will install from source | 15:05 |
opendevreview | wu.chunyang proposed openstack/kolla-ansible master: Fix octavia doesn't set subnet gateway_ip https://review.opendev.org/c/openstack/kolla-ansible/+/817034 | 15:11 |
jingvar | I want to check an idea and need run custom horizon container and image, where I can get how run horizon container (volumes, priveged etc) ? | 16:48 |
jingvar | maybe something docker run .. -v .. | 16:49 |
frickler | jingvar: docker inspect ? | 16:54 |
jingvar | yes, but I am lasy :) | 16:55 |
jingvar | there are some runtime I think | 16:57 |
opendevreview | Doug Szumski proposed openstack/kolla-ansible stable/wallaby: Specify log file name for Nova API https://review.opendev.org/c/openstack/kolla-ansible/+/817059 | 17:23 |
opendevreview | Doug Szumski proposed openstack/kolla-ansible stable/wallaby: Specify log file name for Nova API https://review.opendev.org/c/openstack/kolla-ansible/+/817059 | 17:29 |
opendevreview | Maksim Malchuk proposed openstack/kolla-ansible master: Multiple DHCP Subnets for Ironic Inspector https://review.opendev.org/c/openstack/kolla-ansible/+/817076 | 20:12 |
opendevreview | Maksim Malchuk proposed openstack/kayobe master: Allow overriding the hardcoded neutron_plugin_agent https://review.opendev.org/c/openstack/kayobe/+/817082 | 20:49 |
opendevreview | Adrian Andreias proposed openstack/kolla-ansible master: docs: Get release name dynamically https://review.opendev.org/c/openstack/kolla-ansible/+/816582 | 21:45 |
Generated by irclog2html.py 2.17.2 by Marius Gedminas - find it at https://mg.pov.lt/irclog2html/!