Re: [openstack-dev] [Openstack] Patching Horizon Code when installed using "apt-get install"

2013-06-25 Thread Lyle, David (Cloud Services)
It is not entirely clear to me what your desired behavior is, but I won't let that stop me from hazarding a guess. Horizon now supports keystone API versions 2.0 and 3. By default, if the keystoneclient that is installed supports v3, then that is what Horizon will use. However, you can specif

Re: [openstack-dev] [Openstack] Patching Horizon Code when installed using "apt-get install"

2013-06-25 Thread Rahul Sharma
Also when I revert back the patch, why does the UI keeps on giving the same error. Grizzly has support for both v2.0 and v3, so there could be something which I am missing while copying the files. Using devstack, I just have to copy the files to respective directories and it works, not sure about

Re: [openstack-dev] [Openstack] Patching Horizon Code when installed using "apt-get install"

2013-06-25 Thread Rahul Sharma
Hi Shake, As per the patch, it seems that they have added check for v2_0. def tenant_create(request, name, description=None, enabled=None, domain=None): manager = VERSIONS.get_project_manager(request, admin=True) *if VERSIONS.active < 3:* return manager.create(name, description, e

Re: [openstack-dev] [Openstack] Patching Horizon Code when installed using "apt-get install"

2013-06-25 Thread Shake Chen
the patch use keystone v3 , in grizzly horizon use keystone v2. On Tue, Jun 25, 2013 at 4:52 PM, Rahul Sharma wrote: > Hi All, > > I have setup multi-node openstack setup using grizzly release and ubuntu > 12.04 distribution. Since there is no support for individual user to change > his/her pass