Re: [openstack-dev] Juno Multinode installation error

2015-05-05 Thread Ajaya Agrawal
Hi, A better place to ask this question would be ask.openstack.org . Cheers, Ajaya On Tue, May 5, 2015 at 4:56 PM, Abhishek Talwar abhishek.tal...@tcs.com wrote: Hi Folks, I am trying to setup a multinode OpenStack. When I boot an instance it is successfully created but it is going in

Re: [openstack-dev] [Neutron][Keystone] [Nova] How to validate teanant-id for admin operation

2015-04-27 Thread Ajaya Agrawal
On Mon, Apr 27, 2015 at 6:05 AM, Jamie Lennox jamielen...@redhat.com wrote: Not to speak for Brant, but i think the confusion here is why you are doing this. From my perspective you should never be in a position where the admin has to enter a raw project id like that. Sometimes you have to do

Re: [openstack-dev] [Neutron][Keystone] [Nova] How to validate teanant-id for admin operation

2015-04-26 Thread Ajaya Agrawal
Hi, You could call GET project/project_id and verify that the project really exists in Keystone. But again by doing that you would be increasing load on Keystone server. When UUID tokens are being used, an additional call is needed to verify the token. If you add another call to this then it

[openstack-dev] [glance] Why no DB index on sort parameters

2015-04-21 Thread Ajaya Agrawal
Hi All, I see that glance supports arbitrary sort parameters and the default is created_at while listing images. Is there any reason why we don't have index over these fields? If we have an index over these fields then we would avoid a full table scan to do sorting. IMO at least the created_at

Re: [openstack-dev] How to debug test cases in Openstack

2015-01-16 Thread Ajaya Agrawal
Hi, You have a pdb statement somewhere in your test case. Follow this to run a single test with pdb. https://wiki.openstack.org/wiki/Testr Cheers, Ajaya Cheers, Ajaya On Fri, Jan 16, 2015 at 11:07 AM, Abhishek Talwar/HYD/TCS abhishek.tal...@tcs.com wrote: Hi, I have been trying to debug

[openstack-dev] [MagnetoDB] TTL feature for a row

2015-01-15 Thread Ajaya Agrawal
Hi guys, I am referring to the blueprint: https://blueprints.launchpad.net/magnetodb/+spec/row-expiration . We want to provide our end users with ttl feature on a row in MagnetoDB. As it stands today in cassandra, ttl is on a column basis rather than a row basis. i.e. when you insert a row with

[openstack-dev] [Keystone] Is anyone working on the following patch?

2015-01-06 Thread Ajaya Agrawal
https://review.openstack.org/#/c/113586/ Two of my patches depend on this patch. https://review.openstack.org/#/c/113277/ https://review.openstack.org/#/c/110575/ Cheers, Ajaya ___ OpenStack-dev mailing list OpenStack-dev@lists.openstack.org

Re: [openstack-dev] [MagnetoDB] Andrey Ostapenko core nomination

2014-12-26 Thread Ajaya Agrawal
+1 Cheers, Ajaya On Fri, Dec 26, 2014 at 8:22 PM, Dmitriy Ukhlov dukh...@mirantis.com wrote: Andrey is very active contributor, good team player and very helps us at previous development cycle. +1 from my side. On Fri, Dec 26, 2014 at 4:16 PM, isviridov isviri...@mirantis.com wrote: Hello

[openstack-dev] [glance] Policy file not reloaded after changes

2014-11-13 Thread Ajaya Agrawal
Hi All, The policy file is not reloaded in glance after a change is made to it. You need to restart glance to load the new policy file. I think all other components reload the policy file after a change is made to it. Is it a bug or intended behavior? Cheers, Ajaya

Re: [openstack-dev] Quota management and enforcement across projects

2014-10-15 Thread Ajaya Agrawal
Hi, Would the new library support quota on domain level also? As it stands in oslo-incubator it only does quota enforcement on project level only. The use case for this is quota enforcement across multiple projects. For e.g. as a cloud provider, I would like my customer to create only #X volumes

Re: [openstack-dev] [MagnetoDB] Core developer nomination

2014-09-18 Thread Ajaya Agrawal
+1 Cheers, Ajaya On Thu, Sep 18, 2014 at 2:38 PM, Dmitriy Ukhlov dukh...@mirantis.com wrote: +1 from me, Charles is very active contributor and I guess if we have such developer in core team MagnetoDB project will become much better that it is now. On Thu, Sep 18, 2014 at 10:09 AM, Illia

Re: [openstack-dev] [Neutron] tox -e pep8 fails at requirements.txt

2014-08-01 Thread Ajaya Agrawal
Hi, It seems like pypi was not reachable at that moment. You could be behind a proxy. You can try at a later time. It should work. Cheers, Ajaya On Fri, Aug 1, 2014 at 12:29 PM, trinath.soman...@freescale.com trinath.soman...@freescale.com wrote: Hi – When I run tox to check pep8 on

Re: [openstack-dev] Mentor program?

2014-07-24 Thread Ajaya Agrawal
That is a very good suggestion. I started contributing to openstack three months back. IMO it is not that difficult to get started and there are many blogs which can help you get started. There are many low hanging fruits which could be fixed by newbies. The real problem comes when you are post

Re: [openstack-dev] [all] Juno setup

2014-06-20 Thread Ajaya Agrawal
Hi Yogesh, Juno is not released yet. The closest you can get is master. So clone devstack and run ./stack.sh. Thanks, Ajaya Cheers, Ajaya On Fri, Jun 20, 2014 at 12:38 PM, Yogesh Prasad yogesh.pra...@cloudbyte.com wrote: Hi All I want to create a juno setup. Please guide me through

Re: [openstack-dev] Recommended way of having a project admin

2014-05-29 Thread Ajaya Agrawal
is keystone v2 does not support RBAC policies and other services don't understand keystone v3. Cheers, Ajaya On Wed, May 28, 2014 at 6:28 PM, Ajaya Agrawal ajku@gmail.com wrote: Hi All, We want to introduce a role of project admin in our cloud who can add users only in the project in which he

[openstack-dev] Recommended way of having a project admin

2014-05-28 Thread Ajaya Agrawal
Hi All, We want to introduce a role of project admin in our cloud who can add users only in the project in which he is an admin. AFAIK RBAC policies are not supported by keystone v2 api. So I suppose we will need to use keystone v3 to support the concept of project admin. But I hear things like