[Bug 980930] Re: nova client does not respect regions for a subset of commands

2012-06-26 Thread Launchpad Bug Tracker
[Expired for python-novaclient (Ubuntu) because there has been no
activity for 60 days.]

** Changed in: python-novaclient (Ubuntu)
   Status: Incomplete = Expired

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to python-novaclient in Ubuntu.
https://bugs.launchpad.net/bugs/980930

Title:
  nova client does not respect regions for a subset of commands

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python-novaclient/+bug/980930/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 980930] Re: nova client does not respect regions for a subset of commands

2012-06-26 Thread Launchpad Bug Tracker
[Expired for python-novaclient (Ubuntu) because there has been no
activity for 60 days.]

** Changed in: python-novaclient (Ubuntu)
   Status: Incomplete = Expired

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/980930

Title:
  nova client does not respect regions for a subset of commands

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python-novaclient/+bug/980930/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 980930] Re: nova client does not respect regions for a subset of commands

2012-04-27 Thread James Page
** Changed in: nova (Ubuntu)
   Importance: Undecided = Medium

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to nova in Ubuntu.
https://bugs.launchpad.net/bugs/980930

Title:
  nova client does not respect regions for a subset of commands

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python-novaclient/+bug/980930/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 980930] Re: nova client does not respect regions for a subset of commands

2012-04-27 Thread James Page
** Package changed: nova (Ubuntu) = python-novaclient (Ubuntu)

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to python-novaclient in Ubuntu.
https://bugs.launchpad.net/bugs/980930

Title:
  nova client does not respect regions for a subset of commands

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python-novaclient/+bug/980930/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 980930] Re: nova client does not respect regions for a subset of commands

2012-04-27 Thread James Page
Hi Andrew

Please can you try using --os_region_name and see if that makes a
difference - I can't actually see where --region is a valid option.

Thanks

** Changed in: python-novaclient (Ubuntu)
   Status: New = Incomplete

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to python-novaclient in Ubuntu.
https://bugs.launchpad.net/bugs/980930

Title:
  nova client does not respect regions for a subset of commands

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python-novaclient/+bug/980930/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 980930] Re: nova client does not respect regions for a subset of commands

2012-04-27 Thread Andrew Glen-Young
@James:

It looks like the --help output doesn't list --region and lists
--os_region_name and --region_name instead. That said, my tests seem to
show that the --region option still works (for now).

Retesting:

$ for opt in region region_name os_region_name; do
  for region in doesnotexist regionOne regionTwo; do
  echo opt: ${opt}, region: ${region}
  nova --${opt} ${region} endpoints | \
  awk '$2 ~ /region/ { print $4 }' | sort -u
  done
  done

opt: region, region: doesnotexist
ERROR: 
opt: region, region: regionOne
regionOne
opt: region, region: regionTwo
regionOne

opt: region_name, region: doesnotexist
ERROR: 
opt: region_name, region: regionOne
regionOne
opt: region_name, region: regionTwo
regionOne

opt: os_region_name, region: doesnotexist
ERROR: 
opt: os_region_name, region: regionOne
regionOne
opt: os_region_name, region: regionTwo
regionOne

My results seem to be the same.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to python-novaclient in Ubuntu.
https://bugs.launchpad.net/bugs/980930

Title:
  nova client does not respect regions for a subset of commands

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python-novaclient/+bug/980930/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 980930] Re: nova client does not respect regions for a subset of commands

2012-04-27 Thread James Page
** Changed in: nova (Ubuntu)
   Importance: Undecided = Medium

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/980930

Title:
  nova client does not respect regions for a subset of commands

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python-novaclient/+bug/980930/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 980930] Re: nova client does not respect regions for a subset of commands

2012-04-27 Thread James Page
** Package changed: nova (Ubuntu) = python-novaclient (Ubuntu)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/980930

Title:
  nova client does not respect regions for a subset of commands

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python-novaclient/+bug/980930/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 980930] Re: nova client does not respect regions for a subset of commands

2012-04-27 Thread James Page
Hi Andrew

Please can you try using --os_region_name and see if that makes a
difference - I can't actually see where --region is a valid option.

Thanks

** Changed in: python-novaclient (Ubuntu)
   Status: New = Incomplete

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/980930

Title:
  nova client does not respect regions for a subset of commands

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python-novaclient/+bug/980930/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 980930] Re: nova client does not respect regions for a subset of commands

2012-04-27 Thread Andrew Glen-Young
@James:

It looks like the --help output doesn't list --region and lists
--os_region_name and --region_name instead. That said, my tests seem to
show that the --region option still works (for now).

Retesting:

$ for opt in region region_name os_region_name; do
  for region in doesnotexist regionOne regionTwo; do
  echo opt: ${opt}, region: ${region}
  nova --${opt} ${region} endpoints | \
  awk '$2 ~ /region/ { print $4 }' | sort -u
  done
  done

opt: region, region: doesnotexist
ERROR: 
opt: region, region: regionOne
regionOne
opt: region, region: regionTwo
regionOne

opt: region_name, region: doesnotexist
ERROR: 
opt: region_name, region: regionOne
regionOne
opt: region_name, region: regionTwo
regionOne

opt: os_region_name, region: doesnotexist
ERROR: 
opt: os_region_name, region: regionOne
regionOne
opt: os_region_name, region: regionTwo
regionOne

My results seem to be the same.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/980930

Title:
  nova client does not respect regions for a subset of commands

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python-novaclient/+bug/980930/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 980930] Re: nova client does not respect regions

2012-04-13 Thread Andrew Glen-Young
A little more clarification:

When setting NOVACLIENT_DEBUG in my shell's environment I can confirm
that Keystone returns the full catalog for all regions to the nova
client. Assuming this is the correct behavior for Keystone, then this is
a client-side filtering bug.

** Tags added: canonistack

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to nova in Ubuntu.
https://bugs.launchpad.net/bugs/980930

Title:
  nova client does not respect regions

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nova/+bug/980930/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 980930] Re: nova client does not respect regions

2012-04-13 Thread Andrew Glen-Young
Further testing shows that nova list commands respect --region
correctly. So this may only affect a subset of commands. I've updated
the bug description to reflect this.

** Summary changed:

- nova client does not respect regions
+ nova client does not respect regions for a subset of commands

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to nova in Ubuntu.
https://bugs.launchpad.net/bugs/980930

Title:
  nova client does not respect regions for a subset of commands

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nova/+bug/980930/+subscriptions

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 980930] Re: nova client does not respect regions

2012-04-13 Thread Andrew Glen-Young
A little more clarification:

When setting NOVACLIENT_DEBUG in my shell's environment I can confirm
that Keystone returns the full catalog for all regions to the nova
client. Assuming this is the correct behavior for Keystone, then this is
a client-side filtering bug.

** Tags added: canonistack

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/980930

Title:
  nova client does not respect regions

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nova/+bug/980930/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 980930] Re: nova client does not respect regions

2012-04-13 Thread Andrew Glen-Young
Further testing shows that nova list commands respect --region
correctly. So this may only affect a subset of commands. I've updated
the bug description to reflect this.

** Summary changed:

- nova client does not respect regions
+ nova client does not respect regions for a subset of commands

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/980930

Title:
  nova client does not respect regions for a subset of commands

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nova/+bug/980930/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs