Tuesday, 2020-09-29

*** maharg101 has quit IRC00:03
*** brinzhang_ has joined #openstack-kolla00:07
*** brinzhang0 has quit IRC00:10
*** strobert has quit IRC00:12
*** strobert has joined #openstack-kolla00:13
*** LinPeiWen has joined #openstack-kolla00:35
*** hongbin has quit IRC00:56
*** hongbin has joined #openstack-kolla00:57
*** zzzeek has quit IRC01:30
*** zzzeek has joined #openstack-kolla01:34
*** maharg101 has joined #openstack-kolla01:59
*** maharg101 has quit IRC02:06
*** zzzeek has quit IRC02:47
*** zzzeek has joined #openstack-kolla02:49
*** JamesBenson has joined #openstack-kolla02:50
*** wuchunyang has joined #openstack-kolla03:19
*** wuchunyang has quit IRC04:01
*** shyamb has joined #openstack-kolla04:03
*** maharg101 has joined #openstack-kolla04:03
*** maharg101 has quit IRC04:08
*** skramaja has joined #openstack-kolla04:17
*** shyamb has quit IRC04:18
*** hongbin has quit IRC04:30
*** evrardjp has quit IRC04:33
*** evrardjp has joined #openstack-kolla04:33
*** also_stingrayza has joined #openstack-kolla04:35
*** hongbin has joined #openstack-kolla04:35
*** hongbin has quit IRC04:37
*** stingrayza has quit IRC04:39
*** hongbin has joined #openstack-kolla04:40
*** hongbin has quit IRC04:42
*** hongbin has joined #openstack-kolla04:45
*** shyamb has joined #openstack-kolla04:46
*** hongbin has quit IRC04:47
*** hongbin has joined #openstack-kolla04:50
*** hongbin has quit IRC04:52
*** JamesBenson has quit IRC04:55
*** hongbin has joined #openstack-kolla04:55
*** JamesBenson has joined #openstack-kolla04:57
*** hongbin has quit IRC04:57
*** hongbin has joined #openstack-kolla05:00
*** brinzhang0 has joined #openstack-kolla05:02
*** JamesBenson has quit IRC05:02
*** hongbin has quit IRC05:04
*** brinzhang_ has quit IRC05:05
*** shyam89 has joined #openstack-kolla05:05
*** shyamb has quit IRC05:08
*** abdysn has joined #openstack-kolla05:11
*** suryasingh has joined #openstack-kolla05:30
openstackgerritMerged openstack/kolla-ansible stable/ussuri: Fix default mode in haproxy_single_service_split  https://review.opendev.org/75395405:31
openstackgerritMerged openstack/kolla-ansible stable/train: Fix default mode in haproxy_single_service_split  https://review.opendev.org/75395505:31
*** JamesBenson has joined #openstack-kolla05:53
*** JamesBenson has quit IRC05:57
openstackgerritMerged openstack/kolla-ansible stable/stein: Fix default mode in haproxy_single_service_split  https://review.opendev.org/75395606:03
*** maharg101 has joined #openstack-kolla06:04
*** maharg101 has quit IRC06:09
*** wuchunyang has joined #openstack-kolla06:17
*** cah_link has joined #openstack-kolla06:25
*** shyam89 has quit IRC06:26
recycleheromorning06:28
recycleheroI was wondering if the docker images get updated in a daily basis cuz my docker registry is mading external connections like always06:29
recycleherowhile it has all the images it tries to fetch from remote registry06:29
recycleheroI see thi list with curl -X GET http://localhost:4000/v2/_catalog06:29
hrwrecyclehero: official images are daily updated06:30
recycleherohrw: do u know how can I manage to use what I got already?06:33
hrwrecyclehero: k-a globals.yml has place for registry information06:38
hrwyou can set it to use your registry06:38
hrwjust do not use 'localhost' if you deploy to other machines06:38
recycleherohrw: its already using my registry but I think its getting the newer images06:39
recycleheroI have put docker-registry in globals.yml06:39
recycleheroI will go checkout the docker kolla_docker.py to see how its making the request06:40
recycleheros06:40
hrwrecyclehero: I use own namespace/tag in images so local registry has different names than official one06:40
hrwlike 'hrw/debian-source-kolla-toolbox:200915' or similar06:40
hrwthat way images used to install have to be fetched from registry as they do not exist elsewhere06:41
*** shyamb has joined #openstack-kolla06:42
recycleherohrw: how do u instruct it to look for ur tag and also I dont know how to play with docker registry to change the images name06:43
recycleheroin the code kolla_docker.py I saw             return full_image, 'latest'06:43
recycleheroin def parse_image(self):06:44
recycleheromaybe if I omit latest06:44
hrwrecyclehero: I built own images06:44
recycleherohrw: what do u think?06:44
recycleheroI also see yoctozepto name in the file06:44
hrwI think that I need more coffee06:44
yoctozeptorecyclehero: I've got a popular name06:45
recycleherohrw: aha, you dont even use a remote registry. its all yours06:45
recycleheroyoctozepto: what do you think if I omit latest from this it will use what I got in my 'pull trough cache' docker registry06:46
recyclehero?06:46
yoctozeptorecyclehero: it always needs a tag06:48
yoctozeptorecyclehero: what's your registry setup? passthrough proxy?06:48
recycleheroyes06:49
recycleheroyoctozepto: I just added           "REGISTRY_PROXY_REMOTEURL=https://registry-1.docker.io",06:50
yoctozeptorecyclehero: then you just observe the expected behaviour: https://docs.docker.com/registry/recipes/mirror/#what-if-the-content-changes-on-the-hub06:51
yoctozeptoideally, for production, you should set up your own registry06:51
yoctozeptopersonally, I recommend harbor06:52
yoctozeptoand build images yourself06:52
yoctozeptoor at the very very minimum fetch them from hub and push them to your registry06:52
yoctozeptootherwise you can't control what they are06:52
yoctozepto* fetch=pull06:53
recycleheroyoctozepto: i download max at 200kB/s let me hack kolla_docker.py06:53
recycleheroyoctozepto: yes the registry is doing the normal beheaviour06:53
recycleherobut in parse_image function it add the tag latest if it has no tag06:54
yoctozeptorecyclehero: because it must have some tag06:54
yoctozepto'latest' could be called 'daisy' - it does not matter06:55
recycleheroI understand, but is there a tag I can replace the code for the moment to use what i have got06:55
recycleherogood enough I will go checkout what are tags in my registry06:56
yoctozeptorecyclehero: they all change daily06:56
yoctozeptorecyclehero: you could hack the passthrough registry to avoids its refresh behaviour06:56
yoctozeptobut that's it06:56
recycleheroyoctozepto: its perfect but is it possible?06:57
osmanlicilegimorning06:57
yoctozeptorecyclehero: I would assume so06:58
*** maharg101 has joined #openstack-kolla07:10
*** bengates has joined #openstack-kolla07:11
recycleherothe image build are automatic dailt builds right? its not like there is updates happening every day07:11
*** nikparasyr has joined #openstack-kolla07:12
*** shyamb has quit IRC07:14
yoctozeptorecyclehero: yes, but they usually differ nowadays07:22
yoctozeptoas in some new changes always creep in07:22
yoctozeptoobviously pretty small ones07:23
*** shyamb has joined #openstack-kolla07:23
*** shyam89 has joined #openstack-kolla07:26
openstackgerritPierre Riteau proposed openstack/kayobe master: Switch default docker storage driver to overlay2  https://review.opendev.org/65881507:26
*** shyamb has quit IRC07:29
*** shyam89 has quit IRC07:31
*** gfidente|afk is now known as gfidente07:40
*** jbadiapa has joined #openstack-kolla07:49
*** JamesBenson has joined #openstack-kolla07:53
*** JamesBenson has quit IRC07:59
*** shyamb has joined #openstack-kolla08:02
openstackgerritMark Goddard proposed openstack/kolla-ansible stable/ussuri: Reduce the use of SQLAlchemy connection pooling  https://review.opendev.org/75492808:21
openstackgerritMark Goddard proposed openstack/kolla-ansible stable/train: Reduce the use of SQLAlchemy connection pooling  https://review.opendev.org/75492908:21
mgoddardmorning08:21
openstackgerritMark Goddard proposed openstack/kolla-ansible stable/stein: Reduce the use of SQLAlchemy connection pooling  https://review.opendev.org/75493108:23
*** born2bake has joined #openstack-kolla08:24
*** also_stingrayza is now known as stingrayza08:31
*** priteau has joined #openstack-kolla08:45
openstackgerritMark Goddard proposed openstack/kolla-ansible master: Implement automatic deploy of octavia  https://review.opendev.org/74018008:50
openstackgerritMark Goddard proposed openstack/kolla-ansible master: octavia: generate certificates automatically  https://review.opendev.org/75428008:50
openstackgerritMark Goddard proposed openstack/kolla-ansible master: CI: octavia: create and test a load balancer  https://review.opendev.org/75428508:50
*** e0ne has joined #openstack-kolla08:51
*** bengates has quit IRC08:58
*** bengates has joined #openstack-kolla08:59
*** mushrushu has quit IRC09:05
mnasiadkamorning09:07
*** timss has quit IRC09:08
openstackgerritPierre Riteau proposed openstack/kayobe master: docs: Add skeleton for scenario docs  https://review.opendev.org/74858209:08
*** mushrushu has joined #openstack-kolla09:09
*** k_mouza has joined #openstack-kolla09:10
*** timss has joined #openstack-kolla09:17
*** shyamb has quit IRC09:45
*** JamesBenson has joined #openstack-kolla09:55
*** Abdallahyas has joined #openstack-kolla09:55
*** JamesBenson has quit IRC09:59
*** abdysn has quit IRC09:59
*** k_mouza has quit IRC10:02
*** k_mouza has joined #openstack-kolla10:03
*** wuchunyang has quit IRC10:10
openstackgerritMerged openstack/kolla master: masakari: Add crm_mon to masakarimonitors sudoers  https://review.opendev.org/74422510:40
*** shyamb has joined #openstack-kolla10:43
*** prernadembla05 has joined #openstack-kolla10:48
*** shyam89 has joined #openstack-kolla10:51
*** shyamb has quit IRC10:53
*** k_mouza has quit IRC10:54
*** k_mouza has joined #openstack-kolla10:54
*** k_mouza has quit IRC10:59
*** k_mouza has joined #openstack-kolla11:00
*** JamesBenson has joined #openstack-kolla11:09
*** shyam89 has quit IRC11:12
*** abdysn has joined #openstack-kolla11:15
*** Abdallahyas has quit IRC11:18
*** shyamb has joined #openstack-kolla11:22
recycleheroguys I deployed successfully oncemore without being able to lunch an instance11:29
recycleheroin the host /var/log/kolla/libvirt11:30
openstackgerritMerged openstack/kolla-ansible master: Support TLS encryption of RabbitMQ client-server traffic  https://review.opendev.org/72844811:31
openstackgerritMerged openstack/kolla-ansible master: Add release note and upgrade docs for Ubuntu Focal 20.04  https://review.opendev.org/75438911:31
recycleherothe error error: dnsmasqCapsRefreshInternal:733 : cannon check dnsmasq binary /usr/bin/dnsmasq: no such file or ...11:31
recycleherocatches my attention11:31
recycleherois could be the root of my problem?11:31
recycleherodnsmasq image is not working for debian-source?11:32
*** hjensas_ has joined #openstack-kolla11:40
*** hjensas has quit IRC11:43
*** shyamb has quit IRC11:49
*** Tengu has quit IRC11:53
*** Tengu has joined #openstack-kolla11:55
*** shyamb has joined #openstack-kolla11:58
*** k_mouza has quit IRC11:58
*** shyam89 has joined #openstack-kolla12:03
*** shyamb has quit IRC12:06
*** kevko has joined #openstack-kolla12:06
kevkoyoctozepto: hi, did you check my last patchset ? is it ok now ? or not ?12:06
kevkoyoctozepto: i will just need to rebase ..but want to know if now logic is OK12:07
recycleherokevko: yoctozepto: guys you make this project you work for NASA please help a poor guy have his compute12:11
recycleherohrw: you said you make your own images. I see why now I guess12:14
recycleherodnsmasq binary should be in libvirt container?12:14
kevkowhat ? :D12:15
recycleheroreferring to NSAA Rackspace story. :D12:16
recycleheroI am wondering why I cant lunch instances12:16
*** hjensas_ is now known as hjensas12:18
recycleheroI catched the error of nova-compute I will paste it. please have a look at it12:19
*** k_mouza has joined #openstack-kolla12:19
*** k_mouza has quit IRC12:24
hrwrecyclehero: I develop kolla. so I do own builds to check changes12:27
recycleherohrw: could my problem be debian realted ?12:28
recycleherohttps://file.io/esjcTyoE6h4x12:28
recycleherothis is nova compute log after tring to lunch 1 instance12:29
*** shyam89 has quit IRC12:29
*** shyam89 has joined #openstack-kolla12:29
recycleherohrw: you mean you write docker files mostly?12:30
*** shyam89 has quit IRC12:30
*** shyam89 has joined #openstack-kolla12:31
recycleherohttps://file.io/sdbHzID70O5m12:32
*** shyam89 has quit IRC12:34
*** shyam89 has joined #openstack-kolla12:34
*** kevko has quit IRC12:43
*** shyam89 has quit IRC12:46
*** k_mouza has joined #openstack-kolla12:52
*** Luzi has joined #openstack-kolla12:55
*** shyamb has joined #openstack-kolla12:56
*** shyamb has quit IRC12:57
*** shyamb has joined #openstack-kolla12:57
*** shyamb has quit IRC12:59
*** shyamb has joined #openstack-kolla12:59
openstackgerritMark Goddard proposed openstack/kayobe-config-dev master: DNM: Test iPXE deployment  https://review.opendev.org/75499613:00
mgoddardpriteau: I think the current kayobe upgrade CI failures are related to ironic, now requiring [http]deploy_url. Possibly iPXE is broken since ussuri also13:01
mgoddardtesting ^13:01
*** shyamb has quit IRC13:04
*** shyamb has joined #openstack-kolla13:05
openstackgerritMark Goddard proposed openstack/kolla-ansible master: WIP: Update ironic configuration  https://review.opendev.org/75499713:05
*** shyamb has quit IRC13:07
*** shyamb has joined #openstack-kolla13:08
*** priteau has quit IRC13:10
recycleherohrw: could it says I should have 8gb memory maybe thats it? but we now thats not it, right?13:10
recycleheroi watch -n 5 free when I try to lunch13:11
recycleheroI have 6Gb btw13:11
*** shyamb has quit IRC13:15
openstackgerritMark Goddard proposed openstack/kayobe master: DNM: Debug ironic drivers  https://review.opendev.org/75500013:21
openstackgerritzhoulinhui proposed openstack/kolla-ansible master: Bump the remained minimum Ansible version to 2.9  https://review.opendev.org/75500213:30
*** wuchunyang has joined #openstack-kolla13:31
recycleheroadding a seprate compute node see if it solver the problem13:33
recycleheroI hate kolla now,. I hope I can love it later13:33
*** also_stingrayza has joined #openstack-kolla13:33
*** TrevorV has joined #openstack-kolla13:35
*** stingrayza has quit IRC13:37
openstackgerritzhoulinhui proposed openstack/kolla-ansible master: Remove kolla-cli from cleanup-host script  https://review.opendev.org/75500713:38
openstackgerritMark Goddard proposed openstack/kayobe master: Disable ironic in the overcloud by default  https://review.opendev.org/75500813:39
openstackgerritMark Goddard proposed openstack/kayobe master: Disable ironic in the overcloud by default  https://review.opendev.org/75500813:41
*** e0ne_ has joined #openstack-kolla13:44
*** e0ne has quit IRC13:44
openstackgerritzhoulinhui proposed openstack/kolla-ansible master: Remove kolla-cli from vagrant  https://review.opendev.org/75501013:45
recycleheroThough I only used python virtual env for my laptop(target host) I saw virtual env paths in the deployed  opesntack containers13:46
recycleherobefore adding another host I want to change this one host to virtual host and redeploy13:47
recycleherois it possbie?13:47
recycleheroI think I have to work with this and only varialbes: ansible_python_interpreter, virtualenv, virtualenv_site_packages13:48
openstackgerritzhoulinhui proposed openstack/kolla master: Remove kolla-cli stuff from kolla  https://review.opendev.org/75501313:48
recycleherocorrect? what is virtuaenv_site_packages? and where should it be places?13:48
recycleherod13:48
recycleherohttps://docs.ansible.com/ansible/2.9/reference_appendices/interpreter_discovery.html13:51
recycleherothis talks about ansbiel_python_interpreter but not13:51
recycleherovirtualenv and virtual_site_packages13:51
openstackgerritzhoulinhui proposed openstack/kolla master: Clean up heat-all dockerfile  https://review.opendev.org/75501413:58
openstackgerritMark Goddard proposed openstack/kayobe master: WIP: Disable overcloud networks for Ironic when unused  https://review.opendev.org/75501514:01
*** prernadembla05 has quit IRC14:09
*** hongbin has joined #openstack-kolla14:19
*** skramaja has quit IRC14:32
*** e0ne has joined #openstack-kolla14:33
*** e0ne_ has quit IRC14:33
*** bengates has quit IRC14:34
*** bengates has joined #openstack-kolla14:36
*** LinPeiWen has quit IRC14:40
openstackgerritMerged openstack/kolla-ansible stable/train: Reduce the use of SQLAlchemy connection pooling  https://review.opendev.org/75492914:42
openstackgerritMerged openstack/kolla-ansible master: Bump the remained minimum Ansible version to 2.9  https://review.opendev.org/75500214:42
*** ozzzo has quit IRC14:44
*** ozzzo has joined #openstack-kolla14:50
*** recyclehero has quit IRC14:54
*** hongbin has quit IRC14:56
*** hongbin has joined #openstack-kolla14:58
*** k_mouza has quit IRC15:03
*** recyclehero has joined #openstack-kolla15:06
*** abdysn has quit IRC15:07
*** k_mouza has joined #openstack-kolla15:11
*** kevko has joined #openstack-kolla15:11
*** recyclehero has quit IRC15:12
*** kevko has quit IRC15:12
*** kevko has joined #openstack-kolla15:13
*** kevko has quit IRC15:14
*** recyclehero has joined #openstack-kolla15:14
*** kevko has joined #openstack-kolla15:16
*** kevko_ has joined #openstack-kolla15:20
*** kevko has quit IRC15:21
openstackgerritIsaac Prior proposed openstack/kolla-ansible master: Fix invalid mariadb log options  https://review.opendev.org/75506115:22
*** kevko__ has joined #openstack-kolla15:23
*** kevko_ has quit IRC15:25
openstackgerritIsaac Prior proposed openstack/kolla-ansible master: Fix invalid mariadb log options  https://review.opendev.org/75506115:27
recycleheroI  have decided to use virtual env on target hosts15:30
recyclehero1-python3 -m env /home/user/Python15:30
recyclehero2-add asnible_python_interpreter=/home/user/Python in multinode.ini15:30
recyclehero3-virtual_env in global.yml  ?15:31
recyclehero4-virtual_env_site_package in global.yaml ???15:31
recycleheronow I am destroying and running kolla-ansbile tools to clean the host15:32
*** devfaz has left #openstack-kolla15:35
recycleheronope it installs with bootstrap-servers. got it15:38
recycleherobut dont get virtualenv_site_packages yet!15:39
openstackgerritMark Goddard proposed openstack/kayobe master: Add variables for API VIP address and FQDN  https://review.opendev.org/75328915:43
openstackgerritMark Goddard proposed openstack/kayobe master: Add documentation for routed control plane networks  https://review.opendev.org/75506715:43
recycleheroits a fucking boolean. I will going to mention this in the docs. or should I already know this from ansible?15:44
openstackgerritwu.chunyang proposed openstack/kolla-ansible master: octavia: generate certificates automatically  https://review.opendev.org/75428015:45
*** wuchunyang has quit IRC15:46
*** Luzi has quit IRC15:48
*** wuchunyang has joined #openstack-kolla15:49
*** wuchunyang has quit IRC15:52
*** bengates has quit IRC15:56
*** bengates has joined #openstack-kolla15:57
*** bengates has quit IRC16:01
mgoddardhi recyclehero16:10
mgoddardmind language please :)16:10
mgoddardyou are mostly right16:11
mgoddardvirtualenv in globals.yml is a path to the virtualenv that will be created during bootstrap-servers16:12
mgoddardvirtualenv_site_packages you can use the default16:12
recycleheromgoddard: I set it to "yes" in globals16:12
mgoddardok16:13
recycleherodoing everything from start once again16:13
recycleherofatal: [localhost]: FAILED! => {"changed": false, "msg": "Host OS distribution Gentoo is not supported. Supported distributions are: CentOS, Debian, RHEL, Ubuntu"}16:13
recycleheromy deploy host they said dont matter16:13
recycleheroright?16:13
mgoddardrecyclehero: well it matters to some extent, but it is less important than the other hosts16:15
mgoddardif you want to skip that check you can set prechecks_enable_host_os_checks to false16:15
recycleherohow does it matter, cause I am checking every single detail16:15
mgoddardwell it can't be windows16:16
mgoddardI imagine16:16
mgoddardand we don't test gentoo16:16
mgoddardso you're on your own16:16
* recyclehero going cuckoo 16:16
mgoddardbut if you can install python and ansible plus equivalents of the other deps in the quickstart, you'll probably be ok16:17
recycleherothank you16:17
recycleheroI hope going virtual env with the target host get my problem fixed this time.16:18
yoctozeptorecyclehero: uhm, did you try the simplest possible solution of installing ubuntu focal on both ansible host and target and then following the quickstart? asking because I am unsure whether you got your openstack deployment ever working and it usually does not help to throw more complexity to solve a problem...16:18
recycleherofocal? it works except lunching instances. :D  my next move will be adding a seperate compute host. then centos on target host. then I will go ubuntu ubuntu. I hate Canonical16:20
recycleheroyoctozepto:16:21
recycleheroI will skip debian binary as I dont think it will help.16:21
openstackgerritMark Goddard proposed openstack/kayobe master: WIP: Disable overcloud networks for Ironic when unused  https://review.opendev.org/75501516:22
*** hongbin has quit IRC16:23
yoctozeptorecyclehero: ok, then start with centos 8 on both sides; it's what most cores use at the moment ;-)16:24
yoctozeptorecyclehero: ppl usually like ubuntu so I proposed that first ;p16:24
yoctozeptohopefully not triggering hrw but he does not like ubuntu either ;d16:24
*** hongbin has joined #openstack-kolla16:25
openstackgerritMark Goddard proposed openstack/kayobe master: DNM: Debug ironic drivers  https://review.opendev.org/75500016:26
recycleheroyoctozepto: it has  played divide and conquer on debian. since ubuntu it became useless. everywhere is try ubuntu16:29
yoctozeptorecyclehero: sure, one could argue ubuntu split the deb community but the community has grown a lot since, so it's disputable whether that was wrong or right16:30
yoctozeptostill, it would probably be better if it was still debian but with more monies poured in16:30
yoctozeptobut life is life16:30
*** nikparasyr has left #openstack-kolla16:31
recycleherohrw: hrw: fatal: [172.16.0.1]: FAILED! => {"changed": false, "msg": "Failed to find required executable virtualenv in paths: /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"}16:34
recycleheroi saw ur name on the task16:34
recycleheroTASK [baremetal : Install latest pip in the virtualenv]16:34
recycleheroaha one should do python3 -m venv /path/to/venv first. I though It would do that 216:38
*** dking has quit IRC16:45
*** dking has joined #openstack-kolla16:53
openstackgerritMerged openstack/kolla-ansible stable/ussuri: Reduce the use of SQLAlchemy connection pooling  https://review.opendev.org/75492816:53
openstackgerritMerged openstack/kolla-ansible stable/stein: Reduce the use of SQLAlchemy connection pooling  https://review.opendev.org/75493116:53
*** kevko__ has quit IRC17:01
recycleheroguys please update the images every other day at least. have merce on us. people with poor internet connection looking forward to elon musk starlink17:08
yoctozeptorecyclehero: well, others demanded we update them more frequently; just set up your own registry - it is THE solution for you17:10
openstackgerritMerged openstack/kolla master: Remove kolla-cli stuff from kolla  https://review.opendev.org/75501317:15
recycleheroyoctozepto: I have set up my own. but it will go look for the new ones. am I doing something wrong?17:16
recycleheropull trough cache aka mirror registry17:17
yoctozeptorecyclehero: indeed, you need a normal one17:17
recycleheroyou mean build the images myself and push them to the regisry with no uplink17:18
yoctozeptoor just pull them locally, retag and push to your registry17:19
yoctozeptoI recommend harbor17:19
yoctozeptobut said that already17:19
*** cah_link has quit IRC17:20
recycleherothank you it will save me a lot of headache17:21
recycleherojust curious. why people need quicker updates? they update their prod enviroment now and then?17:22
yoctozeptorecyclehero: to get fresh images when patches merge during the day17:22
yoctozeptorecyclehero: it's a non-production usage17:22
yoctozeptomore for CI17:23
r3ap3rIf it wasn't for Red Hat dropping my storage drivers for my servers in RHEL 8, I would be using CentOS 8/Ussuri instead of Focal/Ussuri. From a "business support" standpoint I get it but then that leaves the "hobbies t/home labbers" out to fend for themselves. lol17:24
*** k_mouza has quit IRC17:24
r3ap3rs/ourselves/themselves ^17:25
r3ap3rHaving an off day today.17:25
*** k_mouza has joined #openstack-kolla17:25
*** k_mouza has quit IRC17:26
yoctozeptor3ap3r: which storage? :O17:27
r3ap3ryoctozepto: SAS2 on my Dell R415/R515's and whatnot. Not stuff at work obviously. ;-D17:28
r3ap3ryoctozepto: megaraid was another one they dropped. That was in my R715.17:29
*** k_mouza has joined #openstack-kolla17:34
*** maharg101 has quit IRC17:34
*** stackedsax has quit IRC17:36
*** bbezak has quit IRC17:37
*** PrinzElvis has quit IRC17:37
*** sri_ has quit IRC17:37
*** suryasingh has quit IRC17:37
*** andrein has quit IRC17:37
*** vkmc has quit IRC17:37
*** jopdorp has quit IRC17:37
*** r3ap3r has quit IRC17:37
*** gmann has quit IRC17:37
*** v1k0d3n has quit IRC17:37
*** mnasiadka has quit IRC17:37
*** mwhahaha has quit IRC17:38
*** emccormick has quit IRC17:38
*** k_mouza has quit IRC17:38
*** johnsom has quit IRC17:38
*** alanmeadows has quit IRC17:38
*** cz3 has quit IRC17:38
*** crindi has quit IRC17:38
*** gouthamr has quit IRC17:39
*** headphoneJames has quit IRC17:39
*** rm_work has quit IRC17:39
*** e0ne has quit IRC17:39
*** johnsom has joined #openstack-kolla17:40
*** JamesBenson has quit IRC17:42
*** JamesBenson has joined #openstack-kolla17:43
*** ozzzo has quit IRC17:44
*** ozzzo has joined #openstack-kolla17:46
*** r3ap3r has joined #openstack-kolla17:48
*** cz3 has joined #openstack-kolla17:48
*** JamesBenson has quit IRC17:48
*** sri_ has joined #openstack-kolla17:49
*** vkmc has joined #openstack-kolla17:49
*** headphoneJames has joined #openstack-kolla17:49
*** mwhahaha has joined #openstack-kolla17:49
*** mnasiadka has joined #openstack-kolla17:49
*** jopdorp has joined #openstack-kolla17:49
*** stackedsax has joined #openstack-kolla17:49
*** emccormick has joined #openstack-kolla17:49
*** andrein has joined #openstack-kolla17:49
*** crindi has joined #openstack-kolla17:50
*** gmann_ has joined #openstack-kolla17:54
*** gmann_ is now known as gmann17:56
r3ap3rdang, got dc'ed. lol17:56
*** suryasingh has joined #openstack-kolla17:58
*** gouthamr has joined #openstack-kolla17:59
*** gouthamr has quit IRC17:59
*** alanmeadows has joined #openstack-kolla17:59
*** PrinzElvis has joined #openstack-kolla18:00
*** JamesBenson has joined #openstack-kolla18:01
*** bbezak has joined #openstack-kolla18:04
*** gouthamr has joined #openstack-kolla18:05
*** gouthamr has quit IRC18:05
*** v1k0d3n has joined #openstack-kolla18:05
*** gouthamr has joined #openstack-kolla18:09
*** gouthamr has quit IRC18:09
*** maharg101 has joined #openstack-kolla18:14
*** gouthamr has joined #openstack-kolla18:15
*** gouthamr has quit IRC18:15
openstackgerritMark Goddard proposed openstack/kayobe master: WIP: Disable overcloud networks for Ironic when unused  https://review.opendev.org/75501518:16
openstackgerritMerged openstack/kolla-ansible master: Remove kolla-cli from cleanup-host script  https://review.opendev.org/75500718:22
*** maharg101 has quit IRC18:24
*** rm_work has joined #openstack-kolla18:25
*** rm_work has quit IRC18:25
*** gouthamr__ has joined #openstack-kolla18:26
*** rm_work has joined #openstack-kolla18:36
*** rm_work has quit IRC18:36
recycleheroyoctozepto: sorry but I didnt understand about the local registry bacause of this code in kolla_docker.py19:07
recycleherohttps://dpaste.com/2UF3RCWZ819:07
recycleherocan u show one example of retagging?19:07
recycleheroplaybook provide input for this code and it flows. how do u retag?19:08
*** e0ne has joined #openstack-kolla19:15
*** hongbin has quit IRC19:20
r3ap3ryoctozepto: mnasiadka I think I got glance communicating with the osd's now. Now the error I get is `Error finding address for https://internal.gravenet.io:9292/v2/images/f99e2d6d-4b56-4da6-b6f5-2fcfeddfa963/file: Unable to establish connection to https://internal.gravenet.io:9292/v2/images/f99e2d6d-4b56-4da6-b6f5-2fcfeddfa963/file: The write operation timed out` but the address is routable from everywhere?19:30
r3ap3rThe image still gets queued and stays there until I delete it. The `glance_api` container is running, not sure what other things I can test. I also just noticed that even though I have cinder enabled in globals.yml for the external Ceph setup using https://docs.openstack.org/kolla-ansible/ussuri/reference/storage/external-ceph-guide.html the cinder containers never got deployed. I also have made sure that I have19:38
r3ap3r`control01`, `compute01` and `compute02` under `[storage]` in the multinode inventory file.19:38
*** gouthamr__ is now known as gouthamr19:39
*** hongbin has joined #openstack-kolla19:40
*** e0ne has quit IRC19:58
*** JamesBenson has quit IRC20:05
*** maharg101 has joined #openstack-kolla20:21
*** maharg101 has quit IRC20:26
*** TrevorV has quit IRC20:30
*** rm_work has joined #openstack-kolla20:37
*** rm_work has quit IRC20:37
*** gfidente has quit IRC20:37
*** k_mouza has joined #openstack-kolla21:00
*** k_mouza has quit IRC21:04
*** k_mouza has joined #openstack-kolla21:09
*** k_mouza has quit IRC21:14
*** jonaspaulo has joined #openstack-kolla21:22
*** e0ne has joined #openstack-kolla21:24
*** jbadiapa has quit IRC21:31
*** k_mouza has joined #openstack-kolla21:35
*** k_mouza has quit IRC21:39
*** k_mouza has joined #openstack-kolla21:44
*** k_mouza has quit IRC21:48
*** kevko__ has joined #openstack-kolla21:49
*** johnsom has quit IRC21:52
*** alanmeadows has quit IRC21:52
*** sri_ has quit IRC21:52
*** r3ap3r has quit IRC21:52
*** jopdorp has quit IRC21:53
*** crindi has quit IRC21:53
*** stackedsax has quit IRC21:53
*** rpittau|afk has quit IRC21:53
*** johnsom has joined #openstack-kolla21:53
*** mnasiadka has quit IRC21:54
*** PrinzElvis has quit IRC21:54
*** suryasingh has quit IRC21:54
*** andrein has quit IRC21:54
*** vkmc has quit IRC21:54
*** cz3 has quit IRC21:54
*** emccormick has quit IRC21:54
*** alanmeadows has joined #openstack-kolla21:54
*** crindi has joined #openstack-kolla21:54
*** andrein has joined #openstack-kolla21:55
*** mnasiadka has joined #openstack-kolla21:55
*** vkmc has joined #openstack-kolla21:55
*** suryasingh has joined #openstack-kolla21:56
*** sri_ has joined #openstack-kolla21:56
*** r3ap3r has joined #openstack-kolla21:56
*** stackedsax has joined #openstack-kolla21:56
*** jopdorp has joined #openstack-kolla21:56
*** rpittau|afk has joined #openstack-kolla21:57
*** cz3 has joined #openstack-kolla21:57
*** PrinzElvis has joined #openstack-kolla21:57
*** e0ne has quit IRC22:03
*** emccormick has joined #openstack-kolla22:10
*** k_mouza has joined #openstack-kolla22:11
*** k_mouza has quit IRC22:15
*** maharg101 has joined #openstack-kolla22:22
*** zzzeek has quit IRC22:23
*** zzzeek has joined #openstack-kolla22:25
*** k_mouza has joined #openstack-kolla22:27
*** maharg101 has quit IRC22:29
*** kevko__ has quit IRC22:30
*** k_mouza has quit IRC22:32
*** zzzeek has quit IRC22:37
*** zzzeek has joined #openstack-kolla22:37
*** born2bake has quit IRC22:42
*** k_mouza has joined #openstack-kolla22:45
*** k_mouza has quit IRC22:49
*** k_mouza has joined #openstack-kolla22:54
*** k_mouza has quit IRC22:58
*** ozzzo has quit IRC23:01
*** rm_work has joined #openstack-kolla23:03
*** rm_work has quit IRC23:03
*** k_mouza has joined #openstack-kolla23:11
*** k_mouza has quit IRC23:15
*** k_mouza has joined #openstack-kolla23:27
*** kklimonda has left #openstack-kolla23:28
*** k_mouza has quit IRC23:32
*** jonaspaulo has quit IRC23:39

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