Friday, 2021-04-30

*** ThiagoCMC has joined #openstack-ansible00:22
*** spatel has quit IRC00:23
*** spatel_ has joined #openstack-ansible00:49
*** spatel_ is now known as spatel00:49
*** rh-jelabarre has quit IRC01:05
openstackgerrityang yawei proposed openstack/openstack-ansible-os_swift master: setup.cfg: Replace dashes with underscores  https://review.opendev.org/c/openstack/openstack-ansible-os_swift/+/78886201:54
openstackgerrityang yawei proposed openstack/openstack-ansible-specs master: setup.cfg: Replace dashes with underscores  https://review.opendev.org/c/openstack/openstack-ansible-specs/+/78886501:59
*** gyee has quit IRC02:06
*** spatel has quit IRC02:07
*** spatel_ has joined #openstack-ansible02:15
*** spatel_ is now known as spatel02:15
*** evrardjp has quit IRC02:33
*** evrardjp has joined #openstack-ansible02:33
*** spatel has quit IRC03:55
*** oleksandry has quit IRC04:00
*** NewJorg has quit IRC04:15
*** NewJorg has joined #openstack-ansible04:18
openstackgerrityang yawei proposed openstack/openstack-ansible-os_neutron master: setup.cfg: Replace dashes with underscores  https://review.opendev.org/c/openstack/openstack-ansible-os_neutron/+/78888805:58
openstackgerrityang yawei proposed openstack/openstack-ansible-openstack_hosts master: setup.cfg: Replace dashes with underscores  https://review.opendev.org/c/openstack/openstack-ansible-openstack_hosts/+/78888906:02
openstackgerrityang yawei proposed openstack/openstack-ansible-os_nova master: setup.cfg: Replace dashes with underscores  https://review.opendev.org/c/openstack/openstack-ansible-os_nova/+/78889206:08
*** ChipOManiac has joined #openstack-ansible06:11
*** oleksandry has joined #openstack-ansible06:16
ChipOManiacnoonedeadpunk Hello,06:21
ChipOManiacJust read the chat logs.06:21
ChipOManiacRead that you might know what the reason for my problem yesterday was.06:22
*** ChipOManiac has quit IRC07:06
*** rpittau|afk is now known as rpittau07:24
*** pcaruana has quit IRC07:38
*** ChipOManiac has joined #openstack-ansible07:40
noonedeadpunkChipOManiac yeah I do :(((07:49
noonedeadpunkI patched masakari regarding this thing07:50
noonedeadpunkI wish you left for more time on the server07:50
ChipOManiacOh?07:51
noonedeadpunkoh, you;'re around:)07:51
ChipOManiacYeah. Looks like I disconnect because I'm in a rural area. :)07:51
noonedeadpunkso, the thing is there, that your compute name differs between openstack compute service list and openstack hypervisor list07:51
ChipOManiacExactly.07:51
ChipOManiacIs that something that OpenStack-Ansible does or is it supposed to be that way?07:52
noonedeadpunkeventually it goes to how python returns socket.gethostname() and socket.getfqdn()07:52
noonedeadpunkand changing order of the records in /etc/hosts might solve it. But eventually, you need to create hosts in masakari with the compute name that is returned via compute service list07:53
noonedeadpunkthat's the patch for masakari itself https://review.opendev.org/c/openstack/masakari/+/72862907:53
ChipOManiacMeaning I need to put the short-hostname at the top of the hosts file and then the fqdn?07:54
noonedeadpunkwell, ideally, you need to match return of the `python -c "import socket; print(socket.getfqdn())"` and `python -c "import socket; print(socket.gethostname())"`07:55
noonedeadpunkwhat release do you run? as fix has landed for V07:55
ChipOManiacTrain. As of current.07:55
ChipOManiacBut we were testing this in our PoC.07:56
noonedeadpunkgotcha07:56
ChipOManiacSo I can move to Victoria.07:56
ChipOManiacIs there a code change?07:56
noonedeadpunkwell, I mean that's pretty nasty thing and I had one region running with hostname!=fqdn and for other I matched these 2 things, and I think it's better to make them the same07:57
noonedeadpunkI think hostname is not really altered with openstack-ansible but it's smth that you do while node setup07:57
noonedeadpunkas compute service list use socket.gethostname()07:57
noonedeadpunkand the name from hypervisor list comes from libvirt07:58
noonedeadpunkyes, in V fix is already applied07:58
noonedeadpunkand masakari also just search for compute service list07:58
noonedeadpunkyou can actually just use masakari ersion with fix on Train07:59
ChipOManiacAh okay. Understood.08:00
ChipOManiac> you can actually just use masakari ersion with fix on Train08:00
ChipOManiacDo you mean use a patch?08:00
ChipOManiacAlso, I think this problem also affect adding hosts to segments.08:03
ChipOManiacBecause when I initially tried to add the hosts based on the answers from compute service list it refused to add them until I used the entries in hypervisor list.08:04
*** andrewbonney has joined #openstack-ansible08:14
*** pcaruana has joined #openstack-ansible08:16
*** tosky has joined #openstack-ansible08:21
noonedeadpunkYeah, that's what this patch does fix actually08:22
noonedeadpunkChipOManiac: you can actually specify in your suer_variables this: masakari_git_install_branch: 4322968b893b242f229912c2b70e3895f022740208:24
noonedeadpunkand re-run masakari role to get the patched version from V08:25
*** lkoranda has joined #openstack-ansible08:27
*** gokhani has joined #openstack-ansible08:29
gokhaniHi folks, ı want to try manila with CephFS + native and CephFS + NFS on OSA. I configured backends in user_variables.yml like http://paste.openstack.org/show/804874/   but I am not sure to define nfs_ganesha_server_ip like "cephfs_ganesha_server_ip: {{ hostvars[inventory_hostname]['ansible_default_ipv4'] }}". May be you have ideas about that.08:43
noonedeadpunkwell, ideally you need to somehow loadbalance ganesha08:44
noonedeadpunkthat's smth that's not currently implemented out of the box08:45
noonedeadpunkand then you will set cephfs_ganesha_server_ip to the haproxy vip08:45
gokhaniok gotcha. osa installs nfs-ganesha  but not loadbalance them. If I see correctly, OSA installs nfs-ganesha09:06
noonedeadpunkyeah, we do install it09:06
noonedeadpunkand I think it's mostly tested just in the aio :(09:07
gokhanican we use same vip which we use for OpenStack services? or we need a new haproxy-keepalived.09:27
openstackgerritJonathan Herlin proposed openstack/openstack-ansible-os_horizon stable/victoria: Install adjutant-ui when the adjutant service is deployed  https://review.opendev.org/c/openstack/openstack-ansible-os_horizon/+/78861109:31
*** shyamb has joined #openstack-ansible09:41
*** ChipOManiac47 has joined #openstack-ansible09:50
ChipOManiac47noonedeadpunk Thanks! I'll look into that and get back to you. Thanks for looking into it. :)09:52
*** lkoranda has quit IRC09:52
*** ChipOManiac has quit IRC09:53
*** shyamb has quit IRC10:02
*** dasp has quit IRC10:31
*** oleksandry has quit IRC10:44
*** oleksandry has joined #openstack-ansible10:58
*** PrinzElvis has quit IRC11:01
admin0strange ... c1 and c2 were formatted and worked fine without issue from xenial -> bionic .. i formatted c3 and it gives fatal: [c3]: FAILED! => {"attempts": 5, "changed": false, "msg": "No package matching 'python-software-properties' is available"} .. same playbook11:11
admin0checking if anyone seen this error before11:11
admin0python3 software properties and software-properties-common both seems to be installed fine11:11
*** dasp has joined #openstack-ansible11:57
*** sshnaidm is now known as sshnaidm|off11:59
*** rh-jelabarre has joined #openstack-ansible12:04
*** ChipOManiac47 has quit IRC12:15
*** gokhani has quit IRC12:28
*** gokhani has joined #openstack-ansible12:29
*** spatel_ has joined #openstack-ansible13:02
*** spatel_ is now known as spatel13:02
*** gokhani has quit IRC13:09
noonedeadpunkon R I think it will try to use python213:11
*** shyam89 has joined #openstack-ansible13:12
*** lkoranda has joined #openstack-ansible13:13
*** dwilde has joined #openstack-ansible13:16
*** gokhani has joined #openstack-ansible13:33
*** lkoranda has quit IRC13:46
*** owalsh has quit IRC13:54
*** rpittau is now known as rpittau|afk14:10
*** shyam89 has quit IRC14:13
*** owalsh has joined #openstack-ansible14:13
*** mgariepy has quit IRC14:42
*** mgariepy has joined #openstack-ansible14:45
admin0so controller3 also was fine migrating from xenial -> bionic and all services are running on bionic15:09
admin0the only thing thats not working is rabbit1 and rabbit2 are in cluster .. rabbit3 is standalone15:09
admin0the rabbit playbooks runs OK .. but i can't get them to be in the same cluster15:09
*** dwilde has quit IRC15:10
*** shyamb has joined #openstack-ansible15:15
*** dwilde has joined #openstack-ansible15:18
mgariepyadmin0,  ? http://paste.openstack.org/show/804886/15:23
mgariepyon the failed one ofc.15:24
mgariepyfailed / standalone..15:26
admin0mgariepy, many thanks15:28
admin0that worked15:28
admin0i read the rabbitmq docs wrong, and i was doing stop_app on the c1 node :D15:28
*** gyee has joined #openstack-ansible15:32
mgariepycool, i'm glad it worked :D15:36
mgariepyadmin0, how are you doing the compute nodes?15:36
openstackgerritMerged openstack/ansible-role-pki master: Add boilerplate ansible role components  https://review.opendev.org/c/openstack/ansible-role-pki/+/77462015:44
*** spatel has quit IRC16:07
*** shyamb has quit IRC16:20
*** shyamb has joined #openstack-ansible16:20
openstackgerritMerged openstack/openstack-ansible master: Update rgw client definition for OpenStack-RadosGW integration  https://review.opendev.org/c/openstack/openstack-ansible/+/78847016:22
openstackgerritMerged openstack/openstack-ansible-specs master: setup.cfg: Replace dashes with underscores  https://review.opendev.org/c/openstack/openstack-ansible-specs/+/78886516:25
*** spatel_ has joined #openstack-ansible16:26
*** spatel_ is now known as spatel16:26
*** oleksandry has quit IRC16:31
*** spatel has quit IRC16:46
*** shyamb has quit IRC16:46
*** jbadiapa has quit IRC16:49
*** spatel_ has joined #openstack-ansible16:50
*** spatel_ is now known as spatel16:50
*** macz_ has joined #openstack-ansible16:55
*** spatel has quit IRC17:07
*** oleksandry has joined #openstack-ansible17:23
*** andrewbonney has quit IRC17:48
*** lkoranda has joined #openstack-ansible18:04
*** oleksandry has quit IRC18:04
*** owalsh has quit IRC18:04
*** priteau has quit IRC18:04
*** waxfire has quit IRC18:04
*** akahat|ruck has quit IRC18:04
*** bradm has quit IRC18:04
*** lemko has quit IRC18:04
*** partlycl- has quit IRC18:06
*** oleksandry has joined #openstack-ansible18:07
*** owalsh has joined #openstack-ansible18:07
*** priteau has joined #openstack-ansible18:07
*** waxfire has joined #openstack-ansible18:07
*** akahat|ruck has joined #openstack-ansible18:07
*** bradm has joined #openstack-ansible18:07
*** lemko has joined #openstack-ansible18:07
*** gouthamr has quit IRC18:08
*** gouthamr has joined #openstack-ansible18:09
*** partlycloudy has joined #openstack-ansible18:10
*** lkoranda has quit IRC18:11
*** oleksandry has quit IRC18:35
*** cyberpear has joined #openstack-ansible18:41
*** dave-mccowan has quit IRC18:45
*** gokhani has quit IRC18:53
*** dwilde has quit IRC19:26
*** dwilde has joined #openstack-ansible19:49
*** luksky has joined #openstack-ansible20:11
*** poopcat has quit IRC20:37
*** luksky has quit IRC21:56
*** luksky has joined #openstack-ansible21:56
*** luksky has quit IRC21:57
*** luksky has joined #openstack-ansible21:58
*** dwilde has quit IRC23:26
*** tosky has quit IRC23:31
*** luksky has quit IRC23:31
*** macz_ has quit IRC23:35
*** poopcat has joined #openstack-ansible23:44

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