openstackgerrit | Merged openstack/openstacksdk master: Update docs to work with newer Sphinx https://review.opendev.org/721631 | 00:49 |
---|---|---|
*** ricolin has joined #openstack-sdks | 02:33 | |
*** enriquetaso has quit IRC | 03:13 | |
*** evrardjp has quit IRC | 04:35 | |
*** evrardjp has joined #openstack-sdks | 04:35 | |
*** ricolin has quit IRC | 05:51 | |
*** ricolin has joined #openstack-sdks | 05:53 | |
openstackgerrit | Sagi Shnaidman proposed openstack/ansible-collections-openstack master: Add OpenstackModule to os_server_action https://review.opendev.org/721746 | 05:54 |
*** ttsiouts has joined #openstack-sdks | 05:56 | |
*** nightmare_unreal has joined #openstack-sdks | 06:19 | |
*** gtema has joined #openstack-sdks | 06:30 | |
*** slaweq has joined #openstack-sdks | 06:57 | |
*** slaweq has quit IRC | 07:02 | |
*** slaweq has joined #openstack-sdks | 07:05 | |
*** ricolin has quit IRC | 07:06 | |
openstackgerrit | Daniel Bengtsson proposed openstack/osc-lib master: Stop configuring install_command in tox and stop use pip. https://review.opendev.org/694510 | 07:11 |
*** ricolin has joined #openstack-sdks | 07:13 | |
*** rpittau|afk is now known as rpittau | 07:24 | |
*** ralonsoh has joined #openstack-sdks | 07:25 | |
*** yolanda has joined #openstack-sdks | 07:30 | |
*** tosky has joined #openstack-sdks | 07:45 | |
*** jpena|off is now known as jpena | 07:55 | |
*** tkajinam has quit IRC | 08:15 | |
openstackgerrit | Sagi Shnaidman proposed openstack/ansible-collections-openstack master: Add OpenstackModule to os_server_action https://review.opendev.org/721746 | 08:25 |
openstackgerrit | Sagi Shnaidman proposed openstack/ansible-collections-openstack master: WIP: Add OpenstackModule to os_server_action https://review.opendev.org/721746 | 08:37 |
*** gtema has quit IRC | 09:02 | |
*** gtema has joined #openstack-sdks | 09:08 | |
*** ricolin has quit IRC | 09:22 | |
*** ricolin has joined #openstack-sdks | 09:23 | |
*** ricolin has quit IRC | 09:24 | |
*** ricolin has joined #openstack-sdks | 09:25 | |
*** ricolin has quit IRC | 09:25 | |
*** ricolin_ has joined #openstack-sdks | 09:25 | |
*** ricolin_ is now known as ricolin | 09:36 | |
*** dtantsur|afk is now known as dtantsur | 09:42 | |
*** evrardjp has quit IRC | 09:51 | |
*** evrardjp has joined #openstack-sdks | 09:51 | |
openstackgerrit | Sagi Shnaidman proposed openstack/ansible-collections-openstack master: WIP: Add OpenstackModule to os_server_action https://review.opendev.org/721746 | 09:55 |
openstackgerrit | Sagi Shnaidman proposed openstack/ansible-collections-openstack master: Add OpenstackModule to os_server_action https://review.opendev.org/721746 | 10:04 |
*** rpittau is now known as rpittau|bbl | 10:42 | |
*** jpena is now known as jpena|lunch | 11:29 | |
*** rpittau|bbl is now known as rpittau | 11:50 | |
*** ttsiouts_ has joined #openstack-sdks | 12:16 | |
*** ttsiouts has quit IRC | 12:20 | |
*** dayou has quit IRC | 12:29 | |
*** dayou has joined #openstack-sdks | 12:30 | |
openstackgerrit | Sagi Shnaidman proposed openstack/ansible-collections-openstack master: Add OpenstackModule to os_server_action https://review.opendev.org/721746 | 12:33 |
*** jpena|lunch is now known as jpena | 12:35 | |
frickler | mordred: gtema: please have a look at this revert, not sure whether we can get a FFE for that, but I think it would make sense https://review.opendev.org/717712 | 13:21 |
mordred | frickler: I think that seems like a valid reason to re-release. +A | 13:22 |
gtema | agree | 13:26 |
*** enriquetaso has joined #openstack-sdks | 13:47 | |
openstackgerrit | Merged openstack/ansible-collections-openstack master: Convert os_server_info to use OpenStackModule https://review.opendev.org/721580 | 14:08 |
openstackgerrit | Noah Mickus proposed openstack/openstacksdk master: Add cipher list support for octavia https://review.opendev.org/721351 | 14:18 |
nightmare_unreal | dtantsur: a few days ago I asked how can I add a new command to openstackclient for e.g. openstack server migrate is an existing cmd. suppose i want to add openstack migration list ( and other commands related to it) . I looked into setup.cfg in source. I can't seem to find the setup.cfg in the devstack ( my development machine ). Does setup.cfg exist only in source ? | 14:21 |
nightmare_unreal | basically I just to add/extend openstackclient | 14:22 |
gtema | yes, setup.cfg exists only in source | 14:22 |
gtema | during build it generates ".../entry_points" file with come info out of it | 14:23 |
nightmare_unreal | okay, so how can I test the new command then? install the oscclient again by specifying the new class in setup.cfg before installation ? | 14:23 |
gtema | do you develop it part of the openstackclient repo or how? | 14:23 |
nightmare_unreal | currently I have a devstack machine and I edit the things in /usr/local/dist-packages/.-----/openstackclient | 14:24 |
nightmare_unreal | so i directly change stuff here . | 14:24 |
gtema | you checkout python-openstackclient repo, you deploy devstack, configure osc to connect to devstack. Develop new stuff in OSC and test it against devstack | 14:26 |
gtema | you will anyway want to submit this upstream, so simply developing somewhere without possibility to get it to the next phase is overhead | 14:27 |
nightmare_unreal | yeah. thing is devstack setup is quite easy and you get everything on the go. it installs openstackclient too . | 14:28 |
nightmare_unreal | I will try to configure it | 14:28 |
gtema | you just create clouds.yaml externally and that's it, your local osc checkout can talk with devstack | 14:30 |
nightmare_unreal | Oh | 14:31 |
nightmare_unreal | thanks :) | 14:32 |
gtema | welcome | 14:32 |
gtema | you can "dirty hack" this and register your plugins in the .../site-packages/..python-openstackclient/entry_points | 14:32 |
nightmare_unreal | I just saw this : https://docs.openstack.org/python-openstackclient/pike/configuration/index.html | 14:33 |
gtema | but this is really a very dirty hack | 14:33 |
nightmare_unreal | clouds.yaml part is mentioned. | 14:33 |
gtema | yes | 14:33 |
nightmare_unreal | Thanks :D . I will try the clouds.yaml way | 14:33 |
*** factor has quit IRC | 14:45 | |
openstackgerrit | Merged openstack/openstacksdk master: Fix an unstable bare metal unit test https://review.opendev.org/721566 | 14:46 |
*** ttsiouts_ has quit IRC | 14:46 | |
*** ttsiouts has joined #openstack-sdks | 14:48 | |
*** gtema_ has joined #openstack-sdks | 14:50 | |
*** gtema has quit IRC | 14:52 | |
*** ttsiouts has quit IRC | 15:03 | |
*** ttsiouts has joined #openstack-sdks | 15:23 | |
openstackgerrit | Sagi Shnaidman proposed openstack/ansible-collections-openstack master: Add OpenstackModule to os_server_action https://review.opendev.org/721746 | 15:35 |
openstackgerrit | Merged openstack/python-openstackclient master: Revert "Disallow setting default on internal network" https://review.opendev.org/717712 | 15:40 |
*** ttsiouts has quit IRC | 15:50 | |
*** noama has quit IRC | 16:13 | |
*** gtema_ has quit IRC | 16:28 | |
*** ttsiouts has joined #openstack-sdks | 16:28 | |
*** rpittau is now known as rpittau|afk | 16:29 | |
*** evrardjp has quit IRC | 16:35 | |
*** evrardjp has joined #openstack-sdks | 16:35 | |
*** ttsiouts has quit IRC | 16:44 | |
*** yolanda has quit IRC | 16:54 | |
*** dtantsur is now known as dtantsur|afk | 16:55 | |
*** jpena is now known as jpena|off | 17:12 | |
*** ttsiouts has joined #openstack-sdks | 17:16 | |
*** ttsiouts has quit IRC | 17:20 | |
*** mgariepy has quit IRC | 17:39 | |
*** mgariepy has joined #openstack-sdks | 17:39 | |
*** ttsiouts has joined #openstack-sdks | 17:49 | |
*** ralonsoh has quit IRC | 17:56 | |
*** nightmare_unreal has quit IRC | 17:59 | |
*** gtema has joined #openstack-sdks | 17:59 | |
*** sshnaidm is now known as sshnaidm|afk | 18:04 | |
*** gtema has quit IRC | 18:13 | |
*** ttsiouts has quit IRC | 18:22 | |
*** ttsiouts has joined #openstack-sdks | 18:58 | |
*** ttsiouts has quit IRC | 19:03 | |
*** ttsiouts has joined #openstack-sdks | 19:32 | |
*** ttsiouts has quit IRC | 20:06 | |
*** enriquetaso has quit IRC | 21:07 | |
*** ttsiouts has joined #openstack-sdks | 21:16 | |
*** tobiash has quit IRC | 21:45 | |
*** tobiash has joined #openstack-sdks | 21:47 | |
*** ttsiouts has quit IRC | 21:50 | |
*** slaweq has quit IRC | 21:58 | |
*** slaweq has joined #openstack-sdks | 21:58 | |
*** slaweq has quit IRC | 22:03 | |
openstackgerrit | Merged openstack/keystoneauth stable/ussuri: Update .gitreview for stable/ussuri https://review.opendev.org/717028 | 22:10 |
openstackgerrit | Merged openstack/keystoneauth stable/ussuri: Update TOX/UPPER_CONSTRAINTS_FILE for stable/ussuri https://review.opendev.org/717029 | 22:10 |
*** ttsiouts has joined #openstack-sdks | 22:20 | |
*** ttsiouts has quit IRC | 22:29 | |
*** tkajinam has joined #openstack-sdks | 22:54 | |
*** ttsiouts has joined #openstack-sdks | 22:57 | |
*** ttsiouts has quit IRC | 23:31 | |
*** tosky has quit IRC | 23:51 |
Generated by irclog2html.py 2.15.3 by Marius Gedminas - find it at mg.pov.lt!