Re: [openstack-dev] Avoiding regression in project governance

2015-03-10 Thread Gabriel Hurley
Blocking the acceptance of new projects seems punitive and against the spirit of the big tent. Classification (tagging) can be done at any point, and is hardly fixed in stone. You can refine tags as needed. To put it harshly: it is a failure of both leadership and process to have stripped out

[Yahoo-eng-team] [Bug 1422891] [NEW] Secret key generation test should use less permissive chmod

2015-02-17 Thread Gabriel Hurley
thing and is better principle. Also it makes Bandit happy, and it's one less thing to flag in the future. ** Affects: horizon Importance: Low Assignee: Gabriel Hurley (gabriel-hurley) Status: In Progress ** Changed in: horizon Status: New = Confirmed ** Changed in: horizon

Re: [openstack-dev] [Horizon] the future of angularjs development in Horizon

2014-11-14 Thread Gabriel Hurley
As the former Horizon PTL, I have a great respect for the importance of the contributions the distro maintainers/developers make to Horizon and OpenStack as a whole. From how many bugs the distros manage to find, to their diligence in vetting the software that we as Horizon developers provide,

Re: [openstack-dev] [Horizon] the future of angularjs development in Horizon

2014-11-12 Thread Gabriel Hurley
Two things of note, having been doing heavy javascript development over the past couple years: 1) NPM actually resolves conflicts in a dependency tree. Unlike Python, it can ensure that if different packages declare conflicting versions, each one gets the version it requested. And conflicting

Re: [openstack-dev] [Horizon] Cookie collision between Horizon Stacktach

2014-10-31 Thread Gabriel Hurley
I have no familiarity with stacktach, but it sounds like it's trampling data on the sessionid cookie (even if it's also setting a beaker.session.stacktach cookie). Your options include running the two at different domains/subdomains (and specifying the subdomain as the cookie domain; that

Re: [openstack-dev] [Horizon] [Devstack]

2014-10-24 Thread Gabriel Hurley
SQLite doesn't introduce any additional dependencies, memcached requires installation of memcached (admittedly it's not hard on most distros, but it *is* yet another step) and in most cases the installation of another python module to interface with it. Memcached might be a good choice for

Re: [openstack-dev] [Horizon] [Devstack]

2014-10-23 Thread Gabriel Hurley
All in all this is been a long time coming. The cookie-based option was useful as a batteries-included, simplest-case scenario. Moving to SQLite is a reasonable second choice since most systems Horizon might be deployed on support sqlite out of the box. I would make a couple notes: 1)

[Yahoo-eng-team] [Bug 1384409] [NEW] UnicodeDecodeError when trying to create a user with DEBUG logging turned on

2014-10-22 Thread Gabriel Hurley
Public bug reported: The mask_password function of openstack.common.log and/or openstack.common.strutils (depending on OpenStack version) seems to choke on unicode characters. This actually prevents proper function when logging level is set to DEBUG. When submitting a POST request to create a

Re: [openstack-dev] [Keystone][Horizon] CORS and Federation

2014-09-16 Thread Gabriel Hurley
This is generally the right plan. The hard parts are in getting people to deploy it correctly and securely, and handling fallback cases for lack of browser support, etc. What we really don't want to do is to encourage people to set Access-Control-Allow-Origin: * type headers or other such

Re: [openstack-dev] [Designate][Horizon][Tempest][DevStack] Supporting code for incubated projects

2014-09-09 Thread Gabriel Hurley
I would also like to add that incubated != integrated. There's no telling how long a project may stay in incubation or how many changes it may undergo before it's deemed ready (see David's reasoning around client changes during RC's). While the Horizon team has always made every effort to work

Re: [Openstack] SWIFT AND HORIZON

2014-08-19 Thread Gabriel Hurley
While you *can* hack things around to make it work, the answer is that out-of-the-box it’s not supported. In the Horizon Quickstart guide it lists “Nova (compute, api, scheduler, and network), Glance, and Keystone” as the minimum required services. All others are optionally supported from

Re: [Openstack] SWIFT AND HORIZON

2014-08-19 Thread Gabriel Hurley
”. - Gabriel From: Brent Troge [mailto:brenttroge2...@gmail.com] Sent: Tuesday, August 19, 2014 12:45 PM To: Gabriel Hurley Cc: openstack@lists.openstack.org Subject: Re: [Openstack] SWIFT AND HORIZON Right, I saw the minimum requirement list, but figured that was outdated, due

Re: [Openstack] Why Horizon use Django instead Flask or other?

2014-08-18 Thread Gabriel Hurley
At the point at which the Horizon project first began (during the Cactus, I believe) the handful of folks working on it wanted a Python web framework that would get them up and running as fast as possible. That meant lots of built-in, “batteries-included” features so they didn’t need to

Re: [openstack-dev] Kerberization of Horizon (kerbhorizon?)

2014-06-04 Thread Gabriel Hurley
I've implemented Kerberos (via Apache) + Django once before, and yes, taking this as pseudo-code you're on the right track. Obviously the devil is in the details and you'll work out the particulars as you go. The most important bit (obviously) is just making absolutely sure your REMOTE_USER

Re: [openstack-dev] Kerberization of Horizon (kerbhorizon?)

2014-06-04 Thread Gabriel Hurley
[mailto:ayo...@redhat.com] Sent: Wednesday, June 04, 2014 12:43 PM To: openstack-dev@lists.openstack.org Subject: Re: [openstack-dev] Kerberization of Horizon (kerbhorizon?) On 06/04/2014 03:10 PM, Gabriel Hurley wrote: I've implemented Kerberos (via Apache) + Django once before, and yes, taking

Re: [openstack-dev] [horizon][infra] Plan for the splitting of Horizon into two repositories

2014-05-29 Thread Gabriel Hurley
Forgive me if I'm misunderstanding, but those all look like repositories that are strictly tracking upstreams. They're not maintained by the Horizon/OpenStack developers whatsoever. Is this intentional/necessary? - Gabriel -Original Message- From: Anita Kuno

Re: [openstack-dev] [horizon][infra] Plan for the splitting of Horizon into two repositories

2014-05-28 Thread Gabriel Hurley
It's sort of a silly point, but as someone who would likely consume the split-off package outside of the OpenStack context, please give it a proper name instead of django_horizon. The module only works in Django, the name adds both clutter and confusion, and it's against the Django community's

Re: [openstack-dev] [Horizon] RFC - Suggestion for switching from Less to Sass (Bootstrap 3 Sass support)

2014-02-05 Thread Gabriel Hurley
I would imagine the downstream distros won't have the same problems with Ruby as they did with Node.js from a dependency standpoint, though it still doesn't jive with the community's all-Python bias. My real concern, though, is anyone who may have extended the Horizon stylesheets using the

Re: [openstack-dev] [keystone][nova] Re: Hierarchicical Multitenancy Discussion

2014-02-04 Thread Gabriel Hurley
Yes this is one approach if keystone really wants to extend domains to work this way, but I think this is more complex than just using nested projects. Having domains contain domains containing projects is less intuitive than projects all the way down. It's worth mentioning that at the

Re: [openstack-dev] Can somebody help me to determine if an URL validation in python-glanceclient horizon projects is safe

2014-01-20 Thread Gabriel Hurley
Adding this to glanceclient is probably acceptable since the worst abuse of it would be to disrupt a user's local machine until they terminated the process, but adding this to Horizon is a no-go. Django removed the verify_exists option from URLField in Django 1.5 for very good reasons. Here's

Re: [Openstack] [Horizon and Nova] Inclusion of exception message to UI error

2014-01-13 Thread Gabriel Hurley
The reason the architecture is the way it is in Horizon right now is because historically most projects have sent messages that are either raw tracebacks (not appropriate for a popup error display at all), extremely detailed/technical reports containing multiple resource IDs that are not

Re: [openstack-dev] Re-using Horizon bits in OpenDaylight

2014-01-10 Thread Gabriel Hurley
I've also used the core Horizon bits for dashboards other than the OpenStack dashboard. I can't speak for any current bugs you may run into, but by-and-large the ability to create arbitrary dashboards, tables, workflows, etc. to interact with RESTful APIs works perfectly without the OpenStack

Re: [openstack-dev] [keystone] Changes to keystone-core!

2014-01-07 Thread Gabriel Hurley
Martinelli; Jamie Lennox; David Stanek; Andy Smith; Gabriel Hurley; Joe Heck; Devin Carlen Subject: [keystone] Changes to keystone-core! Hello everyone! We've been talking this for a long while, and we finally have a bunch of changes to make to keystone-core all at once. A few people have moved

Re: [openstack-dev] Horizon and Tuskar-UI codebase merge

2013-12-18 Thread Gabriel Hurley
From my experience, directly adding incubated projects to the main Horizon codebase prior to graduation has been fraught with peril. That said, the closer they can be together prior to the graduation merge, the better. I like the idea of these types of projects being under the OpenStack

[openstack-dev] Project-Scoped Service Catalog Entries

2013-12-16 Thread Gabriel Hurley
I've run into a use case that doesn't currently seem to have a great solution: Let's say my users want to use a top-of-stack OpenStack project such as Heat, Trove, etc. that I don't currently support in my deployment. There's absolutely no reason these services can't live happily in a VM

Re: [openstack-dev] [Horizon] Nominations to Horizon Core

2013-12-10 Thread Gabriel Hurley
+1 on Tatiana Mazur being added to Core. I'm also okay with cleaning out the Core list. I considered doing it myself last cycle since none of those folks are involved anymore, but figured I'd leave them as a posthumous honor. ;-) I think now's a good time to trim it down. Glad I didn't make

[openstack-dev] [Horizon] Abdicating the PTL Position

2013-10-31 Thread Gabriel Hurley
who can devote their full attention and energy to it. I will still be around and engaged (though not in Hong Kong). I'll catch you all next time around. All the best, - Gabriel Hurley ___ OpenStack-dev mailing list OpenStack-dev

Re: [openstack-dev] [Horizon] Abdicating the PTL Position

2013-10-31 Thread Gabriel Hurley
Karlson endre.karl...@gmail.commailto:endre.karl...@gmail.com Hey, I'm just curious. You quitting the PTL position to focus on Nebula efforts or ? 2013/10/31 Gabriel Hurley gabriel.hur...@nebula.commailto:gabriel.hur...@nebula.com Hi all, It saddens me to say that for a mix of reasons I have

Re: [openstack-dev] Does openstack have a notification system that will let us know when a server changes state ?

2013-10-18 Thread Gabriel Hurley
The answer is sort of. Most projects (including Nova) publish to an RPC notifications channel (e.g. in rabbitMQ or whichever you use in your deployment). This is how Ceilometer gets some of its data. There is common code for connecting to the notification queue in Oslo (the rpc and notifier

Re: [openstack-dev] [horizon] django-openstack-auth with Django 1.6

2013-10-17 Thread Gabriel Hurley
FWIW, Django 1.6 is not officially supported with Horizon yet. That aside, pickle is generally a security risk (it's equivalent to eval), hence the move away from it in Django. We'll want to see what we can do about making things properly serializable with the JSON serializer in Icehouse. It

[openstack-dev] TC Candidacy

2013-10-07 Thread Gabriel Hurley
Board and the TC, coordination within OpenStack, and more, but I won't go into those now. Hopefully I've proven myself thus far to be a considered and well-reasoned member of the TC. It would be my honor to consider doing the good work of OpenStack. Thank you, - Gabriel Hurley

Re: [Openstack] Fwd: [Full-disclosure] [Django] Cookie-based session storage session invalidation issue

2013-10-07 Thread Gabriel Hurley
Yes and No. They will appear to be logged in to Horizon, but the Keystone token will be invalid and thus they will be unable to obtain any data or perform any actions via the APIs. Since all of Horizon's data comes from APIs, this is a very limited problem space. There are reasonably

Re: [openstack-dev] core reviewers needed

2013-10-03 Thread Gabriel Hurley
Hi Kaiwai, First, the bad news: 1. The Horizon release candidate has already been cut, so for Havana we're only considering release-blocking bugs at this point (and even those have to meet a high bar to warrant a new release candidate). The feature freeze deadline was almost a month ago. 2.

[Yahoo-eng-team] [Bug 1233716] Re: Why Traditional Chinese are miss in Havana today?

2013-10-01 Thread Gabriel Hurley
Looks like you answered your own question. The translations that were provided to Horizon by the translation team were merged just in the last few hours. If yours weren't included, that's probably why. ** Changed in: horizon Status: New = Invalid -- You received this bug notification

[Yahoo-eng-team] [Bug 1231887] Re: Create a volume from image fails

2013-09-30 Thread Gabriel Hurley
: (unassigned) = Gabriel Hurley (gabriel-hurley) -- You received this bug notification because you are a member of Yahoo! Engineering Team, which is subscribed to OpenStack Dashboard (Horizon). https://bugs.launchpad.net/bugs/1231887 Title: Create a volume from image fails Status in Cinder

[Yahoo-eng-team] [Bug 1223875] Re: boot from image (creates as a new volume) does not work

2013-09-30 Thread Gabriel Hurley
*** This bug is a duplicate of bug 1231887 *** https://bugs.launchpad.net/bugs/1231887 ** Changed in: horizon Milestone: havana-rc1 = None ** This bug has been marked a duplicate of bug 1231887 Create a volume from image fails -- You received this bug notification because you are a

[Yahoo-eng-team] [Bug 1217133] Re: LESS compile error

2013-09-30 Thread Gabriel Hurley
On a clean environment with current master I cannot reproduce this error. ** Changed in: horizon Importance: Medium = Undecided ** Changed in: horizon Status: Triaged = Invalid ** Changed in: horizon Milestone: havana-rc1 = None -- You received this bug notification because you

Re: [openstack-dev] [Tuskar] [UI] Introducing POC Wireframes

2013-09-25 Thread Gabriel Hurley
more. If you still have any concerns, let me know I will try to be more explicit. -- Jarda On 2013/25/09 02:03, Gabriel Hurley wrote: Really digging a lot of that. Particularly the inter-rack/inter-node communication stuff around page 36ish or so. I’m concerned about using the term “Class”. Maybe

Re: [Openstack] User Survey / Reminder

2013-09-25 Thread Gabriel Hurley
I have a question on this: I logged in to take the user survey, and it still had all of my answers from the last user survey filled in. If this is intentional, it's very strange behavior. I don't feel that I should be overwriting my previous answers. That feels oddly invalidating. It also

Re: [openstack-dev] [Horizon] Ceilometer Alarm management page

2013-09-24 Thread Gabriel Hurley
3. There is a thought about watching correlation of multiple alarm histories in one Chart (either Alarm Histories, or the real statistics the Alarm is defined by). Do you think it will be needed? Any real life examples you have in mind? I think the first use case is to debug combined

Re: [openstack-dev] [Tuskar] [UI] Introducing POC Wireframes

2013-09-24 Thread Gabriel Hurley
Really digging a lot of that. Particularly the inter-rack/inter-node communication stuff around page 36ish or so. I’m concerned about using the term “Class”. Maybe it’s just me as a developer, but I couldn’t think of a more generic, less inherently meaningful word there. I read through it and

[openstack-dev] [Horizon] PTL Candidacy

2013-09-23 Thread Gabriel Hurley
I hereby declare my candidacy for the Horizon PTL position. My current qualifications: * PTL for the Grizzly and Havana cycles. * Core developer on Horizon since Essex, and Keystone core since Folsom. * Primary architect of the existing Horizon framework. * Core developer for the Django

Re: [openstack-dev] [Horizon] Bootstrap 3 update and problems with lesscpy

2013-09-18 Thread Gabriel Hurley
I'm also strongly against reverting the move to lesscpy. As David said, that change was highly-requested by the downstream distros and other folks packaging Horizon in various ways. Since there's no evidence that lesscpy does not intend to support bootstrap 3 in a reasonable timeframe,

[Bug 1210253] Re: With Havana 2 installed, Launching horizon UI results in the error NameError: name 'Dashboard' is not defined

2013-09-17 Thread Gabriel Hurley
This was not a bug in Horizon trunk. ** Changed in: horizon Status: Triaged = Invalid -- You received this bug notification because you are a member of Ubuntu Server Team, which is subscribed to horizon in Ubuntu. https://bugs.launchpad.net/bugs/1210253 Title: With Havana 2 installed,

[Bug 1181150] Re: Dashboard GUI down (HTTP 500 error) on upgrade from folsom to grizzly

2013-09-17 Thread Gabriel Hurley
Closing this out due to inactivity and proper fix suggestions in the comments. ** Changed in: horizon Status: Triaged = Invalid -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1181150 Title:

[Bug 1210253] Re: With Havana 2 installed, Launching horizon UI results in the error NameError: name 'Dashboard' is not defined

2013-09-17 Thread Gabriel Hurley
This was not a bug in Horizon trunk. ** Changed in: horizon Status: Triaged = Invalid -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1210253 Title: With Havana 2 installed, Launching horizon

[Yahoo-eng-team] [Bug 1210253] Re: With Havana 2 installed, Launching horizon UI results in the error NameError: name 'Dashboard' is not defined

2013-09-17 Thread Gabriel Hurley
This was not a bug in Horizon trunk. ** Changed in: horizon Status: Triaged = Invalid -- You received this bug notification because you are a member of Yahoo! Engineering Team, which is subscribed to OpenStack Dashboard (Horizon). https://bugs.launchpad.net/bugs/1210253 Title: With

[Yahoo-eng-team] [Bug 1181150] Re: Dashboard GUI down (HTTP 500 error) on upgrade from folsom to grizzly

2013-09-17 Thread Gabriel Hurley
Closing this out due to inactivity and proper fix suggestions in the comments. ** Changed in: horizon Status: Triaged = Invalid -- You received this bug notification because you are a member of Yahoo! Engineering Team, which is subscribed to OpenStack Dashboard (Horizon).

[Yahoo-eng-team] [Bug 1218462] Re: Logging output shown when running tests

2013-09-17 Thread Gabriel Hurley
Closing out since this has been fixed to the best of my knowledge ** Changed in: horizon Status: Confirmed = Invalid -- You received this bug notification because you are a member of Yahoo! Engineering Team, which is subscribed to OpenStack Dashboard (Horizon).

[Yahoo-eng-team] [Bug 1217218] Re: dashboard can't modify quota_snapshots in cinder

2013-09-17 Thread Gabriel Hurley
Correct, the quota management changes that took place to support this have been an extensive and ongoing set of improvements. Backporting them is not practical. ** Changed in: horizon Status: New = Won't Fix -- You received this bug notification because you are a member of Yahoo!

[Yahoo-eng-team] [Bug 1160125] Re: The Load balancer memeber still active after deleted the instance of laod balancer member.

2013-09-03 Thread Gabriel Hurley
I believe that change in Neutron fixed this, so no change is needed in Horizon. ** Changed in: horizon Importance: Medium = Undecided ** Changed in: horizon Status: Confirmed = Invalid ** Changed in: horizon Milestone: havana-3 = None ** Changed in: horizon Assignee: Tatiana

Re: [openstack-dev] [keystone][horizon]Backend filtering in Keystone

2013-08-28 Thread Gabriel Hurley
28, 2013 1:58 AM To: Gabriel Hurley Cc: OpenStack Development Mailing List; Dolph Mathews; Adam Young Subject: [keystone][horizon]Backend filtering in Keystone Hi Gabriel, Following up on our discussions on filtering and pagination, here's where we stand: 1) We have a patch ready to go into H

Re: [openstack-dev] [Horizon] Modal form without redirect

2013-08-28 Thread Gabriel Hurley
If you look at the code in the post()[1] method of the base workflow view you'll note that a response to a successful workflow POST is always a redirect[2] (caveat for when it's specifically adding data back to a field, which isn't relevant here). The reason for this is that in general when

Re: [openstack-dev] [keystone] Pagination

2013-08-13 Thread Gabriel Hurley
I have been one of the earliest, loudest, and most consistent PITA's about pagination, so I probably oughta speak up. I would like to state three facts: 1. Marker + limit (e.g. forward-only) pagination is horrific for building a user interface. 2. Pagination doesn't scale. 3. OpenStack's APIs

Re: [openstack-dev] [Horizon] how to add unmerged dependency to test-requirements

2013-08-01 Thread Gabriel Hurley
The short answer is: you can test and develop it locally but you cannot push it upstream until you get the dependencies released. As much as that may be frustrating, it prevents an enormous amount of pain which OpenStack has gone through in the past when things fail to be released as expected.

[Yahoo-eng-team] [Bug 1194449] Re: TypeError at /project/networks/

2013-07-30 Thread Gabriel Hurley
I can't reproduce this without intentionally misconfiguring things or shoving hacks in. Please re-open if you can provide a solid repro. Thanks for the report! ** Changed in: horizon Status: New = Invalid -- You received this bug notification because you are a member of Yahoo!

[Yahoo-eng-team] [Bug 1188532] Re: image download process won't terminate after deleting image from dashboard

2013-07-30 Thread Gabriel Hurley
From the description I'm 95% certain this is an issue on the glance end of things. If I'm wrong, please re-open it for Horizon. ** Also affects: glance Importance: Undecided Status: New ** Changed in: horizon Status: New = Invalid -- You received this bug notification because

Re: [openstack-dev] [Heat] Long-term, how do we make heat image/flavor name agnostic?

2013-07-18 Thread Gabriel Hurley
Generally spot-on with what Adrian said, but I have one question from that email: Mappings is one of the high level concepts in CFN that I think can be completely eliminated with auto-discovery. What do you mean by this? What kind of autodiscovery, and where? I'm all for eliminating mappings

[openstack-dev] [Heat] Long-term, how do we make heat image/flavor name agnostic?

2013-07-17 Thread Gabriel Hurley
I spent a bunch of time working with and understanding Heat in H2, and I find myself with one overarching question which I wonder if anyone's thought about or even answered already... At present, the CloudFormation template format is the first-class means of doing things in Heat.

Re: [openstack-dev] [Nova][Horizon] Is there precedent for validating user input on data types to APIs?

2013-07-14 Thread Gabriel Hurley
I responded on the ticket as well, but here’s my take: An error like this should absolutely be caught before it raises a database error. A useful, human-friendly error message should be returned via the API. Any uncaught exception is a bug. On the other side of the equation, anything using the

Re: [openstack-dev] Ceilometer visualization in Horizon

2013-07-09 Thread Gabriel Hurley
Brooklyn Chen, Julie Pichon and others have already been putting in a lot of effort in this area. I suggest you check out https://blueprints.launchpad.net/horizon/+spec/ceilometer and sync up with them if you're interested in proceeding. - Gabriel -Original Message- From:

Re: [Openstack] [Horizon] UX Discussions - proposal for better organization, rising activity and awareness

2013-06-17 Thread Gabriel Hurley
I've been hoping some of the more design-oriented folks would weigh in on this issue, but that hasn't particularly happened... My concern is that as engineers we're all comfortable with GitHub, but that it will end up being an impediment or discouragement for people who fall more on the

[Bug 1181155] Re: Dashboard doesn't list floating IP associated with VM instance

2013-05-21 Thread Gabriel Hurley
Horizon displays the data provided by Nova's API, so I strongly suspect this may be a problem with what Nova is returning. Can you enable debug logging for the client (or use python-novaclient directly) to do a server list command and provide the returned data? ** Changed in: horizon

[Bug 1181150] Re: Dashboard GUI down (HTTP 500 error) on upgrade from folsom to grizzly

2013-05-21 Thread Gabriel Hurley
** Changed in: horizon Status: New = Triaged -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1181150 Title: Dashboard GUI down (HTTP 500 error) on upgrade from folsom to grizzly To manage

[Yahoo-eng-team] [Bug 1179846] Re: Wrong keystone port in admin-openrc.sh

2013-05-14 Thread Gabriel Hurley
, or it could be missing altogether (I believe the client falls back to the auth URL if it fails to get the necessary data from the service catalog). ** Changed in: horizon Status: New = Invalid ** Changed in: horizon Assignee: (unassigned) = Gabriel Hurley (gabriel-hurley) -- You received

[Yahoo-eng-team] [Bug 1177241] Re: Cannot assign multiple tenants to a user when creating a user

2013-05-14 Thread Gabriel Hurley
of allow project membership assignment during user creation and we can triage it as a significant feature addition for a future release. There's no bug here, however. ** Changed in: horizon Status: New = Won't Fix ** Changed in: horizon Assignee: (unassigned) = Gabriel Hurley (gabriel

Re: [Openstack] API version in Grizzly

2013-05-10 Thread Gabriel Hurley
7:41 AM To: Gabriel Hurley Cc: Devendra Gupta; openstack@lists.launchpad.net Subject: Re: [Openstack] API version in Grizzly On Wed, May 8, 2013 at 6:57 PM, Gabriel Hurley gabriel.hur...@nebula.commailto:gabriel.hur...@nebula.com wrote: In Grizzly I can send Keystone requests to either http

Re: [Openstack] API version in Grizzly

2013-05-10 Thread Gabriel Hurley
When you say Identity v3.0 development is going on side-by-side so I think if I have Grizzly setup with Identity v2.0 then it'll be upgraded to Identity v3.0 with Grizzly when new version is available in updates. Though I might have option to upgrade it or not? OR Identity v3.0 will be

Re: [Openstack] horizon nova endpoint usage question

2013-05-09 Thread Gabriel Hurley
If that config option is not being respected for the Nova API calls that's a bug. Please file a ticket on Launchpad so we can track fixing it. Thanks! - Gabriel From: Openstack [mailto:openstack-bounces+gabriel.hurley=nebula@lists.launchpad.net] On Behalf Of Wyllys Ingersoll

Re: [Openstack] Horizon - Internal Server Error when hitting /nova/instances_and_volumes/

2013-05-08 Thread Gabriel Hurley
If you have Instances Volumes then you're not running Grizzly Horizon. Those two were split apart in Grizzly. Prior to Grizzly the Volume Service was required. In Grizzly Horizon it's not. As such you have two choices: run Cinder like you are but don't use it, or upgrade so you're actually

Re: [Openstack] horizon dashboard error 500

2013-05-08 Thread Gabriel Hurley
There's something very wrong is false doesn't raise an exception. In Python False is a Boolean value, false is a variable name which should be undefined. That aside, you should set COMPRESS_OFFLINE=False in your openstack_dashboard/local/local_settings.py file. - Gabriel -Original

Re: [Openstack] API version in Grizzly

2013-05-08 Thread Gabriel Hurley
Identity service has both a v2.0 and v3 side-by-side. There isn't necessarily a default except for the fact that most people's Service Catalogs still say v2.0 in them because they're hard-coded that way. In the future I believe the api.openstack.org site would gain a lot by storing

Re: [Openstack] API version in Grizzly

2013-05-08 Thread Gabriel Hurley
, - Gabriel From: annegen...@justwriteclick.com [mailto:annegen...@justwriteclick.com] On Behalf Of Anne Gentle Sent: Wednesday, May 08, 2013 4:38 PM To: Gabriel Hurley Cc: Devendra Gupta; openstack@lists.launchpad.net Subject: Re: [Openstack] API version in Grizzly On Wed, May 8, 2013 at 4:54 PM

Re: [Openstack] Related Projects

2013-05-03 Thread Gabriel Hurley
Do you have plans to add comparison matrices, user counts, github stats, categories (aside from arbitrary tags), etc.? No offense meant to stackmeat, but the OpenComparison project is way ahead in terms of features that make it easy for consumers to make educated choices about the

Re: [Openstack] Related Projects

2013-05-03 Thread Gabriel Hurley
+1. And I'd add that we need to do everything in our collective power to treat OpenStack as a coherent whole, not as a loosely federated set of projects that are released together. We are still a young community, but doing things to build supporting tools, expose commonalities and overlaps,

Re: [Openstack] Related Projects

2013-05-02 Thread Gabriel Hurley
I'll throw it out there again: We really ought to deploy an OpenComparison site (http://opencomparison.org/) for OpenStack. It's awesome, and does massive amounts of goodness for managed information and discovery. - Gabriel -Original Message- From: Openstack [mailto:openstack-

Re: [Openstack] Grizzly Dashboard Quota Problem...

2013-03-18 Thread Gabriel Hurley
We landed a fix in Horizon yesterday ( tracked in https://bugs.launchpad.net/horizon/+bug/1155876 ) that addresses this problem for the Grizzly RC. Nova should have followed a proper deprecation path here and accepted the parameters in this release and reject them (if they really must) in

[Bug 1156742] Re: Horizon layout problem on IE 10

2013-03-18 Thread Gabriel Hurley
I have tested the latest master against IE10 and it displays exactly as expected (see screenshot). I'm targeting this against the Ubuntu distro to see if they have any input on what's amiss in their repo. ** Also affects: horizon (Ubuntu) Importance: Undecided Status: New ** Changed

[Bug 1156742] Re: Horizon layout problem on IE 10

2013-03-18 Thread Gabriel Hurley
** Attachment added: Screenshot of latest master in IE10 https://bugs.launchpad.net/horizon/+bug/1156742/+attachment/3582323/+files/ie10.png -- You received this bug notification because you are a member of Ubuntu Server Team, which is subscribed to horizon in Ubuntu.

[Bug 1156742] Re: Horizon layout problem on IE 10

2013-03-18 Thread Gabriel Hurley
** Attachment added: Screenshot of latest master in IE10 https://bugs.launchpad.net/horizon/+bug/1156742/+attachment/3582323/+files/ie10.png -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1156742

[Bug 1156742] Re: Horizon layout problem on IE 10

2013-03-18 Thread Gabriel Hurley
I have tested the latest master against IE10 and it displays exactly as expected (see screenshot). I'm targeting this against the Ubuntu distro to see if they have any input on what's amiss in their repo. ** Also affects: horizon (Ubuntu) Importance: Undecided Status: New ** Changed

[Yahoo-eng-team] [Bug 1156742] Re: Horizon layout problem on IE 10

2013-03-18 Thread Gabriel Hurley
I have tested the latest master against IE10 and it displays exactly as expected (see screenshot). I'm targeting this against the Ubuntu distro to see if they have any input on what's amiss in their repo. ** Also affects: horizon (Ubuntu) Importance: Undecided Status: New ** Changed

[Openstack] Horizon PTL Candidacy

2013-03-05 Thread Gabriel Hurley
Hi folks! I'm nominating myself for Horizon PTL for another term. I want to continue fighting for cross-service integration/standardization, better APIs for everyone, and the best possible user interface to introduce people to what OpenStack can do. Quick recap of my qualifications: current

[Bug 1130610] Re: SyntaxError: invalid increment operand when parsing JavaScript using Firefox

2013-03-05 Thread Gabriel Hurley
This bug is caused by an outdated version of django compressor in the ubuntu apt repo. It should not be fixed in Horizon master. ** Also affects: horizon (Ubuntu) Importance: Undecided Status: New ** Changed in: horizon Importance: High = Undecided ** Changed in: horizon

[Bug 1130610] Re: SyntaxError: invalid increment operand when parsing JavaScript using Firefox

2013-03-05 Thread Gabriel Hurley
This bug is caused by an outdated version of django compressor in the ubuntu apt repo. It should not be fixed in Horizon master. ** Also affects: horizon (Ubuntu) Importance: Undecided Status: New ** Changed in: horizon Importance: High = Undecided ** Changed in: horizon

[Yahoo-eng-team] [Bug 1130610] Re: SyntaxError: invalid increment operand when parsing JavaScript using Firefox

2013-03-05 Thread Gabriel Hurley
This bug is caused by an outdated version of django compressor in the ubuntu apt repo. It should not be fixed in Horizon master. ** Also affects: horizon (Ubuntu) Importance: Undecided Status: New ** Changed in: horizon Importance: High = Undecided ** Changed in: horizon

Re: [Openstack] Horizon Keystone Nova miscommunication

2013-02-17 Thread Gabriel Hurley
That particular endpoint not found log message is a red herring. It's been removed in keystoneclient trunk because it was logging an *expected* error. There isn't supposed to be a service catalog available at the point at which it logged that message, and it lead to confusion just like this.

[Yahoo-eng-team] [Bug 1095876] Re: Volume Quota calls going to Nova instead of Cinder

2013-02-09 Thread Gabriel Hurley
This was fixed in master, the bug report is for Folsom. ** Changed in: horizon Importance: High = Undecided ** Changed in: horizon Status: Confirmed = Invalid ** Changed in: horizon Milestone: grizzly-3 = None -- You received this bug notification because you are a member of

[Yahoo-eng-team] [Bug 1095876] Re: Volume Quota calls going to Nova instead of Cinder

2013-02-09 Thread Gabriel Hurley
This has been all fixed in Grizzly, but the scope involved in backporting all the patches that were necessary makes me disinclined to do so. It would require backporting all of the following to avoid rehashing the entire trail of issues that had to be resolved for this:

[Yahoo-eng-team] [Bug 1009880] Re: object name with slashes can not be listed

2013-02-09 Thread Gabriel Hurley
Superseded by this blueprint: https://blueprints.launchpad.net/horizon/+spec/swift-folder-prefix ** Changed in: horizon Importance: Wishlist = Undecided ** Changed in: horizon Status: Confirmed = Won't Fix ** Changed in: horizon Milestone: grizzly-3 = None -- You received this

Re: [Openstack] Horizon and open connections

2013-01-31 Thread Gabriel Hurley
Even though I don't experience this problem (and prefer nginx to apache), I can help diagnose: Connections ending up in CLOSE_WAIT means that the socket isn't being fully closed, which is controlled by the client lib (in this case python-keystoneclient) which uses httplib2 under the hood.

Re: [Openstack] Poll: H release cycle naming

2013-01-28 Thread Gabriel Hurley
Also, aren't the release names always *California* cities? Thereby Hillsboro, Oregon isn't a valid choice... - Gabriel -Original Message- From: openstack-bounces+gabriel.hurley=nebula@lists.launchpad.net [mailto:openstack-

Re: [Openstack] Poll: H release cycle naming

2013-01-28 Thread Gabriel Hurley
To: openstack@lists.launchpad.net Subject: Re: [Openstack] Poll: H release cycle naming Also, aren't the release names always *California* cities? Nope. =) http://wiki.openstack.org/ReleaseNaming At Your Service, -- Mark T. Voelker On 1/28/13 3:23 PM, Gabriel Hurley wrote: Also

Re: [Openstack] New to OpenStack - question Swift+Keystone Horizon

2013-01-16 Thread Gabriel Hurley
Horizon's list of required services includes Nova, Glance and Keystone. At present no work has been done to make it run with a Swift + Keystone (only) configuration. That said, it's not impossible. The easiest route would likely be to unregister all of the Nova and Glance-related panels in the

Re: [Openstack] Dashboard/horizon PRODUCTION bug

2013-01-10 Thread Gabriel Hurley
I haven't heard a report like this from anyone else. Looking at your patch it looks like you're having problems with the sub-module imports for some reason, which sounds to me like a Python problem. Is there anything unusual about your version of Python? Any unusual/duplicate packages on your

Re: [Openstack] OpenStack Dashboard + WebServer

2012-12-13 Thread Gabriel Hurley
The DevStack and Ubuntu configurations run with the Ubuntu distro's default version of Apache and modWSGI. Personally I'm also a big fan of NginX. Horizon, being a Django/WSGI-compliant application can run behind any webserver that supports the Python WSGI standard. - Gabriel

Re: [Openstack] Horizon - OfflineGenerationError

2012-12-13 Thread Gabriel Hurley
Have you tried doing what it said and running manage.py compress? (make sure you're in the proper Python environment/venv when running that command) That error indicates one of two things: 1. You have your settings set with COMPRESS_ENABLED = True and COMPRESS_OFFLINE = True but you

Re: [Openstack] Do we have any schema for keystone v3.0 request/responses

2012-12-06 Thread Gabriel Hurley
It sounds like you *could* start updating and submitting it, but with the knowledge that you’ll have to continue to tweak it just as the JSON spec is being tweaked during development. So your options are to maintain it as such or wait until it’s declared FINAL and then do the work later on but

[Bug 1079611] Re: Download Juju Environment Config gives wrong credentials

2012-12-04 Thread Gabriel Hurley
Probably valid for the ubuntu distro, but not for Horizon since this code doesn't exist in the main project. ** Changed in: horizon Status: New = Invalid -- You received this bug notification because you are a member of Ubuntu Server Team, which is subscribed to horizon in Ubuntu.

[Bug 1079611] Re: Download Juju Environment Config gives wrong credentials

2012-12-04 Thread Gabriel Hurley
Probably valid for the ubuntu distro, but not for Horizon since this code doesn't exist in the main project. ** Changed in: horizon Status: New = Invalid -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu.

  1   2   3   4   >