Re: [Openstack] [ironic]Failed to boot ironic instance

2014-06-27 Thread Kai Brennenstuhl
Hi Chen, I think I had exactly the same problem like you [1]. My problem was that the dnsmasq process of neutron did not assign an ip to the nested baremetal instance. You can check with tcpdump if there are DHCP Boot Requests and if they are replied. I have not solved the issue but did a workarou

Re: [Openstack] [openstack][nova] Compute node update interval

2014-06-27 Thread Kai Brennenstuhl
Hi Steve, thanks for your response. I set report_inteval = 20 but still one minute between the updates of the available resources of my compute nodes (or at least. in this interval they are written to the database). n-cpu.log shows; 2014-06-27 06:59:21.051 DEBUG nova.openstack.common.loopingcall

[Openstack] [OpenStack] [nova] Is there any method to record the operation of a nova user

2014-06-27 Thread yangmin zhu
Hi all, I want to record a user's operation for later audit purpose. For example, A user may start/reboot/shutdown a VM using nova command from terminal or using the dashboard from browser. How can I record this action and it's result to a log file(or some other database) for later check? And I al

Re: [Openstack] icehouse cinder on multiple nodes problem

2014-06-27 Thread Anatoly Oreshkin
According to your advice I've set up in cinder.conf my_ip=10.76.254.222 other parameters you mentioned were already specified as follows: iscsi_ip_address=10.76.254.222 iscsi_target_prefix=iqn.2010-10.org.openstack: glance_host=10.76.254.220 glance_api_servers=$glance_host:$glance_port rabbit_h

[Openstack] Create_member in LBaaS pool via python API

2014-06-27 Thread BrianCarroll
Hi All, A newbie question here but I can't find the answer in the API documentation or maybe I'm not reading it correctly :-) I'm trying to add an existing server instance to an existing active LBaaS pool in icehouse. This is my code import neutronclient.v2_0.cleint as ntclient neutron = ntclie

Re: [Openstack] Issue with Security Groups

2014-06-27 Thread sylecn
On Thu, Jun 26, 2014 at 9:37 AM, Muralidhar Balcha wrote: > > Hi, > I am using Openstack havana and I am using default security group with > my own set of new rules added to the security group to enable ssh into > instances. I am noticing that occasionally nova drops those > corresponding rules fr

Re: [Openstack] [OpenStack] [nova] Is there any method to record the operation of a nova user

2014-06-27 Thread sylecn
On Fri, Jun 27, 2014 at 5:03 PM, yangmin zhu wrote: > Hi all, > I want to record a user's operation for later audit purpose. For > example, A user may start/reboot/shutdown a VM using nova command from > terminal or using the dashboard from browser. > > How can I record this action and it's resul

Re: [Openstack] [OpenStack] [nova] Is there any method to record the operation of a nova user

2014-06-27 Thread sylecn
On Fri, Jun 27, 2014 at 7:32 PM, sylecn wrote: > > On Fri, Jun 27, 2014 at 5:03 PM, yangmin zhu wrote: > >> Hi all, >> I want to record a user's operation for later audit purpose. For >> example, A user may start/reboot/shutdown a VM using nova command from >> terminal or using the dashboard fro

Re: [Openstack] Issue with Security Groups

2014-06-27 Thread Jeremy Stanley
On 2014-06-27 19:12:31 +0800 (+0800), sylecn wrote: > On Thu, Jun 26, 2014 at 9:37 AM, Muralidhar Balcha > wrote: > [...] > > Is this a known issue? Does it have something to with the default > > security group. How can I make security group settings persist across > > service restarts? > > Not a

Re: [Openstack] icehouse cinder on multiple nodes problem

2014-06-27 Thread Anatoly Oreshkin
I am curious how does command "cinder-manage service-list" learn that specific cinder service up or down ? >From what sources ? Database or something else ? Looking at cinder-manage source text I've found that function utils.service_is_up check for cinder service avaiability. But I've not found

[Openstack] [openstack][neutron] patch applied?

2014-06-27 Thread Tiago Sousa
Hi, How can I check if a given patch is applied on a given package? (without going file by file) Namely, this patch: https://review.openstack.org/#/c/79801/ it says merged but how can I see if I have it? I have the latest packages from the ubuntu version > 1:2014.1-0ubuntu1.3. Sorry if its ou

Re: [Openstack] [openstack][neutron] patch applied?

2014-06-27 Thread Tiago Sousa
Hi Steve, Ok, got it, Thanks! Do you have any idea how long it usually takes for a commit to pass from review to merged? this one is another one that I need https://review.openstack.org/#/c/59578/ but is not merged yet. Cheers, Tiago On Fri, Jun 27, 2014 at 2:55 PM, Steve Martinelli wrote: >

Re: [Openstack] [openstack][neutron] patch applied?

2014-06-27 Thread Steve Martinelli
Hey Tiago, You can check the bug link in the commit message: Closes-bug: 1252410 -> https://bugs.launchpad.net/nova/+bug/1252410 And from there, check the Milestone, (OpenStack Compute (nova) 2014.1 "icehouse"), so as long as you are running the Icehouse version of OpenStack you should be good. R

Re: [Openstack] icehouse cinder on multiple nodes problem

2014-06-27 Thread Anatoly Oreshkin
I've found the reason of my problem. It is that time between hosts was not syncronized cinder-manage service list shows time difference 2 minutes Binary Host Zone Status State Updated At cinder-scheduler labosctrl

[Openstack] devstack fails

2014-06-27 Thread Andreas Voellmy
Hello, I am trying to get started with OpenStack by using devstack. Currently, devstack seems broken. Here is what I'm doing: 1. Bring up a new ubuntu 12.04 OS: vagrant init hashicorp/precise64 vagrant up vagrant reload 2. Log in and Setup devstack: vagrant ssh sudo apt-get update sudo apt-g

Re: [Openstack] devstack fails

2014-06-27 Thread lucas.g...@gmail.com
I think if you take a look at the documentation you'll find that you should be checking out a specific branch (Icehouse most likely, I think Juno is still pretty raw) and THEN you need to create a local.conf file for devstack to work with. Give it a re-read and try again. There's definitely gotch

Re: [Openstack] Create_member in LBaaS pool via python API

2014-06-27 Thread BrianCarroll
Ok, figured it out. Syntax for neutron is different from nova. Silly me! neutron.create_member( { 'member' : { 'protocol_port' : '80', 'address' : 'xx.xx.xx.xx', 'pool_id' : xx } } ) Hi All, A newbie question here but I can't find the answer in the API documentation or maybe I'

Re: [Openstack] devstack fails

2014-06-27 Thread Andreas Voellmy
Thanks! I just did the same flow as before, but right after the git checkout of devstack I did: git checkout stable/icehouse I read over https://github.com/openstack-dev/devstack/tree/stable/icehouse, which seems to suggest that this is all I have to do. Unfortunately, exactly the same error se

Re: [Openstack] devstack fails

2014-06-27 Thread lucas.g...@gmail.com
check: http://devstack.org/configuration.html Also, the base page http://devstack.org/ Has multiple steps, and one of those steps is that configuration step. Bear in mind, getting devstack working is not a completely automatic solution at this point. I have yet to see it work without a fair bit

Re: [Openstack] devstack fails

2014-06-27 Thread Andreas Voellmy
Thanks again. That config is claimed to be "optional", but I also configured the settings listed as "minimal configuration". Unfortunately it still doesn't work! I'm try fedora20, maybe I'll have more luck. On Fri, Jun 27, 2014 at 1:31 PM, lucas.g...@gmail.com wrote: > check: http://devstack.or

Re: [Openstack] devstack fails

2014-06-27 Thread Andreas Voellmy
I tried it on Fedora 20 (call this "machine1"), checking out master and using samples/local.conf as my local.conf. It succeeded, so I thought i must be on the right track. I then tried a fresh Fedora 20 (same image), everything as before but used the neutron config (as described here: https://wik