Earlier  
Posted Nick Remark
#openstack-sdks - 2017-02-06
17:36:36 sindhu reedip_: oh u mean the port in the external network ?
17:36:41 reedip_ yo
17:36:49 sindhu oh
17:36:53 reedip_ the port connecting the router to the external port
17:37:12 reedip_ %s/port/network/
17:38:13 sindhu reedip_: so how do I identify the external network port?
17:40:08 reedip_ port list -router
17:40:15 reedip_ or port show --router
17:40:38 reedip_ I think OSC's port show has this option which shows the routers its a part of
17:42:01 reedip_ sindhu : https://review.openstack.org/#/c/291866/
17:42:29 sindhu reedip_: oh ok .. got it. but the clean up has to happen in order to work right?
17:43:22 reedip_ Yup, as ankur-gupta-f1 mentioned in PS#24, we need that cleanup , else we would have left over resources
17:43:27 reedip_ :)
17:44:13 sindhu reedip_: yea .. got it :) will fix it
17:45:51 reedip_ sindhu : gr8 :)
18:22:36 openstackgerrit Sindhu Devale proposed openstack/python-openstackclient master: "floating ip set/unset port" for OSC https://review.openstack.org/383025
19:06:41 openstackgerrit Tim Pownall proposed openstack/python-openstackclient master: Adding functionality in openstack client to list volumes associated with no project or an invalid project id that no longer exists. https://review.openstack.org/429789
19:53:35 openstackgerrit Justin A Wilson proposed openstack/python-openstackclient master: Add support for Cinder API 3.3/3.5 into OSC https://review.openstack.org/421585
20:00:11 openstackgerrit Justin A Wilson proposed openstack/python-openstackclient master: Add support for Cinder API 3.3/3.5 into OSC https://review.openstack.org/421585
20:03:06 openstackgerrit Justin A Wilson proposed openstack/python-openstackclient master: Add support for Cinder API 3.3/3.5 into OSC https://review.openstack.org/421585
21:13:57 openstackgerrit Sindhu Devale proposed openstack/python-openstackclient master: "floating ip set/unset port" for OSC https://review.openstack.org/383025
22:20:47 ankur-gupta-f3 sshank: you have a questions about the agent naming stuff for OSC?
22:21:48 sshank ankur-gupta-f3, Yeah. Needed to clarify the naming of agents. Currently we are doing 'network agent add network' for dhcp agent. So if the agent is metering, it might get confusing to users.
22:21:59 ankur-gupta-f3 how do you intend on handling it
22:22:43 ankur-gupta-f3 I was thinking along the lines that the name of the agent should be listed in the help text for the command
22:23:20 sshank DHCP agent: 'network agent add network' and L3 agent: 'network agent add router'.
22:24:02 sshank ankur-gupta-f3, So how about 'network dhcp agent add network' and 'network l3 agent add'?
22:24:07 ankur-gupta-f3 right so how would there be any confusion. there are no commands for metering except for associating a label
22:24:19 ankur-gupta-f3 no because dhcp and l3 are not resources
22:24:25 ankur-gupta-f3 dtroyer: stevemar: thoughts?
22:24:28 ankur-gupta-f3 reedip:
22:28:11 ankur-gupta-f3 aside from the general guidelines for commands. I am against doing this since there is only one case where you add an agent to a router via command, and only one agent you add to network via command for core Neutron services (excluding the plugins)
23:10:17 openstackgerrit Eric Brown proposed openstack/keystoneauth master: Use https for *.openstack.org references https://review.openstack.org/429501
#openstack-sdks - 2017-02-07
02:07:53 reedip_ sindhu : you there ?
02:08:51 reedip_ sindhu: you may want to first remove the external network interface from the router before deleting the port ( swap Line#240 and#241 in https://review.openstack.org/#/c/383025/29/openstackclient/tests/functional/network/v2/test_floating_ip.py )
02:18:19 openstackgerrit gengchc2 proposed openstack/js-openstack-lib master: Use https instead of http for git.openstack.org https://review.openstack.org/429983
04:06:00 sindhu reedip: hey, but line #240 is deleting the floating ip right?
04:10:36 sindhu reedip: also, I checked locally: doing router unset --external-gateway itself deletes the external network port attached to the router
04:12:39 openstackgerrit Rui Chen proposed openstack/python-openstackclient master: Rework port functional tests on json output format https://review.openstack.org/423970
05:00:04 reedip sindhu : checking it out, will respond in some tme
05:00:19 sindhu reedip: sure
06:39:43 openstackgerrit Ankur proposed openstack/python-openstackclient master: Port set/unset SecGroup Bug Fix https://review.openstack.org/430087
09:10:44 openstackgerrit zhiyong.dai proposed openstack/python-openstackclient master: Functional test for server group https://review.openstack.org/430134
10:19:14 reedip sindhu : I have been putting some print statements in your patch, and modified the cleanup as well to identify the issue
10:20:00 reedip sindhu : problem is that I am unable to use the "floating ip set port " CLI even after using your patch ( seems some issue with setup.cfg in registering the commands)
10:45:11 reedip sindhu : this seems to work for your patch
10:45:17 reedip self.openstack('router remove port ' + self.ROUTER
10:45:17 reedip + self.ROUTER)
10:45:17 reedip self.openstack('router unset --external-gateway '
10:45:17 reedip self.openstack('floating ip delete ' + fp_ip)
10:45:17 reedip self.openstack('floating ip unset port ' + fp_ip)
10:45:18 reedip self.addCleanup(self.openstack, 'router delete ' + self.ROUTER)
10:45:18 reedip + ' ' + port_id)
10:45:45 reedip I tested it, and got functional commands succeeded
11:25:42 openstackgerrit Reedip proposed openstack/python-openstackclient master: "floating ip set/unset port" for OSC https://review.openstack.org/383025
11:34:02 openstackgerrit zhiyong.dai proposed openstack/python-openstackclient master: Add choices for option '--policy' https://review.openstack.org/430209
12:16:48 jmccarthy Hiya, should Keystoneclient v3 work in Mitaka, I mean should the "grant()" method which is defined in /usr/lib/python2.7/site-packages/keystoneclient/v3/roles.py be usable ?
13:14:44 briancurtin try the keystone channel
14:12:28 openstackgerrit Hugh Saunders proposed openstack/python-openstackclient master: Add helpful message for malformed --nic arg https://review.openstack.org/430266
14:18:46 openstackgerrit Sindhu Devale proposed openstack/python-openstackclient master: "floating ip set/unset port" for OSC https://review.openstack.org/383025
14:19:51 sindhu reedip: yes it is working .... so like u said first the external-gateway had to be unset and then remove port from router :)
14:20:18 sindhu reedip: thank you for looking into this :)
15:51:32 openstackgerrit Hugh Saunders proposed openstack/python-openstackclient master: Add helpful message for malformed --nic arg https://review.openstack.org/430266
16:39:30 reedip sindhu : np , glad to help :)
16:52:33 sindhu reedip: :)
16:58:22 openstackgerrit Rodolfo Alonso Hernandez proposed openstack/python-openstacksdk master: Add new parameter "is_default" to Network QoS policy. https://review.openstack.org/430363
17:42:43 openstackgerrit Brian Curtin proposed openstack/python-openstacksdk master: Adjust some proxy method names in cluster https://review.openstack.org/427898
17:42:44 openstackgerrit Brian Curtin proposed openstack/python-openstacksdk master: Adjust some proxy method names in bare_metal https://review.openstack.org/430385
19:24:45 openstackgerrit Merged openstack/python-openstackclient master: Fix "module list --all" failed https://review.openstack.org/429246
21:37:07 openstackgerrit Ankur proposed openstack/python-openstackclient master: Network L3 Router Commands for OSC https://review.openstack.org/385729
#openstack-sdks - 2017-02-08
00:47:25 openstackgerrit Steve Martinelli proposed openstack/python-openstackclient master: Fix wrong behavior of parsing plugin service name https://review.openstack.org/429645
01:50:00 openstackgerrit Lv Jiawei proposed openstack/python-openstackclient master: Add extra filtering options to qos policy list https://review.openstack.org/401131
02:18:05 openstackgerrit huangtianhua proposed openstack/python-openstackclient master: Use public and unified method get_console_url() https://review.openstack.org/430508
02:53:38 openstackgerrit Merged openstack/python-openstackclient master: Fix wrong behavior of parsing plugin service name https://review.openstack.org/429645
03:03:43 openstackgerrit Yan Xing an proposed openstack/python-openstackclient master: Add --fixed-ip option to the port list command https://review.openstack.org/388575
03:49:32 openstackgerrit Takashi NATSUME proposed openstack/python-openstackclient master: Add 'host' and 'force' parameter in cold migration https://review.openstack.org/427565
03:52:55 openstackgerrit Takashi NATSUME proposed openstack/python-openstackclient master: Add 'host' and 'force' parameter in cold migration https://review.openstack.org/427565
05:49:47 reedip Any reviews for https://review.openstack.org/#/c/415369/ ??
06:08:24 openstackgerrit zhiyong.dai proposed openstack/python-openstackclient master: Functional test for aggregate https://review.openstack.org/430573
06:24:12 openstackgerrit gengchc2 proposed openstack/cliff master: Remove support for py34 https://review.openstack.org/430577
06:39:38 openstackgerrit zhiyong.dai proposed openstack/python-openstackclient master: Add choices for option '--policy' https://review.openstack.org/430209
07:07:23 openstackgerrit gengchc2 proposed openstack/keystoneauth master: Remove support for py34 https://review.openstack.org/430595
07:59:14 openstackgerrit zhiyong.dai proposed openstack/python-openstackclient master: Move option "--no-property" above "--property" https://review.openstack.org/430624
12:07:43 reedip_ hey guys, any reviews for https://review.openstack.org/#/c/415369/ ?
12:35:18 openstackgerrit zhiyong.dai proposed openstack/python-openstackclient master: Functional test for agent https://review.openstack.org/430876
13:43:53 reedip_ o/
14:34:12 openstackgerrit Monty Taylor proposed openstack/os-client-config master: Add support for indicating required floating IPs https://review.openstack.org/430967
15:00:55 openstackgerrit Merged openstack/python-openstacksdk master: Added project role assignment https://review.openstack.org/416598
16:03:50 openstackgerrit Sindhu Devale proposed openstack/python-openstackclient master: "floating ip set/unset port" for OSC https://review.openstack.org/383025
17:02:13 openstackgerrit Brian Curtin proposed openstack/python-openstacksdk master: Cleanup more Sphinx warnings during doc build https://review.openstack.org/431070
19:21:41 openstackgerrit Merged openstack/python-openstacksdk master: Cleanup more Sphinx warnings during doc build https://review.openstack.org/431070
21:30:42 openstackgerrit Gage Hugo proposed openstack/keystoneauth master: Fixed multiple target Auth warning in docstring https://review.openstack.org/431184
#openstack-sdks - 2017-02-09
00:10:59 openstackgerrit Corentin Ardeois proposed openstack/js-openstack-lib master: Update glance version https://review.openstack.org/431233
00:23:24 openstackgerrit Corentin Ardeois proposed openstack/js-openstack-lib master: Update glance version https://review.openstack.org/431233
01:54:52 openstackgerrit Corentin Ardeois proposed openstack/js-openstack-lib master: Update glance version https://review.openstack.org/431233
05:50:59 openstackgerrit zhiyong.dai proposed openstack/python-openstackclient master: Functional test for configuration https://review.openstack.org/431329
05:58:33 openstackgerrit Merged openstack/python-openstackclient master: Functional test for server group https://review.openstack.org/430134
06:03:24 openstackgerrit Lv Jiawei proposed openstack/python-openstackclient master: Add extra filtering options to qos policy list https://review.openstack.org/401131
06:09:58 openstackgerrit zhiyong.dai proposed openstack/python-openstackclient master: Functional test for aggregate https://review.openstack.org/430573
06:35:57 openstackgerrit Merged openstack/python-openstackclient master: Functional test for agent https://review.openstack.org/430876

Earlier   Later