Monday, 2021-01-18

*** tosky has quit IRC00:03
*** dwilde has quit IRC00:40
*** macz_ has joined #openstack-ansible01:24
*** macz_ has quit IRC01:28
*** sshnaidm has quit IRC02:19
*** ThiagoCMC has quit IRC02:19
*** tobberydberg has quit IRC02:23
*** sshnaidm has joined #openstack-ansible02:29
*** tobberydberg has joined #openstack-ansible02:35
*** evrardjp_ has quit IRC05:33
*** evrardjp has joined #openstack-ansible05:33
*** miloa has joined #openstack-ansible06:18
*** CeeMac has joined #openstack-ansible07:22
*** jbadiapa has joined #openstack-ansible07:44
*** miloa has quit IRC07:45
*** miloa has joined #openstack-ansible07:45
*** danpawlik5 has quit IRC07:51
*** dpawlik7 has joined #openstack-ansible07:53
*** rpittau|afk is now known as rpittau07:59
*** pcaruana has joined #openstack-ansible08:01
*** pcaruana has quit IRC08:11
*** andrewbonney has joined #openstack-ansible08:16
*** miloa has quit IRC08:18
*** pto has joined #openstack-ansible08:18
*** pcaruana has joined #openstack-ansible08:23
*** stduolc1 has quit IRC08:25
*** miloa has joined #openstack-ansible08:31
*** pcaruana has quit IRC08:42
*** pcaruana has joined #openstack-ansible08:42
*** maharg101 has joined #openstack-ansible08:43
*** tosky has joined #openstack-ansible08:44
*** kleini has joined #openstack-ansible08:49
jrossermorning08:50
kleinimorning08:50
CeeMacmorning08:51
MrClayPolemorning all08:52
noonedeadpunkmornings!09:15
openstackgerritDmitriy Rabotyagov proposed openstack/openstack-ansible-os_manila master: Use global service variables  https://review.opendev.org/c/openstack/openstack-ansible-os_manila/+/76994409:36
admin0morning \o09:44
ptoI am trying to develop a python3 script which lists instances from the openstack API, but it hangs on nova = novaclient.Client(2, session=sess) - anyone here have experienced this?10:58
*** dpawlik7 has quit IRC11:06
*** dpawlik7 has joined #openstack-ansible11:09
admin0pto, just wondering why not do a openstack server list with the right format and show it directly ? this way, you don't have to maintain/update/worry about your implementation and scripts12:30
admin0the openstack client also calls the same api12:31
admin0and with the right formatting, yuo get the desired output12:31
admin0this way, you don't have to write, make your own and maintain it12:31
ptoadmin0: good point. I will consider that.12:31
ptoadmin0: I want to list all instances, and then set a tag/metadata with an retirement date (now + 3 weeks) and then run a script which will purge the instances after 3 weeks. Could tags be used for this?12:32
admin0it can be used for those12:33
admin0another way is to just write it in its description12:33
admin0like eol-2021-01-3112:33
admin0both can be changed by the owners/users12:33
admin0alternate method will be to list all instances and save it in a csv or something that yuor script can parse, set the tags there in the file and then work via this file you create12:34
admin0this way, the tags,description field cannot be played by the users as the decsion to delete is done on your side12:35
openstackgerritJonathan Rosser proposed openstack/ansible-role-python_venv_build master: Replace pip requirement source specs with the package name for built wheels  https://review.opendev.org/c/openstack/ansible-role-python_venv_build/+/77119512:46
*** rh-jelabarre has joined #openstack-ansible12:51
*** sshnaidm is now known as sshnaidm|ruck12:52
*** pcaruana has quit IRC12:56
*** pto has quit IRC12:56
*** CeeMac has quit IRC12:56
*** tobberydberg has quit IRC12:56
*** jrosser has quit IRC12:56
*** djhankb has quit IRC12:56
*** johanssone has quit IRC12:56
*** kleini has quit IRC12:56
*** crazzy has quit IRC12:56
*** logan- has quit IRC12:56
*** kleini has joined #openstack-ansible12:59
*** pcaruana has joined #openstack-ansible12:59
*** pto has joined #openstack-ansible12:59
*** CeeMac has joined #openstack-ansible12:59
*** tobberydberg has joined #openstack-ansible12:59
*** jrosser has joined #openstack-ansible12:59
*** djhankb has joined #openstack-ansible12:59
*** johanssone has joined #openstack-ansible12:59
*** crazzy has joined #openstack-ansible12:59
*** logan- has joined #openstack-ansible12:59
*** logan- has quit IRC12:59
*** logan- has joined #openstack-ansible13:00
openstackgerritAndrew Bonney proposed openstack/ansible-role-systemd_service master: templates: fix typo in string/mapping check  https://review.opendev.org/c/openstack/ansible-role-systemd_service/+/77121613:01
openstackgerritAndrew Bonney proposed openstack/openstack-ansible-os_zun master: defaults: set up docker overrides using systemd role  https://review.opendev.org/c/openstack/openstack-ansible-os_zun/+/77121713:02
*** masterpe has quit IRC13:03
*** csmart has quit IRC13:03
*** fridtjof[m] has quit IRC13:03
*** ioni has quit IRC13:03
openstackgerritAndrew Bonney proposed openstack/openstack-ansible-os_zun master: Improve image and network cleanup procedure  https://review.opendev.org/c/openstack/openstack-ansible-os_zun/+/77121813:03
ptoadmin0: I have considered that, but its okay for the users to update the metadata. Do you know the differnces between tags and metadata properties?13:10
jrosserpto: have you seen the examples in here https://github.com/openstack/openstacksdk/blob/master/examples/connect.py ?13:16
jrosserand then specifically this https://github.com/openstack/openstacksdk/blob/master/examples/compute/list.py13:17
ptocrewl! Thanks13:18
ptoI have spent most day debugging whyt novaclient would not list servers, but it tuned out to that the client was broken my dev host13:20
*** csmart has joined #openstack-ansible13:24
ptoHave openstack taken over novaclient?13:24
jrosseras i understand openstacksdk is where stuff should be13:27
jrosserbut reality is that some functionality is still in the specific clients and not the sdk13:28
mgariepyis there still some of that ?13:28
jrosserthere was a lot of fuss about glance in this respect i thin13:29
jrosserk13:29
mgariepya couple years ago i would have said yes but now i'm not really sure there are stuff you cannot do with it.13:29
jrosserhttp://lists.openstack.org/pipermail/openstack-discuss/2020-August/016409.html13:31
*** csmart has quit IRC13:34
ptoShould i use update_server (https://docs.openstack.org/openstacksdk/latest/user/proxies/compute.html) to set a tag or how should this be done?13:37
mgariepypto, to tests stuff from openstack-sdk the easiest way i find is to use ipython13:38
mgariepythen you have a interactive shell with the sdk accessible with tab completion which is really nice.13:39
ptomgariepy: Thanks for the top. jupiter notebooks are crewl :-)13:39
mgariepyindeed13:41
fricklerI want to have the neutron-server-containers run on the infra-hosts and the neutron-agents on some different hosts, but I failed to figure out how to do that so far. is it possible at all? is there a guide somewhere?13:54
*** fridtjof[m] has joined #openstack-ansible13:55
jrosserfrickler: something like this http://paste.openstack.org/show/777611/13:56
jrosserbasically everyone who makes dedicated network nodes wants this and I think we already agreed to change it13:56
jrosserjust needs a patch......13:56
fricklerjrosser: thx, I was already wondering how you did come up with that paste so fast ;)13:58
*** ioni has joined #openstack-ansible13:58
*** tacco has joined #openstack-ansible13:59
taccohey there.. anyone knows why i can't get from self_url in api-return https? if i curl the endpoint trough https in self i get only http. that make some trouble in the use of the openstackSDK. I would like to fix this. But the required header are already set and i have no clue why this is broken.14:00
taccohttp://paste.openstack.org/show/801718/14:00
fricklerjrosser: so network-infra_hosts are the ones where the network-infra_containers are hosted, i.e. neutron-server? and in addition I'll keep network_hosts for the neutron-agents, right?14:02
jrosseryes, it makes a new group for the api containers that you can reference in openstack_user_config, and separates them out from network_hosts14:03
jrosseryou should be able to see whats happened with scripts/inventory_manage -G14:04
jrosserput /etc/openstack-deploy into git then you can back out and have another go if something looks bad14:04
jrosserenv.d is the mechansim that you use to define which services get put on which hosts14:06
jrosseri have some customisation to separate galera/rabbit/memcached away from the API services in one deployment, as another example of what you can do with it14:06
*** csmart has joined #openstack-ansible14:07
fricklerjrosser: the latter comes somewhat later on my list, if you have some example to share for that, I'd be very happy to see it, too ;)14:08
jrosserfrickler: thats actually already a defined group https://opendev.org/openstack/openstack-ansible/src/branch/master/etc/openstack_deploy/openstack_user_config.yml.aio#L106-L10914:15
*** d34dh0r53 has quit IRC14:17
jrosserso it ended up more a case of pushing the other things away from galera/rabbit/memcached through identity_hosts/storage-infra_hosts/compute-infra_hosts....14:17
*** manti has joined #openstack-ansible14:22
fricklerah, o.k., at one point one may even want to split mq and galera, but we'll see14:23
taccowas digging trough tcpdump on the controlplane now to see if the headers are set properly. But as i can see the headers are fine.14:25
mantiI'm having problem getting openstack-ansible setup-infrastructure.yml succeed, apparently my repo server is not running (there is nothing in port 8181). Would anybody here have some pointers what I could check to solve this?14:27
*** d34dh0r53 has joined #openstack-ansible14:29
mantiI have 1 controller, 1 compute node test setup for trying out the openstack-ansible before doing anything on production, and everything else is succeeding with the setup-infrastucture.yml except when task "TASK [python_venv_build : Install python packages into the venv]" is being done to utility container14:31
taccodid you guys know is secure_proxy_ssl_header still used in openstack components?14:31
ptoI cant believe how i can google a whole day how to get a list of instances from openstack with the sdk, and still miss that openstacksdk exists...14:32
*** SecOpsNinja has joined #openstack-ansible14:35
jrossermanti: this is possibly the first time that your loadbalancer internal endpoint has needed to be used14:38
jrosseryou should check that you can curl the repo server on whatever you have configured internal_lb_vip_address to be, port 818114:39
jrosserthats haproxy running on your controller, if that doesnt work then try to curl the ip of the repo container from the controller to see if the repo server is up14:40
mantiI can ping the internal_lb_vip_address from utility container, but on the host that has the internal_lb_vip_address there is nothing on port 8181. Should I be able to see the port 8181 used on the hos with internal_lb_vip_address as IP?14:40
jrosserhaproxy should be listening on port 818114:41
jrosserping is not helpful really14:42
jrosserhaproxt is monitoring the state of the backend services on their service ports, not if it can ping them14:42
jrosserthats why i suggest next to curl the ip:port of the repo server directly14:42
mantiok, curl get's connection refused14:44
jrosserto the internal vip or the repo server?14:44
mantirepo server14:44
mantiactually, both14:45
jrosserok, so thats an nginx in the repo server, so attach to that container and see if the processes are running14:45
mantimaybe I fumbled the haproxy part...14:45
jrossercheck that the container has an IP on eth1 and can ping the internal vip, make sure the low level networking is OK14:45
jrossermanti: have you built an all-in-one?14:46
jrosserit is *extremely* helpful to have an AIO build accessible when you are starting out as you can compare against something simple, known and should work without much difficulty14:47
mantiyes, I did the AIO first and got that working, then I moved to this test env14:47
jrosserif you are able to build another, maybe in a VM i think you would find it very helpful14:48
mantiah, that is an excellent point, unfortunately the aio was scrapped because the server was needed to other things14:48
mantibut I can get a VM for it14:49
jrosserAIO is sized for 60G disk / 8G ram if you dont enable anything beyond the basic services, or want to beyond 1 or 2 cirros instances14:50
jrosser*boot beyond14:50
*** dpawlik7 has quit IRC14:52
*** dpawlik7 has joined #openstack-ansible15:17
*** dpawlik7 has quit IRC15:26
*** dpawlik9 has joined #openstack-ansible15:27
*** dpawlik9 is now known as dpawlik15:27
*** gshippey has joined #openstack-ansible15:32
openstackgerritMerged openstack/openstack-ansible-os_zun master: Reduce number of processes on small systems  https://review.opendev.org/c/openstack/openstack-ansible-os_zun/+/77027315:58
*** macz_ has joined #openstack-ansible16:04
*** macz_ has quit IRC16:04
*** macz_ has joined #openstack-ansible16:05
openstackgerritMerged openstack/openstack-ansible-os_zun master: Add support for kata container runtime  https://review.opendev.org/c/openstack/openstack-ansible-os_zun/+/76955516:12
openstackgerritAndrew Bonney proposed openstack/openstack-ansible-os_zun master: Add configuration for zun-wsproxy service  https://review.opendev.org/c/openstack/openstack-ansible-os_zun/+/76914316:17
*** ThiagoCMC has joined #openstack-ansible16:18
*** miloa has quit IRC16:19
*** pto has quit IRC16:25
openstackgerritJonathan Rosser proposed openstack/openstack-ansible-os_tempest master: Move tempest pip package from a constraint to a requirement  https://review.opendev.org/c/openstack/openstack-ansible-os_tempest/+/77028116:38
openstackgerritJonathan Rosser proposed openstack/openstack-ansible-os_glance master: Move glance pip package from a constraint to a requirement  https://review.opendev.org/c/openstack/openstack-ansible-os_glance/+/77054616:38
openstackgerritJonathan Rosser proposed openstack/openstack-ansible-os_placement master: Move placement pip package from a constraint to a requirement  https://review.opendev.org/c/openstack/openstack-ansible-os_placement/+/77028016:39
openstackgerritJonathan Rosser proposed openstack/openstack-ansible-os_nova master: Move nova pip package from a constraint to a requirement  https://review.opendev.org/c/openstack/openstack-ansible-os_nova/+/77027916:39
openstackgerritJonathan Rosser proposed openstack/openstack-ansible-os_cinder master: Move cinder pip package from a constraint to a requirement  https://review.opendev.org/c/openstack/openstack-ansible-os_cinder/+/77027216:40
openstackgerritJonathan Rosser proposed openstack/openstack-ansible-os_neutron master: Move neutron pip packages from constraints to requirements  https://review.opendev.org/c/openstack/openstack-ansible-os_neutron/+/77027616:40
openstackgerritJonathan Rosser proposed openstack/openstack-ansible-os_keystone master: Move keystone pip package from a constraint to a requirement  https://review.opendev.org/c/openstack/openstack-ansible-os_keystone/+/77027116:40
openstackgerritJonathan Rosser proposed openstack/openstack-ansible-os_horizon master: Move horizon pip packages from constraints to requirements  https://review.opendev.org/c/openstack/openstack-ansible-os_horizon/+/77028316:41
openstackgerritJonathan Rosser proposed openstack/openstack-ansible master: Update pip/setuptools/wheel to latest version  https://review.opendev.org/c/openstack/openstack-ansible/+/77028416:41
*** rpittau is now known as rpittau|afk16:49
jrosserhmmm what is this https://opendev.org/openstack/openstack-ansible-os_senlin/src/branch/master/defaults/main.yml#L167-L16917:27
jrossercopy / paste from os_heat i think17:27
openstackgerritJonathan Rosser proposed openstack/openstack-ansible master: Limit threads and processes for Senlin in AIO configuration  https://review.opendev.org/c/openstack/openstack-ansible/+/77125617:37
openstackgerritMerged openstack/openstack-ansible-os_nova master: Added tag for just policy override reconfiguration  https://review.opendev.org/c/openstack/openstack-ansible-os_nova/+/77013817:42
openstackgerritJonathan Rosser proposed openstack/openstack-ansible-os_senlin master: Remove unused variables from defaults  https://review.opendev.org/c/openstack/openstack-ansible-os_senlin/+/77125817:42
openstackgerritJonathan Rosser proposed openstack/openstack-ansible-os_senlin master: Use global service variables  https://review.opendev.org/c/openstack/openstack-ansible-os_senlin/+/76995617:45
openstackgerritDaniel Meloy proposed openstack/openstack-ansible-os_horizon master: Add missing 'horizon-config' tag  https://review.opendev.org/c/openstack/openstack-ansible-os_horizon/+/77126218:00
*** dasp has quit IRC18:13
openstackgerritMerged openstack/openstack-ansible-os_cinder master: Added tags for policy override task  https://review.opendev.org/c/openstack/openstack-ansible-os_cinder/+/77025118:15
openstackgerritMerged openstack/openstack-ansible-os_keystone master: Use global service variables  https://review.opendev.org/c/openstack/openstack-ansible-os_keystone/+/76994018:16
*** maharg101 has quit IRC18:17
jrossercan we merge this https://review.opendev.org/c/openstack/ansible-role-qdrouterd/+/77072618:17
jrosserand this https://review.opendev.org/c/openstack/openstack-ansible-tests/+/76734618:18
mgariepyjrosser, done18:23
*** dasp has joined #openstack-ansible18:25
ThiagoCMCjrosser, is the hybridg deployment with qrouterd working? I tried it with Ussuri and it failed...18:46
*** dwilde has joined #openstack-ansible18:50
jrosserThiagoCMC: i don't know, i've never tried18:54
jrosserthats slightly orthoganol to keeping the dqrouterd role CI checks passing though18:55
openstackgerritMerged openstack/openstack-ansible-tests master: Bump ansible collection versions  https://review.opendev.org/c/openstack/openstack-ansible-tests/+/76734619:05
*** jbadiapa has quit IRC19:06
*** dwilde has quit IRC19:06
ThiagoCMCOk... I'll try it again on AIO sometime19:16
openstackgerritMerged openstack/ansible-role-systemd_service master: templates: fix typo in string/mapping check  https://review.opendev.org/c/openstack/ansible-role-systemd_service/+/77121619:17
openstackgerritMerged openstack/openstack-ansible-os_zun master: Reinstate voting for upgrade jobs  https://review.opendev.org/c/openstack/openstack-ansible-os_zun/+/76914419:18
*** SecOpsNinja has left #openstack-ansible19:20
*** andrewbonney has quit IRC19:25
*** ThiagoCMC has quit IRC19:29
openstackgerritMerged openstack/openstack-ansible master: Add some protection from shadowing mount  https://review.opendev.org/c/openstack/openstack-ansible/+/75205919:33
openstackgerritMerged openstack/openstack-ansible master: Bump SHAs for master  https://review.opendev.org/c/openstack/openstack-ansible/+/77114619:34
openstackgerritJonathan Rosser proposed openstack/openstack-ansible stable/victoria: Add some protection from shadowing mount  https://review.opendev.org/c/openstack/openstack-ansible/+/77120519:39
openstackgerritMerged openstack/openstack-ansible master: Add service for zun-wsproxy console access  https://review.opendev.org/c/openstack/openstack-ansible/+/76914219:55
*** maharg101 has joined #openstack-ansible20:13
*** maharg101 has quit IRC20:18
admin0to integrate with fleio .. a openstack billing system, i have to change notification = noop to messagingv2 .. is there any side effect of this ?22:34
openstackgerritJonathan Rosser proposed openstack/openstack-ansible-os_senlin master: Remove unused variables from defaults  https://review.opendev.org/c/openstack/openstack-ansible-os_senlin/+/77125822:43
*** poopcat has quit IRC22:58
openstackgerritMerged openstack/openstack-ansible-os_tempest master: Add support for senlin tempest plugin  https://review.opendev.org/c/openstack/openstack-ansible-os_tempest/+/75404423:19
*** ThiagoCMC has joined #openstack-ansible23:51
*** macz_ has quit IRC23:52
*** ThiagoCMC has joined #openstack-ansible23:52

Generated by irclog2html.py 2.17.2 by Marius Gedminas - find it at https://mg.pov.lt/irclog2html/!