Re: [Openstack-operators] RabbitMQ issues since upgrading to Icehouse

2014-09-02 Thread Abel Lopez
What release were you running before Icehouse? I’m curious if you purged/deleted queues during the upgrade. Might be useful to start fresh with your rabbit, like completely trash your mensia during a maintenance window (obviously with your services stopped) so they recreate the queues at startup.

Re: [Openstack-operators] Is it possible to convert an raw image or a qcow image or a qcow2 image to a volume without importing it

2014-09-03 Thread Abel Lopez
Let me see if I understand correctly… You have large images you want to import into glance, I assume they are RAW format. You could use `qemu-img convert -O qcow2 {raw image} {compressed file}` to convert them to a much smaller size. Why do you need to use volumes for? If you’re using cinder, th

Re: [Openstack-operators] Unexpected error in OpenStack Nova

2014-09-04 Thread Abel Lopez
Hate to nit pick, but I notice that you’re setting auth_uri to localhost, but auth_host to 10.0.0.1. When I setup services, I specify a bind_host, so that the service is only listening on the interface I want. You may want to verify `lsof -i :5000` to see if 127.0.0.1 is bound, or just for my OC

[Openstack-operators] Survey on guest images

2014-09-04 Thread Abel Lopez
Hey guys, I have a brief couple of questions about glance and your guest images preferences. I would love to get community input on the following couple of questions https://docs.google.com/forms/d/10GkCXr3ovHH2WvMiPbnHPCZIvVzPa4i5h_tgsyt_5Y4/viewform?usp=send_form Please take a look, I’ll be col

Re: [Openstack-operators] hostname on vms not correct until reboot

2014-09-08 Thread Abel Lopez
Yes. I think this is similar to changing hostname on an interactive shell, you won't see your prompt change until you logout/in. Seems to be a new feature, maybe something in cloud-init 0.7.5? IIRC it used to be correct at first login. On Monday, September 8, 2014, Alex Leonhardt wrote: > HI all

Re: [Openstack-operators] hostname on vms not correct until reboot

2014-09-10 Thread Abel Lopez
services, like mcollective > are reporting the wrong fqdn until we reboot the VM so as a temporary fix we > added a reboot at the end of cloud-init. > > Any better way to get this sorted properly though? > > Alex > On 8 Sep 2014 16:20, "Abel Lopez" wrote: > Yes. I

Re: [Openstack-operators] Cinder + FC + Hitachi storage 110

2014-09-11 Thread Abel Lopez
There’s really two answers to your 2nd question. First, when booting new VMs, Cinder doesn’t come into play unless you’re explicitly selecting “Boot from Volume”. Typically, the default is to use “Ephemeral Instances”, which are simply file-backed virtual disks on your hypervisor host. If you wa

Re: [Openstack-operators] Kernel and KVM version

2014-09-11 Thread Abel Lopez
More info please! What distro? What kernel version? what version of kvm? what version of openstack? On Sep 11, 2014, at 12:26 PM, Flávio Ramalho wrote: > Hi, > > Some compute nodes are frequently having kernel panic and, as far as I see, > the kernel > panics are related with KVM. > > Do you

Re: [Openstack-operators] Visualization & Control Information for OpenStack operators

2014-09-11 Thread Abel Lopez
That’s pretty neat, hadn’t seen this before. Looks like it would be handy for a NOC/Ops team. On Sep 11, 2014, at 3:31 PM, Stacey King wrote: > Hello OpenStack Operators, > > I would like to ask if anyone sees a need for full-scale visualization via > gaming quality 360-degree graphics as we

Re: [Openstack-operators] Grizzly: live-migration with attached volume?

2014-09-12 Thread Abel Lopez
Does it work if you first detach the volume and then migrate? On Friday, September 12, 2014, Stephen Cousins wrote: > I am fairly new to Openstack having just inherited a Grizzly system with > NFS storage. "nova live-migration" is working unless the VM has an attached > volume. When it doesn't w

Re: [Openstack-operators] Grizzly: live-migration with attached volume?

2014-09-12 Thread Abel Lopez
ideas? > > Thanks, > > Steve > > On Fri, Sep 12, 2014 at 12:59 PM, Abel Lopez wrote: > Does it work if you first detach the volume and then migrate? > > > On Friday, September 12, 2014, Stephen Cousins > wrote: > I am fairly new to Openstack having just inhe

Re: [Openstack-operators] Kernel and KVM version

2014-09-12 Thread Abel Lopez
ion > 1.5.0 and Openstack Havana. > > 2014-09-11 16:31 GMT-03:00 Abel Lopez : >> More info please! >> What distro? What kernel version? what version of kvm? what version of >> openstack? >> >> On Sep 11, 2014, at 12:26 PM, Flávio Ramalho wrote: >> >

Re: [Openstack-operators] Cinde block storage HA

2014-09-16 Thread Abel Lopez
n't have too much experience with cinder at all, we've > been using the LVM driver since we installed it a year and a half ago. > > 2014-09-16 16:09 GMT-03:00 Abel Lopez : > Some of your concerns might be addressed by switching to NFS as the protocol. > You’re already exportin

Re: [Openstack-operators] Openstack and mysql galera with haproxy

2014-09-18 Thread Abel Lopez
I’ve seen that error, but not specifically with HAProxy (I was using an F5 at the time) IIRC, the problem was with my connection checking. I assume you’re doing something similar to this: http://www.percona.com/doc/percona-xtradb-cluster/5.5/howtos/haproxy.html On Sep 18, 2014, at 9:29 AM, Sławe

Re: [Openstack-operators] Openstack and mysql galera with haproxy

2014-09-18 Thread Abel Lopez
One big win is that using xtrabackup (or xtrabackup_v2 if you’re on 5.6) is that your tables don’t lock momentarily like they do using rsync. At my previous shop, we had a replicated keystone db across various sites, so wan segments (gmcast.segment ) became an attractive way to speed replication.

Re: [Openstack-operators] Glance Image Upload error

2014-09-19 Thread Abel Lopez
Looks like your default_store is misconfigured. Please go to http://paste.openstack.org and paste your glance-api.conf (redact any passwords or IPs if you wish) and send us the link to the paste. On Sep 19, 2014, at 4:38 AM, mo...@qmail.com.bd wrote: > > Hi, > > I am facing glance image uplo

Re: [Openstack-operators] rbd ephemeral storage, very slow deleting...

2014-09-24 Thread Abel Lopez
This is expected behavior, unfortunately. I spoke to the ceph guys about this last year. When you delete an ‘image’ from a pool, the monitors (IIRC) don’t instantly know where all the segments are across all the OSDs, so it takes a while to find/delete each one. On Sep 24, 2014, at 12:45 PM, Jon

Re: [Openstack-operators] [glance] how to update the contents of an image

2014-09-26 Thread Abel Lopez
Glance images are immutable. In order to update it, you should do as you are doing, but then rename the old image, then upload the updated one. Take note of the UUID as well. On Friday, September 26, 2014, Christian Berendt wrote: > I'm trying to update the contents of an image, but it looks lik

Re: [Openstack-operators] [glance] how to update the contents of an image

2014-10-07 Thread Abel Lopez
ign uuid from deleted image to the > new one, because deleted images keeps their metadata in DB. > > > On 09/26/2014 04:43 PM, Abel Lopez wrote: >> Glance images are immutable. In order to update it, you should do as you are >> doing, but then rename the old image, then u

Re: [Openstack-operators] [glance] how to update the contents of an image

2014-10-07 Thread Abel Lopez
You maybe know how to solve that? > > --- > Best regards > Sławek Kapłoński > sla...@kaplonski.pl > > Dnia wtorek, 7 października 2014 10:05:57 Abel Lopez pisze: > > You are correct, deleted images are not deleted from the DB, rather their > > row has ‘deleted=1’, s

Re: [Openstack-operators] [glance] how to update the contents of an image

2014-10-07 Thread Abel Lopez
gt; in horizon info about image: "not found". >>> Do You maybe know how to solve that? >>> >>> --- >>> Best regards >>> Sławek Kapłoński >>> sla...@kaplonski.pl >>> >>> Dnia wtorek, 7 października 2014 10:05:57 Ab

Re: [Openstack-operators] extend the ip address of subnet in Havana?

2014-10-09 Thread Abel Lopez
Using neutron or nova-network? On Oct 9, 2014, at 9:47 AM, raju wrote: > Hi All, > > Is there any way to extend the ip address of subnet Havana? > ___ > OpenStack-operators mailing list > OpenStack-operators@lists.openstack.org > http://lists.openstac

Re: [Openstack-operators] [Openstack-docs] High Availability Guide team

2014-10-15 Thread Abel Lopez
Unconference in Paris? Lets do it! On Oct 15, 2014, at 3:39 PM, Anne Gentle wrote: > > > On Wed, Oct 15, 2014 at 5:36 PM, Adam Lawson wrote: > So what's the status for those who have offered to assist? I've seen one > delegation to one person and no references to anything/anyone else. > > I

[Openstack-operators] Ephemeral instances in RBD issue

2014-10-23 Thread Abel Lopez
Hey all, Just ran into a strange problem, curious if anyone has seen this. We have some compute nodes with very little local disk space, so we have 'libvirt_images_type=rbd' in nova.conf. This works great, except that snapshots do a full hairpin and take about an hour to show up. I saw this las

Re: [Openstack-operators] Glance Image Upload error

2014-10-27 Thread Abel Lopez
This sounds like a packaging error. What linux distribution are you using? The quick fix is to just install the oslo.config module manually, not sure why it wasn't included. `sudo pip install oslo.config` should help On Oct 26, 2014, at 1:26 AM, mo...@qmail.com.bd wrote: > > Hi , > > I am fa

Re: [Openstack-operators] Ephemeral instances in RBD issue

2014-10-29 Thread Abel Lopez
#x27; lines into 'snapshot' method and HUZZAH, it works as expected. Hopefully we'll see a new commit to jdurgin's fork for icehouse and havana soon. On Oct 26, 2014, at 6:08 AM, Simon Leinen wrote: > Abel Lopez writes: >> I s

Re: [Openstack-operators] Ephemeral instances in RBD issue

2014-10-29 Thread Abel Lopez
ixes upstream in > Juno ? > > -- > David Moreau Simard > > >> On Oct 29, 2014, at 3:34 PM, Abel Lopez wrote: >> >> So, I figured out why this was happening. >> The gist of it is, the direct_snapshot doesn't start the domain back up. I >> contacted

Re: [Openstack-operators] Controle de Versão de Arquivos de Configuração da Cloud.

2014-10-29 Thread Abel Lopez
Alop searches for a Portugese translator... On Oct 29, 2014, at 12:35 PM, Flávio Ramalho wrote: > Boa tarde, > > Estou tendo dificuldades nessa atividade e não estou achando a solução da > forma que discutimos na última reunião. > > Explicando: > > O que queremos: Manter os arquivos de confi

Re: [Openstack-operators] Controle de Versão de Arquivos de Configuração da Cloud.

2014-10-29 Thread Abel Lopez
Maybe you should have a simple cron job check git for updates? On Oct 29, 2014, at 12:35 PM, Flávio Ramalho wrote: > Boa tarde, > > Estou tendo dificuldades nessa atividade e não estou achando a solução da > forma que discutimos na última reunião. > > Explicando: > > O que queremos: Manter o

[Openstack-operators] Database cleanup policy

2014-10-30 Thread Abel Lopez
We just had this question come up regarding the labs, but it applies to production as well. I'm thinking that we need to implement some sort of periodic database pruning. Perhaps like every two months or so, go through all databases, all tables, and do like delete from FOO where deleted=1 and

Re: [Openstack-operators] Database cleanup policy

2014-10-30 Thread Abel Lopez
r guidelines on this for each service so it can be followed > / implemented as a built in function. > > Cheers, > Morgan > > Sent via mobile > > On Oct 30, 2014, at 13:20, Abel Lopez wrote: > >> We just had this question come up regarding the labs, but it ap

[Openstack-operators] database hoarding

2014-10-30 Thread Abel Lopez
It seems that every release, there is more and more emphasis on upgradability. This is a good thing, I've love to see production users easily go from old to new. As an operator, I've seen first hand the results of neglecting the databases that openstack creates. If we intend to have users go ye

Re: [Openstack-operators] database hoarding

2014-10-31 Thread Abel Lopez
> >On 31/10/2014 11:01, Daniele Venzano wrote: > >> On 10/30/14 23:30, Abel Lopez wrote: > >>> As an operator, I'd prefer to have time based criteria over number of > >>> rows, too. > >>> I envision something like `nova-manage db purge [days]`

Re: [Openstack-operators] cloud-init: ssh-keys for host changed after global reboot

2014-11-13 Thread Abel Lopez
Haven't seen that myself, I wonder if there is a conflict between cloud-init and libvirt_inject_key. Also curious if you're using the metadata api or config_drive. On Thursday, November 13, 2014, George Shuklin wrote: > Hello. > > We had planned power outage for one of our OS installation (havan

Re: [Openstack-operators] Latest stable OpenStack version

2014-11-14 Thread Abel Lopez
Juno is considered "Stable" https://www.openstack.org/software/juno/ > On Nov 14, 2014, at 11:46 AM, Alex Leonhardt wrote: > > Hi all, > > I was wondering what the latest stable OpenStack version is? Is it still > Icehouse? > > Thanks > Alex > _

[Openstack-operators] Windows images

2014-11-14 Thread Abel Lopez
I spoke at length about Linux images at the Paris summit, I'm curious about what others are doing with Windows images. The closest thing I can think of is Redhat, which is "free" to use, but requires an entitlement for support. Windows requires a license to use. How do others deal with registrat

[Openstack-operators] Midcycle ops meetup?

2014-11-20 Thread Abel Lopez
Any clues as to where this might be held? Just trying to plan. ___ OpenStack-operators mailing list OpenStack-operators@lists.openstack.org http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-operators

Re: [Openstack-operators] Wrong URL returned on Keystone /v2.0

2014-12-02 Thread Abel Lopez
Did you happen to set the 'public_endpoint' directive in the keystone config? > On Dec 2, 2014, at 9:27 AM, Jean-Daniel Bonnetot > wrote: > > Hi Ops, > > I get the wrong URL on this call : > > curl -i -X GET https://mycontroller.ovh.com:5000/v2.0/ -H "Accept: > application/json" -H "User-Age

Re: [Openstack-operators] RabbitMQ TTL/queue configuration

2014-12-04 Thread Abel Lopez
WRT the zero consumer queues, in the past I've just had a cron job that checks for this and deletes queues that have messages no consumers. > On Dec 4, 2014, at 12:23 PM, Fischer, Matt > wrote: > > What RabbitMQ optimizations are people making with respect to OpenStack? > We’ve started lookin

Re: [Openstack-operators] Weekly Irc meeting?

2014-12-09 Thread Abel Lopez
According to the iCal feed, 1800 UTC on 12/17, we have #openstack-meeting, and #openstack-meeting-4 available. We should put that on the calendar. > On Dec 9, 2014, at 5:34 AM, Michael Chapman wrote: > > Hi folks, > > There wasn't much response to the previous meeting time, so I'd like to > p

Re: [Openstack-operators] Weekly Irc meeting?

2014-12-09 Thread Abel Lopez
56 Openstack Operators Team Meeting <https://wiki.openstack.org/wiki/Meetings#Openstack_Operators_Team_Meeting> > On Dec 9, 2014, at 9:54 AM, Abel Lopez wrote: > > According to the iCal feed, > 1800 UTC on 12/17, we have #openstack-meeting, and #openstack-meeting-4 > a

Re: [Openstack-operators] Migrating instances according to load on host

2014-12-16 Thread Abel Lopez
Sounds like you're describing VMWare DRS. It's a pretty neat feature that aims to reduce outages during maintenance and also reduce the impact of noisy neighbor. To my knowledge, we don't have that today, but I haven't been following the wishlist for nova > On Dec 16, 2014, at 12:01 PM, Sławek K

Re: [Openstack-operators] glance directory traversal bug and havana

2015-01-08 Thread Abel Lopez
You might be running an older Havana, IIRC the bug lists Havana3 and Havana4 as vulnerable. > On Jan 7, 2015, at 8:47 PM, George Shuklin wrote: > > I spend few hours trying to backport to Havana, but than I found, that > Havana seems be immune to the bug. I'm not 100% sure, so someone else

Re: [Openstack-operators] EXT4 as ephemeral disk

2015-01-12 Thread Abel Lopez
I was always a little bugged by that. Like, if you attach a new cinder volume, you have to 'newfs' it (Really showing my age there) but if you have ephemeral disk, it already has a filesystem. I agree with Clint's latest comment that maybe the ephemeral disk should not have an FS already. > On

Re: [Openstack-operators] Cinder api enpoint not found error while attach volume to instance

2015-01-14 Thread Abel Lopez
Do your compute nodes have the required iSCSI packages installed? On Wednesday, January 14, 2015, Geo Varghese wrote: > Hi Jay, > > Thanks for the reply. Just pasting the details below > > keystone catalog > > Service: compute > > +-+-

Re: [Openstack-operators] Cinder api enpoint not found error while attach volume to instance

2015-01-14 Thread Abel Lopez
e check attached > screenshot. > > > > On Thu, Jan 15, 2015 at 11:34 AM, Abel Lopez > wrote: > >> Do your compute nodes have the required iSCSI packages installed? >> >> >> On Wednesday, January 14, 2015, Geo Varghese &

Re: [Openstack-operators] Small openstack (part 2), distributed glance

2015-01-15 Thread Abel Lopez
That specific bottleneck can be solved by running glance on ceph, and running ephemeral instances also on ceph. Snapshots are a quick backend operation then. But you've made your installation on a house of cards. On Thursday, January 15, 2015, George Shuklin wrote: > Hello everyone. > > One more

[Openstack-operators] SELinux guest images

2015-01-23 Thread Abel Lopez
Hey Everyone, I've been building RHEL-7 images with selinux set to both Enforcing and Permissive, regardless of the setting, the first time an instance is launched, there is the mandatory relabeling that happens on the first boot. I'm wondering if I can run `fixfiles -f -F relabel` in the post-i

Re: [Openstack-operators] Instance creation "boot from image (creates a new volume)" is Slow

2015-01-26 Thread Abel Lopez
You might get faster performance if the image was in raw format in glance. On Friday, January 23, 2015, Pedro Sousa wrote: > Hi all, > > I have a swift backend to store my glance images and a EMC storage to > store my volumes. > > When I try to boot the instance directly from the volume, the pro

Re: [Openstack-operators] How to handle updates of public images?

2015-02-05 Thread Abel Lopez
I always recommend the following: All public images are named generically enough that they can be replaced with a new version of the same name. This helps new instances booting. The prior image is renamed with -OLD-$date. This lets users know that their image has been deprecated. This image is made

Re: [Openstack-operators] How to handle updates of public images?

2015-02-05 Thread Abel Lopez
name-based automation. On Thursday, February 5, 2015, Marc Heckmann wrote: > On Thu, 2015-02-05 at 06:02 -0800, Abel Lopez wrote: > > I always recommend the following: > > All public images are named generically enough that they can be > > replaced with a new version of the

Re: [Openstack-operators] How to handle updates of public images?

2015-02-07 Thread Abel Lopez
You can achieve this by simply making the image as private "--is-public 0" You have it in the admin tenant, and can use member to share it if needed. On Saturday, February 7, 2015, Igor Bolotin wrote: > Going back to the idea of archiving images and not allowing launch of new > VMs and hiding a

Re: [Openstack-operators] demo environment ( embedded device openstack ) ?

2015-02-11 Thread Abel Lopez
There is DIY LOM for the NUC, it was demo'd at Paris Summit. It was quite elegant, featuring LEGO Mindstorm robots being instructed to push the power button. > On Feb 11, 2015, at 9:12 AM, Will Snow (wasnow) wrote: > > So as to 10g, it’s not like I’m going to use them for production :) > > I

[Openstack-operators] ARM PoC systems?

2015-02-16 Thread Abel Lopez
Has anyone considered doing PoC stuff on those ARM microservers? I like the idea of some 2 RU system with a boat load of different systems inside it to really mimic a production environment to scale. Is this a silly idea? ___ OpenStack-operators mailing

Re: [Openstack-operators] Unable to delete few instances from dashboard

2015-02-18 Thread Abel Lopez
It's really tough to know without any additional information. Was there an error on the dashboard? Are you using the same credentials? Did these instances have volumes attached? > On Feb 18, 2015, at 12:47 PM, raju wrote: > > Hi, > > am unable to delete few instances from dashboard(Havana) but

Re: [Openstack-operators] Glance issues with ceph after Juno upgrade

2015-03-09 Thread Abel Lopez
IIRC, The config file looks dramatically different in Juno. Take a look at the new sections in https://github.com/openstack/glance/blob/stable/juno/etc/glance-api.conf In the sample config, it lists the stores as 'glance.

Re: [Openstack-operators] Grizzly - Access & Security page in Horizon does not load only for Admin

2015-03-12 Thread Abel Lopez
My guess is that you're timing out because it's getting all security groups for all tenants. Try listing it with the CLI client to see how long it would take. I've seen similar issues with other tabs, like the grizzly horizon tab for images was also getting all cinder snapshots, so that page was

Re: [Openstack-operators] Hypervisor decision

2015-03-18 Thread Abel Lopez
Interesting topic, since you're already running Hyper-v and ESX, I'm inferring that your workload is heavy on windows VMs. If you're doing majority windows, and minority linux, stick with hyper-v. The benchmarks I've read show that windows VMs run fastest on hyper-v VS all others. If you expect a

Re: [Openstack-operators] FYI: Rabbit Heartbeat Patch Landed

2015-03-19 Thread Abel Lopez
I tried that once as a test, it was pretty much a major fail. This was behind an F5 too. Just leaving the hosts in a list works better. On Thursday, March 19, 2015, John Dewey wrote: > Why would anyone want to run rabbit behind haproxy? I get people did it > post the ‘rabbit_servers' flag. Al

Re: [Openstack-operators] [ceilometer] Ceilometer causing Glance to fail

2015-03-20 Thread Abel Lopez
Wow, that's super vague. I remember in Grizzly having issues that "Appeared" to be caused by ceilometer, but in reality were probably backend DB related. TBH, if I got a bug report with this little detail, I'd probably just shoot it back to the submitter. > On Mar 20, 2015, at 7:55 AM, gordon ch

[Openstack-operators] Short survey on Guest Images

2015-04-10 Thread Abel Lopez
If you're somehow involved in creating/providing images for glance, I have a very short survey that I'd like input on. https://docs.google.com/forms/d/1HR500i8raQiH72GwEbpFuUQA8OvA7Uae2e-39Y6YSQ0/viewform?usp=send_form

Re: [Openstack-operators] Metadata error.

2015-04-21 Thread Abel Lopez
I think you might have misunderstood the nature of this list. We often times do provide answers to common issues, but this is not a support organization. You've provided no details of the errors you're experiencing, so it would be very difficult to help. Please use http://paste.openstack.org

Re: [Openstack-operators] chef

2015-05-12 Thread Abel Lopez
I think the error comes from your chef server, not openstack API. Have you tried answering "N" to the overwrite? > On May 12, 2015, at 4:48 AM, aishwarya.adyanth...@accenture.com wrote: > > Hello, > > I’m trying to integrate chef-server(version 11.0.10) with Ubuntu Openstack. > I’m able to cre

Re: [Openstack-operators] how to filter outgoing VM traffic in icehouse

2015-05-13 Thread Abel Lopez
Yes, you can define egress security group rules. > On May 13, 2015, at 2:32 PM, Gustavo Randich > wrote: > > Hi, > > Is there any way to filter outgoing VM traffic in Icehouse, preferably using > security groups? I.e. deny all traffic except to certain IPs > > Thanks! > > __

Re: [Openstack-operators] how to filter outgoing VM traffic in icehouse

2015-05-14 Thread Abel Lopez
stavo Randich" <mailto:gustavo.rand...@gmail.com>> wrote: > > >Hi, sorry, I forgot to mention: I'm using nova-network > > > > > > > >On Wed, May 13, 2015 at 6:39 PM, Abel Lopez > >mailto:alopg...@gmail.com>> wrote: > > > >Y

Re: [Openstack-operators] [openstack-dev] Who is using nova-docker? (Re: [nova-docker] Status update)

2015-05-14 Thread Abel Lopez
Again, a conversation that should include the ops list. On Wed, May 13, 2015 at 6:28 AM, Adrian Otto wrote: > Solum uses it in our Vagrant setup. It makes the dev environment perform > very nicely, and is compatible with the Docker containers Solum generates. > > > > Sent from my Verizon Wirel

Re: [Openstack-operators] 100% CPU and hangs if syslog is restarted

2015-05-28 Thread Abel Lopez
I bet you can workaround this by switching to UDP remote syslog. You'd loose messages, but your processes *should* "fire and forget" > On May 28, 2015, at 9:56 AM, George Shuklin wrote: > > Hello. > > Today we've discover a very serious bug in juno: > https://bugs.launchpad.net/nova/+bug/1459

Re: [Openstack-operators] what is the different in use Qcow2 or Raw in Ceph

2015-05-28 Thread Abel Lopez
We use ceph for glance and cinder, and we have some nodes that lack sufficient disk space, so they have "libvirt_images_type=rbd" The majority of the "Public" images are raw format, which is pretty awesome because those huge windows images (20 - 80 GB Raw) spawn in 14s. When a user uploads a qcow

Re: [Openstack-operators] Root password injection stops working

2015-05-29 Thread Abel Lopez
You can get admin_pass from the openstack metadata directory in config drive, and use a boot-time script to set the password accordingly. This example assumes the dhcp style metadata, but you can see how you could simply change it to read the fail instead https://gist.github.com/vishvananda/40087

Re: [Openstack-operators] Gentoo image availability

2015-06-08 Thread Abel Lopez
Since these are distro packages, you might be interested in converting the prep scripts into a DIB (diskimage-builder) element. We can presently build images for Debian/Ubuntu/Centos/Fedora/RHEL/openSUSE... I'm sure someone out there would appreciate having gentoo, too. > On Jun 8, 2015, at 8:26

Re: [Openstack-operators] [openstack-dev] Gentoo image availability

2015-06-22 Thread Abel Lopez
Awesome, never really played with Gentoo before, eager to give it a spin. On Monday, June 22, 2015, Matthew Thode wrote: > On 06/23/2015 12:17 AM, Matthew Thode wrote: > > On 06/11/2015 10:12 AM, Matthew Thode wrote: > >> On 06/11/2015 04:11 AM, Eren Türkay wrote: > >>> On 10-06-2015 02:14, Geor

Re: [Openstack-operators] Snapshots in dashboard.

2015-07-01 Thread Abel Lopez
You probably could via the glance cli, but do you really want to? A public image is bootable by all tenants, which is fine, but an instance snapshot is more intended for like backups or scaling. Are you trying to make public images for all your tenants? On Wednesday, July 1, 2015, wrote: > Hi,

Re: [Openstack-operators] Snapshots in dashboard.

2015-07-01 Thread Abel Lopez
ng here is that, when I launch a cirros image I’m able to access it > through the putty session but while using the Ubuntu image it prompts me as > ‘Disconnected: No supported authentications available.” > > > > I don’t mind using cirros but when I try to run apt-get update command

Re: [Openstack-operators] Snapshots in dashboard.

2015-07-01 Thread Abel Lopez
ges.ubuntu.com/trusty/current/trusty-server-cloudimg-amd64-disk1.img > > > > > > *From:* Abel Lopez [mailto:alopg...@gmail.com > ] > *Sent:* Thursday, July 02, 2015 11:17 AM > *To:* Adyanthaya, Aishwarya > *Cc:* openstack-operators@lists.openstack.org > >

Re: [Openstack-operators] Snapshots in dashboard.

2015-07-02 Thread Abel Lopez
tty directly. I don’t understand > why it works for the cirros instance but not the instance that was launched > by Ubuntu instance. > > From: Abel Lopez [mailto:alopg...@gmail.com] > Sent: Thursday, July 02, 2015 11:36 AM > To: Adyanthaya, Aishwarya > Cc: openstack-operat

Re: [Openstack-operators] ubuntu-14.04 unable to ssh

2015-07-06 Thread Abel Lopez
I would recommend that you don't do a 'dist-upgrade' of a cloud instance. In theory it *should* work, but it feels like an anti-pattern. You have images for 12.04, you have images for 14.04. If you need to use 12.04, choose that for your instances, if you need 14.04, choose that for your instance

[Openstack-operators] OSAD for RHEL

2015-07-07 Thread Abel Lopez
Hey everyone, I've started looking at osad, and I like much of the direction it takes. I'm pretty interested in developing it to run on RHEL, I just wanted to check if anyone would be -2 opposed to that before I spend cycles on it. signature.asc Description: Message signed with OpenPGP using GPG

Re: [Openstack-operators] No route to host

2015-07-07 Thread Abel Lopez
Sounds like you're trying to connect to the internal RFC 1918 address. You need to look at Floating IP, or try pulling from your instance instead of pushing to it. On Tuesday, July 7, 2015, wrote: > Hi, > > > > I’m having trouble while trying to deploy a package from ‘machine-A’ > outside opens

Re: [Openstack-operators] Compressed Images

2015-07-29 Thread Abel Lopez
That's an interesting find. I've only ever assumed "compressed image" to mean qcow2 (with or without compression in qcow2, both are pretty small compared to raw) I can imagine that '.zip and .tar.gz' might have applied to raw, which can be quite large, but ultimately, you're probably right and fo

Re: [Openstack-operators] External API access

2015-10-20 Thread Abel Lopez
You should have your public endpoints be externally reachable. > On Oct 20, 2015, at 2:38 PM, Sesso wrote: > > Hello, > > I am trying to use a module to automate VM deployments. I can't connect to > keystone externally so it will make new tenants. What is the best route to > allow access? > I

Re: [Openstack-operators] raw ephemeral disks and qcow2 images

2015-10-22 Thread Abel Lopez
I've actually looked for this for our RBD backed ephemeral instances, but found the options lacking. I last looked in Juno. On Thursday, October 22, 2015, Tim Bell wrote: > > > Has anyone had experience with setting up Nova with KVM so it has raw > ephemeral disks but qcow2 images for the VMs ?

[Openstack-operators] DIB in container vs VM

2015-12-01 Thread Abel Lopez
Hey everyone, I've been running diskimage-builder just fine for over a year inside various VMs, but now, I'm having to run it inside a docker container. I'm curious if anyone has experience with making the 'ubuntu latest' docker hub image more like a VM. For example, I can `vagrant up` the trust

Re: [Openstack-operators] DIB in container vs VM

2015-12-07 Thread Abel Lopez
Thanks for the suggestion. I am indeed running it privileged. One of the examples I wanted to share was: building Fedora image on an ubuntu docker image. The error I get is in the finalize.d phase http://paste.openstack.org/show/481088/ Error connecting

Re: [Openstack-operators] DIB in container vs VM

2015-12-07 Thread Abel Lopez
elinux stuff. I'm > not sure that's supported at all in docker. :/ > > It may be if your running one of the el's or fedora's as the docker host and > container? > > Thanks, > Kevin > From: Abel Lopez [alopg...@gmail.com] > Sent: Monday, December 07,

Re: [Openstack-operators] kilo keystone with liberty nova

2016-01-05 Thread Abel Lopez
We've done things like Icehouse keystone and Juno glance/heat/ceilometer. Seems like having older keystone is somewhat safe. On Tuesday, January 5, 2016, Marcus Furlong wrote: > Hi, > > Just wanted to check if it's possible to have a mixed version > environment with kilo keystone and e.g. liber

Re: [Openstack-operators] [nova] Recovering instances from old system

2016-01-08 Thread Abel Lopez
I would expect that if you have the databases in place, and they went through the proper migrations, that your instances would still be there. You can check the nova database instances table using the uuid. How exactly did you 'wipe everything clean'? > On Jan 7, 2016, at 5:35 PM, Liam Haworth

Re: [Openstack-operators] Liberty Error on random pages "Error: Unable to retrieve volume limit information"

2016-01-22 Thread Abel Lopez
That worked for me, you have to make sure it's in the [keymgr] section On Friday, January 22, 2016, Omer Faruk SEN wrote: > Hello, > > I have recently installed a Liberty with 3 nodes (compute,network and > controller). On admin account or demo account i get "Error: Unable to > retrieve volume l

Re: [Openstack-operators] how to get glance images for a specific tenant with the openstack client ?

2016-01-25 Thread Abel Lopez
Also, if you are an admin, you can `export OS_TENANT_ID` to the project and list images with property is-public false. On Monday, January 25, 2016, Kris G. Lindgren wrote: > This doesn't answer your specific question. However there are two > projects out there that are specifically for cleaning

Re: [Openstack-operators] I have an installation question and possible bug

2016-01-25 Thread Abel Lopez
First question, what is your glance store? Also, it sounds like you created the large image from a running instance, is that correct? If so, was the instance suspended when you initiated the image-create? On Monday, January 25, 2016, Christopher Hull wrote: > Hello all; > > I'm an experienced de

Re: [Openstack-operators] YAML config

2016-02-01 Thread Abel Lopez
I agree that having options in how you specify your configuration would be nice. I see that your change is to add yaml support, not replace INI, so that's a plus. Specifically with regards to ansible, you're correct that the ini_file module is sub-optimal, we've recently changed our playbooks awa

Re: [Openstack-operators] [glance] Image enters "killed" state on upload

2016-02-02 Thread Abel Lopez
I ran into a similar issue in Havana, but that was because we were doing some 'behind-the-scenes' modification of the image (format conversion) Once we stopped that, the issue went away. What is your glance store configured as? > On Feb 2, 2016, at 3:05 PM, Liam Haworth wrote: > > Hey All, >

Re: [Openstack-operators] [glance] Image enters "killed" state on upload

2016-02-02 Thread Abel Lopez
rcing, test setting it to permissive (if that is the issue, resolve the contexts) > On Feb 2, 2016, at 3:13 PM, Liam Haworth wrote: > > Glance is configured to use file store to /var/lib/glance/images > > On Wed, 3 Feb 2016 at 10:12 Abel Lopez <mailto:alopg...@gmail.com&

Re: [Openstack-operators] [glance] Image enters "killed" state on upload

2016-02-02 Thread Abel Lopez
rv/glance 739G 97G 604G14% > /var/lib/glance/images > > And to save from massed output from a LS, ever file in /var/lib/glance/images > is: -rw-r----- 1 glance glance > > No apparmour installed or configured > > On Wed, 3 Feb 2016

Re: [Openstack-operators] [glance] Image enters "killed" state on upload

2016-02-02 Thread Abel Lopez
re doing "useradd" without specifying a >>>> uid/gid. So you could end up with systems with different id's and >>>> permissions that are all screwed up between multiple servers. >>>> >>>> So related to your question .. If I remember correctl

[Openstack-operators] Help with horizon and v3 auth

2016-02-04 Thread Abel Lopez
Hey everyone, In my liberty testing, I've got keystone v3 setup, and everything seems to work, except certain cinder functions Using openstack client, I can boot an instance from image to a new volume. Using horizon, this fails. I have followed the v3 guides, having setup local_settings to have

Re: [Openstack-operators] Help with horizon and v3 auth

2016-02-05 Thread Abel Lopez
he issue the work around is here in the bug description. > > https://bugs.launchpad.net/tripleo/+bug/1521639 > On Feb 4, 2016 10:31 PM, "Abel Lopez" > wrote: > >> Hey everyone, >> In my liberty testing, I've got keystone v3 setup, and everything seems >&g

Re: [Openstack-operators] Help with horizon and v3 auth

2016-02-05 Thread Abel Lopez
g it to "" worked, but is too open IMO. > On Feb 5, 2016, at 7:59 AM, Abel Lopez wrote: > > Nah, I had that error previously, and added the keymgr section. > Just seeing a bunch of 404s when horizon tries to get the "project Id" using > the /tenant UR

Re: [Openstack-operators] Help with horizon and v3 auth

2016-02-05 Thread Abel Lopez
Actually, "identity:get_project" : "" seems ok, there's plenty of other actions with that lack of restriction. get_auth_catalog, get_auth_domains, get_region. > On Feb 5, 2016, at 2:55 PM, Abel Lopez wrote: > > After digging around and switching my distr

[Openstack-operators] glance-replicator

2016-02-16 Thread Abel Lopez
I'm trying to use glance-replicator, but it seems to be non-functional. glance-replicator help compare compare the contents of fromserver with those of toserver. fromserver:port: the location of the master glance instance. toserver:port: the location of the slave glance instance. Ok, g

Re: [Openstack-operators] [openstack-ansible] centos support

2016-02-18 Thread Abel Lopez
We talked a bit about making OSAD 'EL' compatible, but we ultimately decided against it. There were various architectural differences that made it not worth the effort. I don't know if anyone else was seriously considering the work. > On Feb 18, 2016, at 9:41 AM, Wade Holler wrote: > > Hi All,

  1   2   >