opendevreview | James Kirsch proposed openstack/kolla-ansible master: Add support for LetsEncrypt-managed certs https://review.opendev.org/c/openstack/kolla-ansible/+/741340 | 01:58 |
---|---|---|
opendevreview | Pierre Riteau proposed openstack/kolla-ansible master: Allow to define extra parameters for Prometheus exporters https://review.opendev.org/c/openstack/kolla-ansible/+/826868 | 09:13 |
opendevreview | Merged openstack/kolla master: Add Prometheus libvirt exporter image https://review.opendev.org/c/openstack/kolla/+/642095 | 09:32 |
opendevreview | Sven Kieske proposed openstack/kolla-ansible master: re-add rabbitmq config for interfaces https://review.opendev.org/c/openstack/kolla-ansible/+/758576 | 09:44 |
opendevreview | Jakub Darmach proposed openstack/kolla stable/xena: Ensure set_configs sets execute bit on directories https://review.opendev.org/c/openstack/kolla/+/829774 | 11:02 |
opendevreview | Jakub Darmach proposed openstack/kolla stable/wallaby: Ensure set_configs sets execute bit on directories https://review.opendev.org/c/openstack/kolla/+/829775 | 11:03 |
opendevreview | Jakub Darmach proposed openstack/kolla stable/victoria: Ensure set_configs sets execute bit on directories https://review.opendev.org/c/openstack/kolla/+/829776 | 11:03 |
opendevreview | Michal Nasiadka proposed openstack/kolla-ansible master: haproxy: support different internal/external ports https://review.opendev.org/c/openstack/kolla-ansible/+/823395 | 11:03 |
opendevreview | alecorps proposed openstack/kolla-ansible master: Add support for VMware First Class Disk (FCD) https://review.opendev.org/c/openstack/kolla-ansible/+/808760 | 11:12 |
opendevreview | alecorps proposed openstack/kolla-ansible master: Add support for VMware First Class Disk (FCD) https://review.opendev.org/c/openstack/kolla-ansible/+/808760 | 11:15 |
opendevreview | Merged openstack/kolla-ansible master: Allow to define extra parameters for Prometheus exporters https://review.opendev.org/c/openstack/kolla-ansible/+/826868 | 11:44 |
opendevreview | Merged openstack/kolla-ansible master: Add support for VMware NSXP https://review.opendev.org/c/openstack/kolla-ansible/+/807404 | 12:04 |
opendevreview | Sven Kieske proposed openstack/kolla-ansible master: re-add rabbitmq config for interfaces https://review.opendev.org/c/openstack/kolla-ansible/+/758576 | 12:30 |
holtgrewe | Hello. I'm using kayobe to deploy my kolla-based openstack. I want to tweak my host configuration. Shortly I want to add VLAN interfaces bond0.656 to my (VM) compute hosts however I do NOT want them to get an IP there. Is this supported? | 13:32 |
holtgrewe | Actually the interface is call brbond0.656. Or should I just leave CIDR empty? | 13:46 |
SvenKieske | mgoddard: if you would still be so kind to review https://review.opendev.org/c/openstack/kolla-ansible/+/758576 again, when you find the time. this time all checks are green and I was able to test some basic stuff locally as well :) | 14:15 |
*** bodgix0 is now known as bodgix | 14:34 | |
SvenKieske | mnasiadka: could you point me to some example for kolla-ansible unit tests? I don't seem to understand the structure of the "tests" directory and the contributer guide also only explains how to run existing tests with tox, but nothing about how to add tests. | 14:54 |
SvenKieske | nvm there is a tox.ini and .tox dir at the root of the project, will check this out | 14:55 |
mnasiadka | SvenKieske: there are unit tests under kolla_ansible/tests/unit/test_address_filters.py for that part of code you changed, it might make sense to add one that checks that output for rabbitmq style address is correct (so we have a slight less chance of breaking when we modify that code for any reason in future) ;-) | 14:55 |
SvenKieske | thanks for the pointer! will add some tests there :) | 14:57 |
SvenKieske | mnasiadka: I have added some tests but I'm not sure how these test classes get instantiated by tox..is this all automatically generated or do I need some stuff to the calling side? if so, where would that be? it seems to not be necessary, as I couldn't grep any instance of the class? | 15:10 |
mnasiadka | SvenKieske: tox will test it in tox -e py36 - don't worry | 15:10 |
SvenKieske | cool :) ty! | 15:11 |
opendevreview | Sven Kieske proposed openstack/kolla-ansible master: re-add rabbitmq config for interfaces https://review.opendev.org/c/openstack/kolla-ansible/+/758576 | 15:14 |
opendevreview | Sven Kieske proposed openstack/kolla-ansible master: re-add rabbitmq config for interfaces https://review.opendev.org/c/openstack/kolla-ansible/+/758576 | 15:15 |
houtknots | Hi, i am having some issues while trying to execute `kayobe overcloud service deploy`. I keep getting the following SSH error: UNREACHABLE! => {"changed": false, "msg": "Failed to connect to the host via ssh: Connection timed out during banner exchange", "unreachable": true} | 15:31 |
houtknots | The moment I try to SSH myself the issue is not present, I have searched for simmular issues but I am unable to find anything that works for me. | 15:31 |
holtgrewe | houtknots: try to call with -vvvv and see if something useful comes up | 15:55 |
houtknots | I don | 16:10 |
houtknots | Óh sorry, pressed enter to early | 16:11 |
houtknots | I don't see anything which I can do within Kayobe to solve the issue, do you have a suggestion @holtgrewe (vvvv output can be found here: https://jhcsmedia.com/?f=vvvv-output.txt) | 16:12 |
SvenKieske | houtknots: your error is. "Connection timed out during banner exchange" check your ssh client and server options inside ansible and on the ssh server side, make sure these work together. notice that your cli call via "ssh" client might take other default options than your ansible ssh connection, check those | 16:52 |
houtknots | SvenKieske: This is the command ansible uses to login, `ssh -vvv -C -o ControlMaster=auto -o ControlPersist=60s -o KbdInteractiveAuthentication=no -o PreferredAuthentications=gssapi-with-mic,gssapi-keyex,hostbased,publickey -o PasswordAuthentication=no -o 'User="ansible"' -o ConnectTimeout=10 -o ControlPath=/root/.ansible/cp/<code/mac> 10.100.x.x` | 16:58 |
houtknots | When I remove ControlPath=/root/.ansible/cp/<code/mac> and ControlMaster=auto it seems te work | 16:59 |
houtknots | But how can I disable these options within ansible/kayobe | 16:59 |
opendevreview | Pierre Riteau proposed openstack/kolla-ansible master: Configure node-exporter to report correct file system metrics https://review.opendev.org/c/openstack/kolla-ansible/+/829973 | 17:37 |
Generated by irclog2html.py 2.17.3 by Marius Gedminas - find it at https://mg.pov.lt/irclog2html/!