*** thechecker2 has quit IRC | 00:01 | |
xdaxdb | ahh :) | 00:01 |
---|---|---|
xdaxdb | theres something wrong with this line: | 00:01 |
xdaxdb | _local_ip: "{{ hostvars[inventory_hostname]['ansible_' + _overlay_network.bridge|default(ansible_default_ipv4['interface'])|replace('-', '_')]['ipv4']['address']|default(ansible_ssh_host) }}" | 00:01 |
xdaxdb | i keep getting 'dict object' has no attribute 'ipv4' | 00:03 |
xdaxdb | os-neutron-install | 00:03 |
*** armaan has quit IRC | 00:03 | |
*** LinStatSDR has joined #openstack-ansible | 00:04 | |
*** askb has quit IRC | 00:05 | |
xdaxdb | it'd be nice if someone could walk me through that line hehe | 00:07 |
xdaxdb | I see stuff like this often: | 00:08 |
xdaxdb | 'ansible_' + _overlay_network.bridge | 00:08 |
xdaxdb | but don't get what's being done | 00:08 |
xdaxdb | specifically the _ characters | 00:10 |
xdaxdb | it seems like we are calling a variable and using another variable to figure out the name of the one we want | 00:10 |
*** d-bark has joined #openstack-ansible | 00:11 | |
xdaxdb | so there is a fact/var that starts with a _ | 00:11 |
*** askb has joined #openstack-ansible | 00:13 | |
*** crushil has joined #openstack-ansible | 00:15 | |
*** esberglu has joined #openstack-ansible | 00:15 | |
*** thorst_ has joined #openstack-ansible | 00:19 | |
*** thorst_ has quit IRC | 00:19 | |
*** LinStatSDR has left #openstack-ansible | 00:21 | |
*** hfu has joined #openstack-ansible | 00:22 | |
logan- | xdaxdb: yeah that's (wrong) string concatenation. so selecting a hostvar named 'ansible_' + _overlay_network.bridge... ex. ansible_br-vxlan. that should work but the correct concat operator in jinja is ~, so it really should be 'ansible_' ~ _overlay_network.bridge | 00:24 |
logan- | also ansible_ssh_host is renamed to ansible_host... | 00:25 |
logan- | couple things wrong with that line | 00:25 |
xdaxdb | i tried changing ansible_ssh_host to ansible_host it made no difference | 00:26 |
xdaxdb | the + is depricated but should still work right? | 00:26 |
xdaxdb | because i see it everywhere | 00:26 |
logan- | yeah | 00:26 |
logan- | which tag are you running | 00:27 |
xdaxdb | just running the whole book | 00:28 |
xdaxdb | wait, why are we doing the "replace" ? | 00:28 |
logan- | sorry, meant OSA git tag | 00:28 |
xdaxdb | oh lol 14.0.7 | 00:29 |
logan- | the replace is due to the ansible fact naming | 00:29 |
logan- | so the facts it collects for br-vxlan are stored in ansible_br_vxlan | 00:29 |
xdaxdb | ahh ok I thought that was it | 00:29 |
*** adrian_otto has quit IRC | 00:30 | |
xdaxdb | my ansible_default_ipv4['interface'] is br-ext | 00:30 |
logan- | maybe check ansible <host that is failing that task> -m debug -a msg="{{ ansible_br_ext }}" | 00:32 |
logan- | it should have some facts cached for that interface | 00:32 |
xdaxdb | ahh thanks for that, I was sort of doing that already | 00:33 |
xdaxdb | whats the difference between msg= and var= ? | 00:34 |
logan- | msg will resolve any jinja you feed it including multiple vars like "{{ var 1 }} {{ var 2}}" etc | 00:35 |
logan- | var will only print one var | 00:35 |
logan- | i just forget the 'var' arg exists :P | 00:36 |
xdaxdb | logan-: could it be because my hostname has hypthens in it? | 00:39 |
logan- | doubt it | 00:41 |
*** klamath has joined #openstack-ansible | 00:41 | |
logan- | that replace is only being performed against the interface name | 00:41 |
*** karimb has quit IRC | 00:44 | |
xdaxdb | debug -a msg="{{ ansible_br_ext['ipv4']['address'] }}" | 00:44 |
xdaxdb | SUCCESS and the IP is there | 00:44 |
*** thorst_ has joined #openstack-ansible | 00:46 | |
*** thorst_ has quit IRC | 00:46 | |
logan- | hmm | 00:46 |
logan- | maybe it is looking up the wrong interface.you could try hacking around with a debug task right above the one failing there like this http://cdn.pasteraw.com/6wwt0yd1wfsrbw8el72hr77pcqrfwu3 | 00:48 |
logan- | with the defaulting going on there its hard to know which interface it is failing to find the ['ipv4'] dict in | 00:49 |
*** tots has quit IRC | 00:51 | |
*** SerenaFeng has joined #openstack-ansible | 00:52 | |
*** cuongnv has joined #openstack-ansible | 00:58 | |
*** jpstnh has joined #openstack-ansible | 00:59 | |
xdaxdb | I think i found the problem... | 01:00 |
xdaxdb | ['ansible_' + _overlay_network.bridge|default(ansible_default_ipv4['interface']) | 01:00 |
xdaxdb | shouldnt there be a ']' before the pipe for default? | 01:01 |
xdaxdb | trying it now | 01:01 |
*** japestinho has quit IRC | 01:04 | |
*** SerenaFeng has quit IRC | 01:07 | |
*** SerenaFeng has joined #openstack-ansible | 01:11 | |
*** fandi has joined #openstack-ansible | 01:15 | |
*** MasterOfBugs has quit IRC | 01:18 | |
*** thorst_ has joined #openstack-ansible | 01:29 | |
*** weezS has joined #openstack-ansible | 01:32 | |
*** thorst_ has quit IRC | 01:32 | |
*** esberglu has quit IRC | 01:34 | |
xdaxdb | logan-: I changed it to this and got passed it | 01:36 |
xdaxdb | _local_ip: "{{ hostvars[inventory_hostname]['ansible_' + _overlay_network.bridge|default(ansible_default_ipv4['address'])]|default(ansible_ssh_host) }}" | 01:36 |
xdaxdb | why do we need to find the address of the default interface? Should it not be the same as the default address? | 01:37 |
xdaxdb | so thats what i did | 01:37 |
*** fandi has quit IRC | 01:39 | |
*** weezS has quit IRC | 01:43 | |
*** jamesdenton has joined #openstack-ansible | 01:50 | |
*** hw_wutianwei has joined #openstack-ansible | 01:53 | |
*** jamesdenton has quit IRC | 01:54 | |
*** Jack_Iv has joined #openstack-ansible | 01:56 | |
*** jamesdenton has joined #openstack-ansible | 01:58 | |
*** japestinho has joined #openstack-ansible | 01:58 | |
*** Jack_Iv has quit IRC | 02:00 | |
*** npawelek has quit IRC | 02:01 | |
*** npawelek has joined #openstack-ansible | 02:01 | |
*** npawelek has quit IRC | 02:02 | |
*** npawelek has joined #openstack-ansible | 02:02 | |
*** crushil has quit IRC | 02:03 | |
*** zerda4 has quit IRC | 02:05 | |
*** zerda3 has joined #openstack-ansible | 02:06 | |
*** ngupta has joined #openstack-ansible | 02:09 | |
*** npawelek has quit IRC | 02:10 | |
*** npawelek has joined #openstack-ansible | 02:10 | |
*** d-bark has quit IRC | 02:11 | |
*** cathrichardson has quit IRC | 02:12 | |
*** cathrichardson has joined #openstack-ansible | 02:12 | |
*** npawelek has quit IRC | 02:16 | |
*** npawelek has joined #openstack-ansible | 02:16 | |
*** thorst_ has joined #openstack-ansible | 02:17 | |
*** npawelek has quit IRC | 02:18 | |
*** npawelek has joined #openstack-ansible | 02:18 | |
*** thorst_ has quit IRC | 02:18 | |
*** npawelek has quit IRC | 02:23 | |
*** npawelek has joined #openstack-ansible | 02:23 | |
*** M4he has quit IRC | 02:24 | |
*** npawelek has quit IRC | 02:25 | |
*** npawelek has joined #openstack-ansible | 02:25 | |
*** Mahe has joined #openstack-ansible | 02:28 | |
*** esberglu has joined #openstack-ansible | 02:38 | |
*** thorst_ has joined #openstack-ansible | 02:38 | |
*** thorst_ has quit IRC | 02:40 | |
*** esberglu has quit IRC | 02:41 | |
*** thorst_ has joined #openstack-ansible | 02:43 | |
*** thorst_ has quit IRC | 02:43 | |
*** crushil has joined #openstack-ansible | 02:43 | |
*** zerda3 has quit IRC | 02:44 | |
*** zerda3 has joined #openstack-ansible | 02:45 | |
*** thorst_ has joined #openstack-ansible | 02:46 | |
*** thorst_ has quit IRC | 02:51 | |
*** thorst_ has joined #openstack-ansible | 03:01 | |
*** crushil has quit IRC | 03:02 | |
*** nea1 has quit IRC | 03:02 | |
*** thorst_ has quit IRC | 03:03 | |
*** nea1 has joined #openstack-ansible | 03:04 | |
*** jgriffiths has joined #openstack-ansible | 03:05 | |
*** winggundamth has joined #openstack-ansible | 03:07 | |
openstackgerrit | Cuong Nguyen proposed openstack/openstack-ansible-plugins master: Remove apt-get update in Vagranfile as we do it in run_test.sh https://review.openstack.org/434607 | 03:21 |
*** gouthamr has quit IRC | 03:44 | |
*** Hosam has joined #openstack-ansible | 03:45 | |
*** Hosam has joined #openstack-ansible | 03:45 | |
*** cjloader_ has joined #openstack-ansible | 03:51 | |
*** Jack_Iv has joined #openstack-ansible | 03:56 | |
*** Jack_Iv has quit IRC | 04:00 | |
*** ngupta has quit IRC | 04:01 | |
*** ngupta has joined #openstack-ansible | 04:01 | |
*** SerenaFeng has quit IRC | 04:04 | |
*** weezS has joined #openstack-ansible | 04:04 | |
*** ngupta has quit IRC | 04:06 | |
*** cjloader_ has quit IRC | 04:09 | |
*** jrobinson is now known as jrobinson-afk | 04:16 | |
*** weezS has quit IRC | 04:17 | |
*** woodard has quit IRC | 04:21 | |
*** adrian_otto has joined #openstack-ansible | 04:26 | |
*** esberglu has joined #openstack-ansible | 04:29 | |
*** Hosam has quit IRC | 04:30 | |
*** esberglu has quit IRC | 04:34 | |
*** jrobinson-afk is now known as jrobinson | 04:48 | |
*** nadeem has left #openstack-ansible | 04:49 | |
openstackgerrit | Merged openstack/openstack-ansible-os_ironic stable/ocata: Update repo for stable/ocata https://review.openstack.org/430742 | 04:49 |
*** dankolbrs has quit IRC | 04:54 | |
*** dankolbrs has joined #openstack-ansible | 04:54 | |
*** jamesdenton has quit IRC | 04:58 | |
*** chhavi has joined #openstack-ansible | 05:02 | |
*** thorst_ has joined #openstack-ansible | 05:04 | |
*** Hosam has joined #openstack-ansible | 05:08 | |
*** thorst_ has quit IRC | 05:08 | |
*** shausy has joined #openstack-ansible | 05:09 | |
*** sdake has joined #openstack-ansible | 05:09 | |
*** sdake_ has joined #openstack-ansible | 05:12 | |
*** sdake has quit IRC | 05:14 | |
*** adrian_otto has quit IRC | 05:15 | |
*** chhavi has quit IRC | 05:25 | |
openstackgerrit | Kevin Carter (cloudnull) proposed openstack/openstack-ansible master: unify interface lookups https://review.openstack.org/431591 | 05:47 |
openstackgerrit | Merged openstack/openstack-ansible-pip_install master: Install python2 for Ubuntu 16.04 and CentOS 7 in Vagrant https://review.openstack.org/434032 | 05:48 |
openstackgerrit | Merged openstack/openstack-ansible-rsyslog_client master: Add Vagrantfile for local testing https://review.openstack.org/434100 | 05:48 |
openstackgerrit | Merged openstack/openstack-ansible-openstack_hosts master: Install python2 for Ubuntu 16.04 and CentOS 7 in Vagrant https://review.openstack.org/434039 | 05:48 |
*** pradiprwt has joined #openstack-ansible | 05:48 | |
*** hybridpollo has quit IRC | 05:49 | |
*** Jack_Iv has joined #openstack-ansible | 05:50 | |
*** Jack_Iv has quit IRC | 05:50 | |
*** adrian_otto has joined #openstack-ansible | 05:52 | |
*** SerenaFeng has joined #openstack-ansible | 05:53 | |
pradiprwt | Hi Everyone | 05:53 |
pradiprwt | I want HTTP intead of HTTPS, how can I do it ..? | 05:54 |
*** sdake_ has quit IRC | 05:54 | |
*** adrian_otto has quit IRC | 05:54 | |
*** chhavi has joined #openstack-ansible | 05:55 | |
pradiprwt | I went through code foud some refrence ..https://github.com/openstack/openstack-ansible-os_horizon/blob/stable/newton/templates/openstack_dashboard.conf.j2#L6 | 05:55 |
pradiprwt | where do I need to disable it .. | 05:56 |
openstackgerrit | Merged openstack/openstack-ansible-repo_server master: Add Vagrantfile for local testing https://review.openstack.org/434067 | 05:56 |
*** weezS has joined #openstack-ansible | 05:58 | |
*** Jack_Iv has joined #openstack-ansible | 06:00 | |
*** Jack_Iv has quit IRC | 06:00 | |
openstackgerrit | Merged openstack/openstack-ansible-tests master: Replace "ara generate" by "ara generate html" https://review.openstack.org/433205 | 06:08 |
openstackgerrit | Merged openstack/openstack-ansible-os_sahara master: Update paste, policy and rootwrap configurations 2017-02-15 https://review.openstack.org/434231 | 06:12 |
openstackgerrit | Merged openstack/openstack-ansible-os_neutron master: Update paste, policy and rootwrap configurations 2017-02-15 https://review.openstack.org/434227 | 06:14 |
cuongnv | pradiprwt, https://github.com/openstack/openstack-ansible-os_horizon/blob/master/defaults/main.yml#L145 | 06:15 |
cuongnv | https://github.com/openstack/openstack-ansible-os_horizon/blob/stable/newton/defaults/main.yml#L123 for newton branch | 06:16 |
openstackgerrit | Merged openstack/openstack-ansible-os_almanach master: Install python2 for Ubuntu 16.04 and CentOS 7 in Vagrant https://review.openstack.org/431294 | 06:16 |
openstackgerrit | Merged openstack/openstack-ansible-os_tempest master: Install python2 for Ubuntu 16.04 and CentOS 7 in Vagrant https://review.openstack.org/430037 | 06:17 |
*** chhavi has quit IRC | 06:18 | |
*** rgogunskiy has joined #openstack-ansible | 06:21 | |
pradiprwt | cuongnv: do I need to make the chages in user_variables.yml > horizon_external_ssl: False | 06:21 |
*** esberglu has joined #openstack-ansible | 06:23 | |
*** chhavi has joined #openstack-ansible | 06:27 | |
*** esberglu has quit IRC | 06:28 | |
*** adrian_otto has joined #openstack-ansible | 06:41 | |
*** udesale has joined #openstack-ansible | 06:43 | |
*** jrobinson has quit IRC | 06:51 | |
*** hfu_ has joined #openstack-ansible | 07:03 | |
*** hfu_ has quit IRC | 07:03 | |
*** hfu_ has joined #openstack-ansible | 07:04 | |
*** thorst_ has joined #openstack-ansible | 07:05 | |
*** hfu has quit IRC | 07:05 | |
*** weezS has quit IRC | 07:08 | |
*** thorst_ has quit IRC | 07:10 | |
*** galstrom_zzz has quit IRC | 07:17 | |
openstackgerrit | Merged openstack/openstack-ansible-os_nova master: Enable cell auto enrollment https://review.openstack.org/432291 | 07:18 |
*** common has quit IRC | 07:18 | |
*** common has joined #openstack-ansible | 07:20 | |
*** galstrom_zzz has joined #openstack-ansible | 07:20 | |
*** gus_ is now known as gus | 07:32 | |
*** unlaudable has joined #openstack-ansible | 07:35 | |
*** karimb has joined #openstack-ansible | 07:41 | |
*** hfu has joined #openstack-ansible | 07:48 | |
*** hfu_ has quit IRC | 07:49 | |
*** adrian_otto has quit IRC | 07:55 | |
*** armaan has joined #openstack-ansible | 07:55 | |
*** klamath has quit IRC | 08:07 | |
*** chhavi has quit IRC | 08:07 | |
*** adrian_otto has joined #openstack-ansible | 08:08 | |
*** esberglu has joined #openstack-ansible | 08:08 | |
*** esberglu has quit IRC | 08:13 | |
*** pcaruana has joined #openstack-ansible | 08:14 | |
*** klamath has joined #openstack-ansible | 08:17 | |
*** pcaruana has quit IRC | 08:20 | |
*** adrian_otto has quit IRC | 08:21 | |
*** pcaruana has joined #openstack-ansible | 08:22 | |
*** thorst_ has joined #openstack-ansible | 08:25 | |
*** thorst_ has quit IRC | 08:30 | |
*** winggundamth has quit IRC | 08:42 | |
*** winggundamth has joined #openstack-ansible | 08:44 | |
*** fxpester has joined #openstack-ansible | 08:45 | |
pradiprwt | cuongnv: steel it's redirecting to https, I want plain http for access horizon | 08:53 |
*** hfu has quit IRC | 09:03 | |
*** hfu has joined #openstack-ansible | 09:06 | |
pradiprwt | evrardjp : hi | 09:09 |
evrardjp | hello | 09:09 |
pradiprwt | can you please tell me how I can configure horizon for plain http | 09:10 |
*** Jack_Iv has joined #openstack-ansible | 09:12 | |
*** pmannidi has quit IRC | 09:13 | |
*** Jack_Iv has quit IRC | 09:14 | |
*** Jack_Iv has joined #openstack-ansible | 09:14 | |
openstackgerrit | Jesse Pretorius (odyssey4me) proposed openstack/openstack-ansible master: Fix Sahara HAProxy health check https://review.openstack.org/433150 | 09:14 |
*** klamath has quit IRC | 09:15 | |
*** klamath has joined #openstack-ansible | 09:16 | |
odyssey4me | o | 09:16 |
odyssey4me | o/ | 09:16 |
*** ArchiFleKs has quit IRC | 09:16 | |
openstackgerrit | Jesse Pretorius (odyssey4me) proposed openstack/openstack-ansible master: Add CentOS support for AIO setup https://review.openstack.org/407690 | 09:24 |
openstackgerrit | Jesse Pretorius (odyssey4me) proposed openstack/openstack-ansible master: Add CentOS support for AIO setup https://review.openstack.org/407690 | 09:26 |
andymccr | gonna try look at ways to cut down memory usage again :( | 09:30 |
andymccr | it looks like the run time issues are sorted but memory is the main deal breaker | 09:30 |
odyssey4me | it's been a long time comoing | 09:31 |
odyssey4me | I doubt the mariadb actually needs all that much memory to work - most of it goes into caching. | 09:31 |
odyssey4me | We don't need performance, we just need it to work. | 09:31 |
andymccr | agreed | 09:31 |
andymccr | perhaps we can memory tune mariadb better, and im going to takea look at the memory settings for nginx | 09:32 |
andymccr | i think its partly due to the ever growing number of services/containers | 09:32 |
openstackgerrit | Jesse Pretorius (odyssey4me) proposed openstack/openstack-ansible master: Add CentOS support for AIO setup https://review.openstack.org/407690 | 09:32 |
*** openstackgerrit has quit IRC | 09:32 | |
odyssey4me | yeah, that's obviously a factor - that said though, in our role tests we use very few containers | 09:33 |
odyssey4me | so it's likely that the services are chewing up more resources | 09:34 |
odyssey4me | and perhaps we need to revisit the worker settings to ensure that we've got those tuned down | 09:34 |
*** aludwar has quit IRC | 09:45 | |
*** aludwar has joined #openstack-ansible | 09:45 | |
*** hfu_ has joined #openstack-ansible | 09:51 | |
*** hfu has quit IRC | 09:51 | |
*** Hosam has quit IRC | 09:55 | |
*** hfu_ has quit IRC | 09:55 | |
*** Hosam has joined #openstack-ansible | 09:55 | |
*** esberglu has joined #openstack-ansible | 09:58 | |
*** Hosam has quit IRC | 10:00 | |
*** udesale has quit IRC | 10:03 | |
*** esberglu has quit IRC | 10:03 | |
*** cuongnv has quit IRC | 10:04 | |
*** SerenaFeng has quit IRC | 10:08 | |
*** sdake has joined #openstack-ansible | 10:10 | |
*** SerenaFeng has joined #openstack-ansible | 10:14 | |
*** vnogin has joined #openstack-ansible | 10:14 | |
*** rgogunskiy has quit IRC | 10:23 | |
*** udesale has joined #openstack-ansible | 10:26 | |
*** thorst_ has joined #openstack-ansible | 10:26 | |
*** sdake has quit IRC | 10:28 | |
*** thorst_ has quit IRC | 10:31 | |
*** winggundamth has quit IRC | 10:45 | |
*** openstackgerrit has joined #openstack-ansible | 10:45 | |
openstackgerrit | Jesse Pretorius (odyssey4me) proposed openstack/openstack-ansible master: [DOCS] Move limited connectivity section to Deploy Guide https://review.openstack.org/434805 | 10:45 |
*** askb has quit IRC | 10:45 | |
*** ArchiFleKs has joined #openstack-ansible | 10:47 | |
ArchiFleKs | Hi, anyone run into nova issues when running osa-master, I had an error preventing nova-compute to start because of the VIR_MIGRATE_POSTCOPY. Could not find anything about it. It happens randomly with libvirt 2.5.0, which is now package into the ubuntu cloud-archive repo for ocata, that was not the case on newton. I don't think this is relatad to osa, so i'll ask on nova too | 10:51 |
*** admin0 has joined #openstack-ansible | 10:52 | |
openstackgerrit | Jesse Pretorius (odyssey4me) proposed openstack/openstack-ansible master: [DOCS] Move limited connectivity section to Deploy Guide https://review.openstack.org/434805 | 10:54 |
*** Andrew_jedi has joined #openstack-ansible | 10:55 | |
Andrew_jedi | xdaxdb: Hello :) | 10:55 |
Andrew_jedi | xdaxdb: Do you remember i showed you a single nic network configuration for osa with IP on br-vlan? | 10:56 |
Andrew_jedi | xdaxdb: You asked me to let you know whether it worked or not. Well, It works.:) | 10:56 |
*** winggundamth has joined #openstack-ansible | 10:57 | |
*** admin0 has quit IRC | 10:58 | |
*** admin0 has joined #openstack-ansible | 10:58 | |
openstackgerrit | Jesse Pretorius (odyssey4me) proposed openstack/openstack-ansible master: [DOCS] Move limited connectivity section to Deploy Guide https://review.openstack.org/434805 | 11:03 |
*** udesale has quit IRC | 11:03 | |
openstackgerrit | Michael Still proposed openstack/openstack-ansible master: Provide a single central place to configure a git mirror. https://review.openstack.org/434813 | 11:08 |
*** Hosam has joined #openstack-ansible | 11:09 | |
*** rgogunskiy has joined #openstack-ansible | 11:12 | |
*** rgogunskiy has quit IRC | 11:12 | |
odyssey4me | antonym meet logan- (and vice versa) - antonym has put https://www.reversengineered.com/2016/04/21/stateless-hypervisors-at-scale/ together logan-, which is similar to what you're doing... it might be useful to collaborate on improvements | 11:16 |
openstackgerrit | Jean-Philippe Evrard proposed openstack/openstack-ansible master: [Docs] Complete the example file https://review.openstack.org/434819 | 11:20 |
evrardjp | Andrew_jedi: haha I didn't know you were busy on this | 11:22 |
evrardjp | Andrew_jedi: perfect, you can review this doc patch ^ | 11:22 |
pjm6 | morning all | 11:22 |
openstackgerrit | Jean-Philippe Evrard proposed openstack/openstack-ansible master: [Docs] Complete the example file https://review.openstack.org/434819 | 11:23 |
Andrew_jedi | evrardjp: :) | 11:23 |
Andrew_jedi | evrardjp: WHich doc patch ? | 11:23 |
evrardjp | https://review.openstack.org/#/c/434819/ | 11:23 |
Andrew_jedi | evrardjp: Sure, i will. but right now i am trying to install designate from stable/ocata in a Newton deployment ;) | 11:27 |
evrardjp | it just lasts 2 minutes :) | 11:28 |
evrardjp | well that sounds a receipe for disasters! | 11:28 |
*** stuartgr has joined #openstack-ansible | 11:29 | |
openstackgerrit | Jimmy McCrory proposed openstack/openstack-ansible-plugins master: [DOCS] Add docs for plugins https://review.openstack.org/434845 | 11:40 |
openstackgerrit | Jimmy McCrory proposed openstack/openstack-ansible-plugins master: [DOCS] Add docs for plugins https://review.openstack.org/434845 | 11:44 |
Andrew_jedi | evrardjp: Done. Trying out designate in Ocata? | 11:46 |
evrardjp | Andrew_jedi: I think mixing environemnts is generally error prone | 11:46 |
evrardjp | good morning jmccrory! | 11:47 |
Andrew_jedi | evrardjp: btw here is one alternative for those who have only one interface available: http://paste.openstack.org/show/599203/ | 11:47 |
*** esberglu has joined #openstack-ansible | 11:47 | |
*** armaan has quit IRC | 11:47 | |
evrardjp | Andrew_jedi: you cannot give the interface to neutron agent, that way, do you ? | 11:48 |
evrardjp | I'm surprised you don't have a veth pair to give has host bind | 11:48 |
evrardjp | maybe it's ubuntu 16 that allows that | 11:48 |
jmccrory | morning evrardjp, i'm about to try to go back to sleep | 11:48 |
evrardjp | ubuntu 14 used to bork :p | 11:48 |
Andrew_jedi | evrardjp: Yes, you can ;). I have a working magnum environment with this very config | 11:49 |
evrardjp | jmccrory: haha that's why :) | 11:49 |
evrardjp | have a good night! | 11:49 |
jmccrory | heh thanks, see ya | 11:49 |
evrardjp | Andrew_jedi: yes but what do you use for networking? Do you use vlan/flat based networking for your tenants, or only vxlan? | 11:49 |
Andrew_jedi | vxlan for private and vlan for provider network | 11:50 |
evrardjp | ahah ok | 11:50 |
evrardjp | well if you need flat, you'd need to pass something so veth pair would be the trick | 11:51 |
*** esberglu has quit IRC | 11:52 | |
openstackgerrit | Jean-Philippe Evrard proposed openstack/openstack-ansible master: [DOCS] Move limited connectivity section to Deploy Guide https://review.openstack.org/434805 | 11:54 |
Andrew_jedi | evrardjp: Yes, i use vxlan devices with flat networks | 11:54 |
openstackgerrit | Logan V proposed openstack/openstack-ansible-tests master: Disable cells auto enrollment in testing repo https://review.openstack.org/434849 | 11:54 |
logan- | awesome thanks odyssey4me :) | 11:54 |
Andrew_jedi | evrardjp: I have never tried this in production though http://paste.openstack.org/show/599205/ | 11:55 |
odyssey4me | logan- evrardjp we need to get https://review.openstack.org/434171 merged in order to stabilise the newton neutron tests | 11:56 |
odyssey4me | and https://review.openstack.org/434155 would help stabilise the galera tests a little | 11:56 |
evrardjp | Andrew_jedi: I've seen that in the past :D | 11:56 |
openstackgerrit | Jesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-galera_server stable/newton: Retry galera_running_check after systemctl daemon-reload https://review.openstack.org/434850 | 11:56 |
evrardjp | I usually use this to use vxlan but it's generally not needed if you don't need encap :) | 11:57 |
evrardjp | remember that you need proper multicast | 11:57 |
Andrew_jedi | evrardjp: Yep:) | 11:57 |
Andrew_jedi | and you have to also make sure that you set proper mtu | 11:57 |
*** Hosam has quit IRC | 11:58 | |
*** sdake has joined #openstack-ansible | 12:03 | |
*** Hosam has joined #openstack-ansible | 12:04 | |
*** fandi has joined #openstack-ansible | 12:04 | |
*** fandi has quit IRC | 12:09 | |
*** fandi has joined #openstack-ansible | 12:09 | |
*** Jack_Iv has quit IRC | 12:16 | |
*** Pilou has joined #openstack-ansible | 12:17 | |
*** askb has joined #openstack-ansible | 12:19 | |
*** askb has quit IRC | 12:19 | |
*** SerenaFeng has quit IRC | 12:22 | |
*** retreved has joined #openstack-ansible | 12:28 | |
openstackgerrit | Merged openstack/openstack-ansible-galera_server stable/ocata: Retry galera_running_check after systemctl daemon-reload https://review.openstack.org/434155 | 12:28 |
Mr_Smurf | How do i figure out what version of newton that I have installed with my stable/newton openstack-ansible installation? | 12:30 |
openstackgerrit | Jesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-galera_server stable/ocata: Update repo for stable/ocata https://review.openstack.org/430722 | 12:30 |
*** chhavi has joined #openstack-ansible | 12:31 | |
odyssey4me | Mr_Smurf by 'version of newton' what do you mean? | 12:32 |
odyssey4me | each openstack project has their own version | 12:32 |
odyssey4me | and openstack-ansible has a version | 12:32 |
odyssey4me | and many of the command line tools have versions that differ from their service versions | 12:32 |
Mr_Smurf | odyssey4me: I'm trying to figure out why the admin panel is showing in my horizon for non admin users so I asked a question in the horizon channel and they want to know newton version | 12:33 |
*** japestinho has quit IRC | 12:33 | |
odyssey4me | in your repo server you'll see the built wheels in /os-release/<tag>/ | 12:33 |
odyssey4me | one of those will be horizon with a name like horizon-10.0.2.dev69-py2-none-any.whl | 12:34 |
odyssey4me | that means horizon 10.0.2 with 69 commits on top of it | 12:34 |
Mr_Smurf | ok, thanks :) | 12:34 |
odyssey4me | but realistically what you'll want to refer to is this line: https://github.com/openstack/openstack-ansible/blob/master/playbooks/defaults/repo_packages/openstack_services.yml#L97 | 12:34 |
odyssey4me | just say that you've deployed that particular SHA - although you'll need to find the SHA that's for the particular branch/tag of OSA you've deployed | 12:35 |
odyssey4me | we have the convenient date comment available there | 12:35 |
odyssey4me | for example, if you deployed OSA 14.0.7 then you'd have this SHA: https://github.com/openstack/openstack-ansible/blob/14.0.7/playbooks/defaults/repo_packages/openstack_services.yml#L75 | 12:36 |
odyssey4me | versus the head of stable/newton which is https://github.com/openstack/openstack-ansible/blob/stable/newton/playbooks/defaults/repo_packages/openstack_services.yml#L75 | 12:36 |
openstackgerrit | Merged openstack/openstack-ansible-os_neutron stable/newton: Move to use Tempest tests for Neutron https://review.openstack.org/434171 | 12:38 |
hachi | Hello, | 12:38 |
hachi | I hope some OSA developers with Ceph expertise are around | 12:38 |
hachi | I managed to integrated ceph on the master branch of OSA with stable/netwton branch | 12:39 |
asettle | Ahhh if logan- is around, I believe he's your Ceph dude. | 12:39 |
*** sdake_ has joined #openstack-ansible | 12:39 | |
hachi | but when i check i see my Ceph is stuck at peering with this error message: | 12:40 |
hachi | http://paste.openstack.org/show/599210/ | 12:40 |
openstackgerrit | Jesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-os_neutron stable/newton: Remove UCA/RDO in role https://review.openstack.org/433574 | 12:40 |
hachi | Please advice if you can ? | 12:40 |
hachi | asettle i hope so :) | 12:41 |
*** smatzek has joined #openstack-ansible | 12:41 | |
*** Jack_Iv has joined #openstack-ansible | 12:41 | |
asettle | hachi: won't be online just yet, it's only 6.42am in the U.S | 12:42 |
asettle | I dunno if anyone else here has the same Ceph experience with OSA | 12:42 |
*** sdake has quit IRC | 12:42 | |
*** esberglu has joined #openstack-ansible | 12:42 | |
*** thorst_ has joined #openstack-ansible | 12:44 | |
hachi | asettle it is ok i can wait, i hope he will notice my message when will be online | 12:44 |
*** smatzek has quit IRC | 12:45 | |
*** smatzek has joined #openstack-ansible | 12:45 | |
*** hw_wutianwei has quit IRC | 12:45 | |
*** esberglu has quit IRC | 12:47 | |
Andrew_jedi | hachi: Hello | 12:48 |
Andrew_jedi | hachi: Can you show me the output of " ceph osd tree", "ceph osd dump" and your user_variables.yaml file | 12:49 |
openstackgerrit | Andy McCrae proposed openstack/openstack-ansible-os_nova stable/ocata: Setup "os_interface" option for placement service https://review.openstack.org/434868 | 12:49 |
hachi | Andrew_jedi: Hello, ok wait a sec please | 12:49 |
Andrew_jedi | hachi: Have you used this https://github.com/ceph/ceph-ansible for deploying ceph ? | 12:50 |
hachi | yes | 12:50 |
Andrew_jedi | ok | 12:50 |
Andrew_jedi | hachi: then i would also need to see the "group_vars/all, group_vars/osds" files | 12:52 |
Andrew_jedi | :) | 12:52 |
hachi | ceph osd dump command: | 12:52 |
hachi | http://paste.openstack.org/show/599216/ | 12:52 |
hachi | I grouped my ceph variables into one file (user_ceph.yml): | 12:53 |
Andrew_jedi | ok | 12:54 |
hachi | http://paste.openstack.org/show/599217/ | 12:54 |
hachi | ceph osd dump: | 12:58 |
hachi | http://paste.openstack.org/show/599218/ | 12:58 |
asettle | Thanks Andrew_jedi :) | 12:58 |
Andrew_jedi | asettle: :) | 12:59 |
hachi | thank you as well :) | 12:59 |
odyssey4me | andymccr did nova merge an ocata backport for os_placement? | 13:00 |
andymccr | odyssey4me: yeah! | 13:00 |
odyssey4me | orsm | 13:00 |
andymccr | theyre gonna put a "fix" on top but the fix won't impact our implementation at all | 13:00 |
Andrew_jedi | hachi: you have 6 osds but your size and min_size is 3 and 2 respectiviely | 13:00 |
andymccr | so happy days | 13:00 |
openstackgerrit | Jesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-os_nova stable/ocata: Enable cell auto enrollment https://review.openstack.org/434889 | 13:01 |
Andrew_jedi | hachi: but that should not bring the cluster to error state | 13:01 |
hachi | Andrew_jedi, so i need to set min_size to 1 ? | 13:03 |
hachi | i am a bit newt to ceph | 13:03 |
openstackgerrit | Alexandra Settle proposed openstack/openstack-ansible master: [ops-guide] Add rabbitmq content https://review.openstack.org/431499 | 13:03 |
Andrew_jedi | hachi: you may want to size to 6 and min_size to 2, also you may want to set "osd_pool_default_pg_num and osd_pool_default_pgp_num" to 1000 becuase you cannot increase this value later on but you can always decrease it | 13:05 |
Andrew_jedi | hachi: osd_recovery_max_active to 5 and osd_max_backfills to 3 | 13:06 |
Andrew_jedi | hachi: Could you please also show me the /etc/openstack_deploy/openstack_user_config.yaml"? | 13:06 |
hachi | ok wait a sec please | 13:07 |
Andrew_jedi | hachi: sorry, /etc/openstack_deploy/user_variables.yaml | 13:07 |
Andrew_jedi | this one | 13:07 |
hachi | ok | 13:07 |
hachi | user_variables.yaml: | 13:09 |
hachi | http://paste.openstack.org/show/599221/ | 13:09 |
*** fandi has quit IRC | 13:09 | |
*** fandi has joined #openstack-ansible | 13:10 | |
*** Hosam has quit IRC | 13:11 | |
Andrew_jedi | hachi: this is a working conf for 3 mon 1 osd (VMs) based on ceph-ansible http://paste.openstack.org/show/599224/ | 13:14 |
*** gouthamr has joined #openstack-ansible | 13:15 | |
Andrew_jedi | hachi: L49, cluster_network : 172.29.244.0/24 ??? | 13:16 |
Mr_Smurf | odyssey4me: ok, thanks.. | 13:17 |
hachi | Andrew_jedi that the newtork of br-storage | 13:18 |
hachi | bridge | 13:18 |
Andrew_jedi | hachi: Ok and is this assumption correct that this network is present in your OSD nodes as well ? | 13:19 |
Andrew_jedi | hachi: Could you please aslo me the "ceph -w" outupt ? | 13:20 |
hachi | yes i can ping it from all the nodes of the cluser | 13:20 |
hachi | ok | 13:20 |
hachi | http://paste.openstack.org/show/599228/ | 13:22 |
hachi | Andrew_jedi: i noticed something between our conf files | 13:22 |
hachi | under your ceph_conf_overrides section you are using spaces between variables and I am using underscores, | 13:24 |
hachi | it could be a problem ? | 13:24 |
Andrew_jedi | hachi: How about we look at your ceph.conf please ? | 13:25 |
Andrew_jedi | hachi: this could be the issue | 13:25 |
*** esberglu has joined #openstack-ansible | 13:26 | |
hachi | ceph.conf: | 13:27 |
hachi | http://paste.openstack.org/show/599229/ | 13:27 |
mhayden | morning | 13:29 |
*** Jeffrey4l has quit IRC | 13:30 | |
*** Jeffrey4l has joined #openstack-ansible | 13:31 | |
*** Jack_Iv has quit IRC | 13:31 | |
*** klamath_ has joined #openstack-ansible | 13:32 | |
*** klamath_ has quit IRC | 13:32 | |
*** klamath_ has joined #openstack-ansible | 13:33 | |
*** Jack_Iv has joined #openstack-ansible | 13:33 | |
*** Jack_Iv has quit IRC | 13:33 | |
hachi | Andrew_jedi i think my ceph.conf is wrong, some variables in the ceph.conf contains underscores while others does not | 13:33 |
*** Jack_Iv has joined #openstack-ansible | 13:33 | |
hachi | also,the ip addresses on mon host are duplicated | 13:34 |
Andrew_jedi | hachi: Yes it is and also you may want to check why there are so mans there | 13:34 |
Andrew_jedi | Yep | 13:34 |
hachi | i think the root cause is underscores under ceph_conf_overrides section | 13:35 |
hachi | i will reconfigure and see ? | 13:35 |
Andrew_jedi | hachi: Probably yes! | 13:35 |
hachi | Andrew_jedi ok thank you for your help | 13:36 |
mgariepy | morning everyone | 13:36 |
Andrew_jedi | hachi: You're welcome :) | 13:36 |
*** klamath_ has quit IRC | 13:37 | |
*** japestinho has joined #openstack-ansible | 13:38 | |
mhayden | odyssey4me: not sure if you want to remove your +2 on this one or not -> https://review.openstack.org/434819 | 13:40 |
*** gouthamr has quit IRC | 13:42 | |
*** gouthamr has joined #openstack-ansible | 13:43 | |
*** woodard has joined #openstack-ansible | 13:43 | |
*** woodard has quit IRC | 13:44 | |
*** woodard has joined #openstack-ansible | 13:44 | |
*** fandi has quit IRC | 13:45 | |
openstackgerrit | Merged openstack/openstack-ansible-plugins master: Remove apt-get update in Vagranfile as we do it in run_test.sh https://review.openstack.org/434607 | 13:45 |
openstackgerrit | Merged openstack/openstack-ansible master: [DOCS] Move limited connectivity section to Deploy Guide https://review.openstack.org/434805 | 13:46 |
*** sdake_ is now known as sdake | 13:48 | |
openstackgerrit | Merged openstack/openstack-ansible-openstack_hosts stable/newton: Corrected vars default openstack_host_sysstat_file https://review.openstack.org/434252 | 13:48 |
openstackgerrit | Merged openstack/openstack-ansible-openstack_hosts stable/ocata: Corrected vars default openstack_host_sysstat_file https://review.openstack.org/434251 | 13:48 |
openstackgerrit | Merged openstack/openstack-ansible master: [DOCS] Fix link to plugins docs https://review.openstack.org/434455 | 13:51 |
openstackgerrit | Jean-Philippe Evrard proposed openstack/openstack-ansible master: [Docs] Remove Kilo https://review.openstack.org/434918 | 13:54 |
openstackgerrit | Merged openstack/openstack-ansible-os_neutron stable/newton: Remove UCA/RDO in role https://review.openstack.org/433574 | 13:55 |
*** winggundamth has quit IRC | 14:01 | |
*** stuartgr has left #openstack-ansible | 14:01 | |
*** kberger has quit IRC | 14:06 | |
openstackgerrit | Merged openstack/openstack-ansible-os_cinder stable/ocata: Update paste, policy and rootwrap configurations 2017-02-15 https://review.openstack.org/434242 | 14:06 |
*** kberger has joined #openstack-ansible | 14:06 | |
openstackgerrit | Merged openstack/openstack-ansible-os_neutron stable/ocata: Update paste, policy and rootwrap configurations 2017-02-15 https://review.openstack.org/434243 | 14:09 |
openstackgerrit | Merged openstack/openstack-ansible-os_neutron stable/newton: Include l3-ha for openvswitch based deployments https://review.openstack.org/434337 | 14:10 |
openstackgerrit | Merged openstack/openstack-ansible-os_neutron stable/ocata: Include l3-ha for openvswitch based deployments https://review.openstack.org/434336 | 14:10 |
openstackgerrit | Jean-Philippe Evrard proposed openstack/openstack-ansible master: [Docs] Complete the example file https://review.openstack.org/434819 | 14:10 |
openstackgerrit | Jean-Philippe Evrard proposed openstack/openstack-ansible master: [Docs] Complete the example file https://review.openstack.org/434819 | 14:11 |
Andrew_jedi | andymccr: Hello :). I was wondering if you have a minute. This is my plan for trying out designate role in Newton, but i am not sure where should i add the newton SHA part. http://paste.openstack.org/show/599240/ | 14:12 |
openstackgerrit | Merged openstack/openstack-ansible-tests master: Disable cells auto enrollment in testing repo https://review.openstack.org/434849 | 14:13 |
odyssey4me | Andrew_jedi I think you mean designate_all instead of magnum_all | 14:13 |
odyssey4me | and 'designate_git_install_branch: master' should have the SHA or branch you want | 14:14 |
andymccr | ^ that :) | 14:14 |
Andrew_jedi | odyssey4me: Oops, thanks for pointing this out :) | 14:14 |
odyssey4me | Andrew_jedi also, the extras folder may be out of date | 14:14 |
odyssey4me | the content should actually be removed | 14:15 |
*** cathrich_ has joined #openstack-ansible | 14:15 | |
odyssey4me | have you forked the role so that you can adjust the templates, etc for newton specifics? | 14:15 |
*** jperry has joined #openstack-ansible | 14:15 | |
*** markb1 has joined #openstack-ansible | 14:15 | |
Andrew_jedi | odyssey4me: Nope, I have not, looks like it is gonna be very tricky. | 14:16 |
*** cathrichardson has quit IRC | 14:16 | |
andymccr | Andrew_jedi: it may be worth trying it out - not too much changed in that role until recently, and newton is still technically the active release. It may work (may not) but worth trying imo. | 14:17 |
openstackgerrit | Marc Gariépy proposed openstack/openstack-ansible master: Add CentOS support for AIO setup https://review.openstack.org/407690 | 14:17 |
evrardjp | odyssey4me: can we use pip install package1 package2 package3 package4 or is that a bad idea? | 14:17 |
odyssey4me | evrardjp we already do | 14:17 |
evrardjp | ok | 14:17 |
Andrew_jedi | odyssey4me: I thought just changing the SHA will be enough :/ | 14:17 |
Andrew_jedi | andymccr: Roger that :) | 14:17 |
odyssey4me | in newton we join the list using the join filter, in ocata onwards we don't need to because ansible does it for us | 14:17 |
odyssey4me | I think for Designate it may be fine - as long as it doesn't drop any policy files down and the ocata branch has nothing ocata specific in it | 14:18 |
andymccr | but yeh set the SHA to head of stable/newton for designate, because the requirements changes will probably cause issues if you dont! | 14:18 |
evrardjp | well that's the thing. I'm not sure it does :D | 14:18 |
evrardjp | let me fix that in ansible | 14:18 |
mgariepy | mhayden, http://logs.openstack.org/90/407690/37/check/gate-openstack-ansible-openstack-ansible-aio-centos-7-nv/7bd3c4b/console.html#_2017-02-16_09_45_26_385119 | 14:20 |
*** adrian_otto has joined #openstack-ansible | 14:21 | |
openstackgerrit | Andy McCrae proposed openstack/openstack-ansible-tests master: Set the Nova wsgi processes and threads https://review.openstack.org/434933 | 14:22 |
Andrew_jedi | andymccr: setting this "designate_git_install_branch: 660d80076d8c1779fb3759a9bcada18f6488f282". stable/newton for designate https://github.com/openstack/designate/commits/stable/newton | 14:22 |
andymccr | Andrew_jedi: yeah that should do it | 14:23 |
odyssey4me | yup | 14:23 |
Andrew_jedi | odyssey4me andymccr : thank you very much for your suggestions :) | 14:24 |
odyssey4me | you can also just do 'stable/newton' instead of the SHA if you want, but then every time you run the repo build it'll build a new version ;) | 14:24 |
openstackgerrit | Merged openstack/openstack-ansible-os_tempest master: Refresh multi-backend variables https://review.openstack.org/434536 | 14:24 |
odyssey4me | although I doubt that there'll be many more patches to newton once ocata releases | 14:24 |
*** adrian_otto has quit IRC | 14:24 | |
andymccr | yeah go for a SHA - i think as odyssey4me said you'll run into issues, but they may not be that bad - so i think it's worth a go | 14:24 |
*** markb1 has quit IRC | 14:24 | |
Andrew_jedi | roger that :) | 14:24 |
odyssey4me | Andrew_jedi so these files are the ones that may require you to fork our role: https://github.com/openstack/openstack-ansible-os_designate/tree/master/files/rootwrap.d | 14:25 |
odyssey4me | depending on whether designate in newton has different content | 14:25 |
odyssey4me | also https://github.com/openstack/openstack-ansible-os_designate/blob/master/templates/api-paste.ini.j2 & https://github.com/openstack/openstack-ansible-os_designate/blob/master/templates/policy.json.j2 | 14:26 |
openstackgerrit | Merged openstack/openstack-ansible-os_nova stable/ocata: Setup "os_interface" option for placement service https://review.openstack.org/434868 | 14:26 |
odyssey4me | and https://github.com/openstack/openstack-ansible-os_designate/blob/master/templates/rootwrap.conf.j2 | 14:26 |
odyssey4me | and finally https://github.com/openstack/openstack-ansible-os_designate/blob/master/templates/sudoers.j2 | 14:26 |
*** The_Intern has joined #openstack-ansible | 14:26 | |
mgariepy | odyssey4me, updated my patch let's see how it goes :) | 14:27 |
openstackgerrit | Matt Thompson proposed openstack/openstack-ansible-os_tempest stable/ocata: Refresh multi-backend variables https://review.openstack.org/434935 | 14:27 |
openstackgerrit | Andy McCrae proposed openstack/openstack-ansible master: SHA Bump for master 15-02-2017 https://review.openstack.org/434234 | 14:28 |
odyssey4me | mgariepy cool, as long as this passes for xenial I'm game for getting it in | 14:28 |
odyssey4me | and backporting it | 14:28 |
odyssey4me | having this stuff in is crucial to maturing the centos support through the next cycle in the hopes of being ready for production use! | 14:29 |
openstackgerrit | Jesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-tests stable/ocata: Disable cells auto enrollment in testing repo https://review.openstack.org/434937 | 14:29 |
mhayden | mgariepy: looking | 14:29 |
mgariepy | mhayden, it does happen some times but not at every passes. | 14:30 |
*** cathrich_ is now known as cathrichardson | 14:30 | |
mhayden | odyssey4me / andymccr: could y'all help me find someone to run today's mtg? i'll be in some meetings promoting synergy | 14:30 |
openstackgerrit | Jesse Pretorius (odyssey4me) proposed openstack/openstack-ansible stable/ocata: [DOCS] Move limited connectivity section to Deploy Guide https://review.openstack.org/434938 | 14:30 |
mhayden | mgariepy: wow, that's weird | 14:30 |
mhayden | does it only happen on AIOs? | 14:30 |
mgariepy | i've only seen it there but it might be for other reasons. | 14:31 |
Andrew_jedi | odyssey4me: thanks, i have noted down all the file names for reference :) | 14:31 |
mhayden | hmm, that task only ensures it has enabled: yes and state: started | 14:31 |
mhayden | it doesn't restart it (the handler does that) | 14:31 |
mhayden | i wonder if there's a special ssh service running inside the CI env | 14:32 |
mgariepy | why would it be ok sometimes and not others ? | 14:32 |
mgariepy | isn't the CI env mostly static in it's configuration ? | 14:33 |
openstackgerrit | Jesse Pretorius (odyssey4me) proposed openstack/openstack-ansible stable/ocata: [DOCS] Move limited connectivity section to Deploy Guide https://review.openstack.org/434938 | 14:33 |
*** markb1 has joined #openstack-ansible | 14:35 | |
*** smatzek has quit IRC | 14:36 | |
openstackgerrit | Matt Thompson proposed openstack/openstack-ansible-os_tempest stable/newton: Updates Tempest.conf.j2 https://review.openstack.org/434941 | 14:36 |
*** chhavi has quit IRC | 14:37 | |
mattt | any objections to backporting https://review.openstack.org/#/c/434941/ to stable/newton? it looks like all those fixes are applicable there also | 14:37 |
odyssey4me | mattt ocata too please | 14:38 |
odyssey4me | no objections from me | 14:38 |
*** winggundamth has joined #openstack-ansible | 14:38 | |
*** Andrew_jedi has quit IRC | 14:38 | |
mattt | odyssey4me: i think it was added in ocata, so should already be there | 14:39 |
odyssey4me | mattt ah , I thought you meant your other patch | 14:39 |
odyssey4me | yeah, that one's there, now that I see you ref :p | 14:40 |
openstackgerrit | Jesse Pretorius (odyssey4me) proposed openstack/openstack-ansible stable/newton: [DOCS] Move limited connectivity section to Deploy Guide https://review.openstack.org/434944 | 14:41 |
openstackgerrit | Matt Thompson proposed openstack/openstack-ansible-os_tempest stable/newton: Refresh multi-backend variables https://review.openstack.org/434945 | 14:41 |
mattt | :) | 14:42 |
*** ngupta has joined #openstack-ansible | 14:42 | |
openstackgerrit | Jesse Pretorius (odyssey4me) proposed openstack/openstack-ansible stable/newton: [DOCS] Move limited connectivity section to Deploy Guide https://review.openstack.org/434944 | 14:42 |
*** ngupta_ has joined #openstack-ansible | 14:43 | |
*** esberglu has quit IRC | 14:43 | |
*** esberglu has joined #openstack-ansible | 14:44 | |
*** pjm6 has quit IRC | 14:44 | |
*** ngupta has quit IRC | 14:46 | |
logan- | hachi: did you get your cluster working? | 14:47 |
*** esberglu has quit IRC | 14:48 | |
logan- | seems like the master gate is busted with these right now? http://logs.openstack.org/74/434274/1/check/gate-openstack-ansible-openstack-ansible-aio-ubuntu-xenial/aebc1fd/logs/openstack/aio1-nova/nova-compute.log.txt.gz#_2017-02-16_14_45_53_031 | 14:52 |
evrardjp | oh :( | 14:53 |
stevelle | logan-: did you see a mailing list discussion mention that? I think it was under the [Designate] convo | 14:53 |
stevelle | might be related | 14:53 |
*** Andrew_jedi has joined #openstack-ansible | 14:54 | |
logan- | thanks stevelle taking a look | 14:54 |
stevelle | might require tempest sha bump | 14:54 |
logan- | cool, guess we'll see how the tests look on https://review.openstack.org/#/c/434234/ | 14:56 |
*** shausy has quit IRC | 14:57 | |
*** pjm6 has joined #openstack-ansible | 14:57 | |
*** FrankZhang has joined #openstack-ansible | 14:57 | |
openstackgerrit | Merged openstack/openstack-ansible stable/ocata: Update Keepalived https://review.openstack.org/434214 | 14:58 |
*** esberglu has joined #openstack-ansible | 14:58 | |
*** smatzek has joined #openstack-ansible | 15:00 | |
*** cjloader_ has joined #openstack-ansible | 15:01 | |
*** markb1 has quit IRC | 15:07 | |
*** Foysal has joined #openstack-ansible | 15:11 | |
Foysal | hello | 15:12 |
*** lucasxu has joined #openstack-ansible | 15:15 | |
*** lucasxu has quit IRC | 15:18 | |
*** markb1 has joined #openstack-ansible | 15:19 | |
*** cjloader_ has quit IRC | 15:20 | |
*** weezS has joined #openstack-ansible | 15:20 | |
*** cjloader_ has joined #openstack-ansible | 15:20 | |
*** marst has quit IRC | 15:20 | |
*** chris_hultin|AWA is now known as chris_hultin | 15:21 | |
*** marst has joined #openstack-ansible | 15:30 | |
andymccr | cloudnull, mattt, andymccr, d34dh0r53, hughsaunders, b3rnard0, palendae, Sam-I-Am, odyssey4me, serverascode, rromans, erikmwilson, mancdaz, _shaps_, BjoernT, claco, echiu, dstanek, jwagner, ayoung, prometheanfire, evrardjp, arbrandes, mhayden, scarlisle, luckyinva, ntt, javeriak, automagically, spotz, vdo, jmccrory, alextricity25, jasondotstar, admin0, michaelgugino, ametts, v1k0d3n, severion, bgmccollum, | 15:34 |
andymccr | darrenc, JRobinson__, asettle, colinmcnamara, thorst, adreznec, eil397, qwang,nishpatwa_, cathrichardson, drifterza, sc68cal | 15:34 |
andymccr | meeting in 26 minutes! in #openstack-meeting-4 | 15:34 |
*** lucasxu has joined #openstack-ansible | 15:34 | |
*** woodard has quit IRC | 15:35 | |
hachi | logan- : Unfortunately,no | 15:35 |
hachi | i still have the same error message | 15:35 |
evrardjp | thanks andymccr | 15:35 |
asettle | thanks andymccr :) | 15:35 |
mgariepy | is the ceilometer restart still taking 5 minutes for Ocata ? | 15:36 |
hachi | logan- : i can share with you my ceph situation | 15:36 |
hachi | if you do not have a meeting :) | 15:37 |
logan- | I saw you posted some configs earlier hachi, let me take a look thru that real quick and then we can discuss further | 15:37 |
hachi | ok thanks | 15:37 |
logan- | can all of your osd nodes ping each other across the 172.29.244.x network | 15:40 |
*** markb1 has quit IRC | 15:40 | |
logan- | it looks like the public network is functioning properly, the osds and mons appear to be communicating, however if the pgs are stuck in peering it would seem the osds are having trouble talking on the cluster network | 15:41 |
hachi | i am going to check again and let you know | 15:42 |
logan- | as a test you could remove the cluster network statement from your config, leaving only the public network, and then all of the ceph communication will occur over 172.29.236.0/24 | 15:42 |
hachi | so if i comment the cluster network in user_ceph.yml and run the ceph playbook will do it ? | 15:44 |
*** faizy has joined #openstack-ansible | 15:45 | |
mgariepy | evrardjp, we might need to do something about this on the CI check : Repository rdo-trunk-newton-tested is listed more than once in the configuration | 15:46 |
logan- | yes hachi | 15:46 |
evrardjp | mgariepy: that sounds bad, it should be idempotent | 15:46 |
evrardjp | we give the filename | 15:46 |
evrardjp | IIRC | 15:46 |
alextricity25_ | andymccr: How do you determine when/what version to upgrade setuptools on the SHA bumps? | 15:47 |
*** alextricity25_ is now known as alextricity25 | 15:47 | |
hachi | logan- i am going to do it and let you know | 15:47 |
evrardjp | mgariepy: could you paste me a link? | 15:47 |
mgariepy | yeah the issue is probably that RDO is already installed in the vm | 15:47 |
evrardjp | haha. ok | 15:48 |
mgariepy | http://logs.openstack.org/90/407690/38/check/gate-openstack-ansible-openstack-ansible-aio-centos-7-nv/2a2ded8/console.html#_2017-02-16_15_39_53_789631 | 15:48 |
evrardjp | is there a way to make this idempotent? I'd consider this as an ansible bug IMO :D | 15:48 |
mgariepy | it's a yum issue IMO :P | 15:49 |
evrardjp | yes more like it | 15:49 |
odyssey4me | alextricity25 the sha bumping script grabs the current version available in pypi | 15:49 |
evrardjp | or let's say a whole packaging mess :D | 15:49 |
alextricity25 | odyssey4me: Got it. Thanks | 15:50 |
odyssey4me | alextricity25 https://github.com/openstack/openstack-ansible/blob/master/scripts/sources-branch-updater.sh#L203 | 15:50 |
evrardjp | let me finish something, and we can make it work. | 15:50 |
openstackgerrit | Merged openstack/openstack-ansible master: [Docs] Remove Kilo https://review.openstack.org/434918 | 15:51 |
openstackgerrit | Jesse Pretorius (odyssey4me) proposed openstack/openstack-ansible master: [Docs] Complete the example file https://review.openstack.org/434819 | 15:53 |
*** Jack_Iv has quit IRC | 15:54 | |
*** Jack_Iv has joined #openstack-ansible | 15:54 | |
andymccr | logan-: i see the ceph gate is passing now. nice one! | 15:54 |
*** vnogin has quit IRC | 15:54 | |
logan- | thanks. i guess the cell auto enrollment did the trick there | 15:54 |
mcrafty | hello, is there a "proper way" to update os-brick pip package in a mitaka environment? Need to get stable/mitaka os-brick release installed which is 1.11 vs 1.2 in osa 13.2.12. (Sorry asked yesterday, but lost buffer) | 15:54 |
logan- | glad to see it working again. before we merged the placement api stuff it already helped catch a ceph-ansible bug introduced to their master branch :p | 15:55 |
odyssey4me | mcrafty the version installed will be specified by upper constraints upstream | 15:56 |
andymccr | excellent - also i think the nginx memory work seems like it may have helped for the gate | 15:56 |
logan- | :D | 15:56 |
mcrafty | any built in variable to override or naw? just do it manually? | 15:56 |
odyssey4me | mcrafty so at the tip of mitaka it's https://github.com/openstack/requirements/blob/stable/mitaka/upper-constraints.txt#L202 | 15:56 |
mcrafty | solidfire recommending I update as 1.2 is ugh | 15:56 |
hachi | logan- the cluster network is on the br-mgmt now but still have the same error. here is how my ceph.conf looks like : | 15:57 |
odyssey4me | mcrafty if you go higher than u-c then you're moving into territory where your package set is untested anywhere | 15:57 |
mcrafty | yea, understood | 15:57 |
hachi | logan- http://paste.openstack.org/show/599270/ | 15:57 |
odyssey4me | mcrafty but you can do it - we have a var that allows you to override upper constraints, hang on a sec | 15:57 |
logan- | i'd start checking netstat and ceph-osd logs on the hosts hachi. make sure you have connectivity between the osd nodes as that is where the peering connections occur | 15:57 |
mcrafty | have to support multipath and non multipath backends so kind of stuck with this path | 15:57 |
mcrafty | tx oddyz | 15:58 |
odyssey4me | mcrafty https://github.com/openstack/openstack-ansible-repo_build/blob/stable/mitaka/defaults/main.yml#L27 | 15:58 |
logan- | if the osds cannot connect to each other, possibly due to networking or firewall issues, that is when you get pgs stuck in peering | 15:58 |
*** winggundamth has quit IRC | 15:58 | |
*** unlaudable has quit IRC | 15:58 | |
andymccr | cloudnull, mattt, andymccr, d34dh0r53, hughsaunders, b3rnard0, palendae, Sam-I-Am, odyssey4me, serverascode, rromans, erikmwilson, mancdaz, _shaps_, BjoernT, claco, echiu, dstanek, jwagner, ayoung, prometheanfire, evrardjp, arbrandes, mhayden, scarlisle, luckyinva, ntt, javeriak, automagically, spotz, vdo, jmccrory, alextricity25, jasondotstar, admin0, michaelgugino, ametts, v1k0d3n, severion, bgmccollum, | 15:58 |
andymccr | darrenc, JRobinson__, asettle, colinmcnamara, thorst, adreznec, eil397, qwang,nishpatwa_, cathrichardson, drifterza, sc68cal | 15:58 |
andymccr | meeting in 2 mins in #openstack-meeting-4 | 15:58 |
mcrafty | roger, just set it to os-brick===1.11 and good I assume | 15:58 |
mcrafty | tx | 15:58 |
odyssey4me | if you put "repo_build_upper_constraints_overrides: [ 'os-brick==<version you want>' ]" into your /etc/openstack_deploy/user_variables.yml file then execute the repo build then it'll try and build using that package | 15:59 |
odyssey4me | mcrafty to be honest though, perhaps you're better off upgrading to newton :p | 15:59 |
stevelle | I really want os-brick to be about legos | 15:59 |
mcrafty | yea, I'm going to very soon | 15:59 |
hachi | logan-, i will check again, though all the nodes can ping each other | 15:59 |
mcrafty | I was curious if I should just update cinder to newton first, but not sure about upper constraints there, checking for changes | 16:00 |
odyssey4me | mcrafty mixing and matching is a rather hairy path to travel | 16:00 |
mcrafty | brick still only 1.6 there lol | 16:00 |
mcrafty | yea | 16:00 |
mgariepy | evrardjp, i'm kinda stuck in a meeting right now i can also check it out maybe this afternoon. | 16:00 |
odyssey4me | whatever you do, test it in an environment you can afford to break things in first | 16:00 |
mcrafty | at least solidfire got my back here (john g recommeding) | 16:01 |
mcrafty | scary regardless | 16:01 |
mcrafty | easier to just drop my other cinder backend :> | 16:01 |
logan- | hachi: gotcha. osd logs, ping, netstat -np, and "telnet <other osd host> 6789" are my thoughts for now | 16:01 |
odyssey4me | mcrafty as long as os-brick doesn't have other requirements that are incompatible, then it should just work (tm) | 16:01 |
*** crushil has joined #openstack-ansible | 16:02 | |
*** fxpester has quit IRC | 16:04 | |
*** Jack_Iv_ has joined #openstack-ansible | 16:07 | |
*** rdotcom has quit IRC | 16:09 | |
*** weezS has quit IRC | 16:09 | |
*** cjloader_ has quit IRC | 16:10 | |
*** Jack_Iv has quit IRC | 16:11 | |
*** woodard has joined #openstack-ansible | 16:11 | |
*** pcaruana has quit IRC | 16:11 | |
hachi | logan- i am going to share the output of the commands you mention on one osd node (compute01), maybe you get a better idea: | 16:13 |
logan- | cool | 16:13 |
hachi | netstat -np|grep -i ceph: | 16:13 |
hachi | http://paste.openstack.org/show/599275/ | 16:14 |
hachi | telnet: | 16:14 |
hachi | http://paste.openstack.org/show/599276/ | 16:14 |
hachi | logs of compute01: | 16:15 |
*** faizy has quit IRC | 16:15 | |
*** woodard has quit IRC | 16:16 | |
hachi | tail -n 50 /var/log/ceph/ceph-osd.admin.log | 16:16 |
*** woodard has joined #openstack-ansible | 16:16 | |
hachi | http://paste.openstack.org/show/599278/ | 16:17 |
hachi | tail -n 50 /var/log/ceph/ceph-osd.3.log | 16:17 |
hachi | http://paste.openstack.org/show/599279/ | 16:19 |
hachi | so what do you think logan- ? :) | 16:19 |
openstackgerrit | Merged openstack/openstack-ansible-os_swift master: Remove RDO repo from role https://review.openstack.org/433781 | 16:19 |
*** Oku_OS is now known as Oku_OS-away | 16:21 | |
hachi | telnet or nc -nzv commands got connection refused but i don't know why | 16:21 |
*** The_Intern has quit IRC | 16:21 | |
*** ngupta_ has quit IRC | 16:22 | |
*** The_Intern has joined #openstack-ansible | 16:22 | |
*** ngupta has joined #openstack-ansible | 16:22 | |
*** sdake_ has joined #openstack-ansible | 16:24 | |
logan- | sorry hachi I think 6789 is the mons port actually | 16:24 |
logan- | what does netstat -nlp show for ceph-osd listeners | 16:24 |
logan- | and can you telnet between hosts on them ;) | 16:24 |
logan- | just to make sure the connection is accepted | 16:24 |
*** The_Intern has quit IRC | 16:26 | |
*** sdake has quit IRC | 16:26 | |
hachi | logan-: netstat -nlp|grep -i ceph | 16:27 |
logan- | seems like there's data sitting in the send queue on your netstat, and the osd log shows connections failing, so you might need to start tcpdumping to see where the packet drops occur | 16:28 |
logan- | check your MTUs in the path between the osds | 16:28 |
hachi | http://paste.openstack.org/show/599281/ | 16:28 |
hachi | which port should be used with telnet to check before using tcpdump ? | 16:30 |
logan- | any of those 6800-6807 should accept | 16:30 |
logan- | if they accept but you're seeing data stuck in the send queue like that, i start wondering about MTU | 16:31 |
hachi | ah, they accept: | 16:32 |
hachi | http://paste.openstack.org/show/599282/ | 16:33 |
hachi | i ma going to check the value of my MTU | 16:33 |
jrosser_ | you can ping with the df bit set to test the mtu | 16:34 |
openstackgerrit | Andy McCrae proposed openstack/openstack-ansible master: SHA Bump for master 15-02-2017 https://review.openstack.org/434234 | 16:34 |
*** The_Intern has joined #openstack-ansible | 16:36 | |
openstackgerrit | Andy McCrae proposed openstack/openstack-ansible stable/ocata: SHA Bump for roles and upstream projects 15-02-2017 https://review.openstack.org/434244 | 16:36 |
openstackgerrit | Jean-Philippe Evrard proposed openstack/openstack-ansible-os_swift stable/ocata: Remove RDO repo from role https://review.openstack.org/435002 | 16:36 |
hachi | jrosser_ : can you please explain a bit how to test mtu ? i did not get it | 16:36 |
Andrew_jedi | andymccr odyssey4me : Ansible complains about incorrect module path.http://paste.openstack.org/show/599283/ | 16:36 |
openstackgerrit | Andy McCrae proposed openstack/openstack-ansible-os_nova master: Remove uwsgi http port and add var for buffer-size https://review.openstack.org/435003 | 16:37 |
jrosser_ | hachi: like this https://blah.cloud/hardware/test-jumbo-frames-working/ | 16:38 |
andymccr | Andrew_jedi: ahh that module was only added in ansible 2.2 | 16:38 |
jrosser_ | we had a very simial ceph vs. jumbo frames problem recently and you could see them being dropped on the switch | 16:38 |
Andrew_jedi | andymccr: ohhh, i am running ansible 2.1.4.0 | 16:39 |
andymccr | Andrew_jedi: if you were to change this back: https://github.com/openstack/openstack-ansible-os_designate/commit/1d0e2841a792520e1c0a1ca6942c1a72c835efce | 16:39 |
odyssey4me | Andrew_jedi you'll likely need to fork to adjust that task to what it was before | 16:40 |
andymccr | or you could update ansible requirement to be 2.2+ then that module would work | 16:40 |
andymccr | yeah ^ that | 16:41 |
Andrew_jedi | odyssey4me : Yep, looks like it. | 16:42 |
Andrew_jedi | andymccr odyssey4me : If i change the ansible requirement to 2.2 -- will that break anything in Newton? | 16:43 |
hachi | jrosser: i cannot ping with this cmd: | 16:43 |
andymccr | Andrew_jedi: it might do - i cant think of anything but it might do | 16:43 |
hachi | root@compute01:~# ping -M do -s 8972 172.29.236.35 | 16:43 |
hachi | PING 172.29.236.35 (172.29.236.35) 8972(9000) bytes of data. | 16:43 |
andymccr | you're probably safest adjusting the designate role | 16:43 |
hachi | do i need to increase my MTU ? | 16:44 |
Andrew_jedi | andymccr: roger that, thanks! | 16:44 |
*** weezS has joined #openstack-ansible | 16:44 | |
odyssey4me | Andrew_jedi maybe, maybe not :p | 16:49 |
odyssey4me | I'd agree with andymccr - your safest path for production is to fork the role, customise it for the needs of stable/newton and use that | 16:49 |
odyssey4me | the less you muddle with the rest of the infra, the better | 16:50 |
andymccr | yeah i mean right now it's just the systemd module (and maybe some others) but if you have that incompatibility for every role it may be worse | 16:53 |
andymccr | and you will still have the designate incompatibilities for Newton vs Ocata configs | 16:54 |
*** The_Intern has quit IRC | 16:54 | |
*** The_Intern has joined #openstack-ansible | 16:56 | |
*** kelv has quit IRC | 16:56 | |
openstackgerrit | Merged openstack/openstack-ansible master: [Docs] Complete the example file https://review.openstack.org/434819 | 16:56 |
openstackgerrit | Jean-Philippe Evrard proposed openstack/openstack-ansible stable/ocata: [Docs] Complete the example file https://review.openstack.org/435013 | 16:57 |
openstackgerrit | Jean-Philippe Evrard proposed openstack/openstack-ansible stable/newton: [Docs] Complete the example file https://review.openstack.org/435014 | 16:57 |
*** admin0 has quit IRC | 16:58 | |
*** ngupta has quit IRC | 16:58 | |
*** ngupta has joined #openstack-ansible | 16:58 | |
*** stuartgr has joined #openstack-ansible | 17:01 | |
*** pbandark has joined #openstack-ansible | 17:01 | |
*** japestinho_ has joined #openstack-ansible | 17:01 | |
openstackgerrit | Andy McCrae proposed openstack/openstack-ansible-os_swift master: Move swift upgrades into its own shell script https://review.openstack.org/433190 | 17:04 |
*** jpstnh has quit IRC | 17:04 | |
*** thorst_ is now known as thorst_afk | 17:05 | |
Andrew_jedi | andymccr: After making those changes, ansible installed a few things but then Pip failed to install some requirements http://paste.openstack.org/show/599288/ | 17:08 |
andymccr | Andrew_jedi: can you log into the designate container and try that pip install command manually? | 17:08 |
odyssey4me | Andrew_jedi ah, we're passing it a list | 17:09 |
andymccr | ahhh | 17:09 |
andymccr | of course | 17:09 |
odyssey4me | if you look at that line and git blame it you'll see what it was before | 17:09 |
odyssey4me | essentially you'll need to adjust it to use the join filter, or use with_items | 17:09 |
openstackgerrit | Andy McCrae proposed openstack/openstack-ansible-tests master: Set the Nova wsgi processes and threads https://review.openstack.org/434933 | 17:10 |
odyssey4me | in other words, reverse this change https://github.com/openstack/openstack-ansible-os_designate/commit/74589413c520e67f225ae32ff90dd7647ea58215 | 17:10 |
Andrew_jedi | odyssey4me: ahh, okay! | 17:12 |
openstackgerrit | Merged openstack/openstack-ansible-plugins master: [DOCS] Add docs for plugins https://review.openstack.org/434845 | 17:12 |
Andrew_jedi | andymccr odyssey4me : After installing the requirements manually and then running the playbooks again. Ansible complains "\n:stderr: Invalid requirement: '[virtualenv,'\nTraceback (most recent call last)" | 17:13 |
andymccr | Andrew_jedi: the manual install was more just to test it works :) | 17:13 |
odyssey4me | Andrew_jedi yeah, you need to revert that patch in your fork | 17:13 |
andymccr | the problem there is we changed the way we install those packages or rather provide the packages (we now use a list) | 17:13 |
odyssey4me | if you don't do it, it'll fail there | 17:13 |
Andrew_jedi | odyssey4me: ohhh, ok let me fix it then :) | 17:14 |
openstackgerrit | Jimmy McCrory proposed openstack/openstack-ansible stable/ocata: [DOCS] Fix link to plugins docs https://review.openstack.org/435031 | 17:15 |
*** chhavi has joined #openstack-ansible | 17:17 | |
evrardjp | haha I didn't got the chance to save my comments for the docs for plugins :/ | 17:19 |
evrardjp | well it's merged. | 17:19 |
jmccrory | evrardjp : see something that needed fixing? | 17:20 |
openstackgerrit | Andy McCrae proposed openstack/openstack-ansible-os_monasca stable/ocata: Update repo for stable/ocata https://review.openstack.org/430767 | 17:20 |
evrardjp | improving, no fixing. | 17:20 |
Andrew_jedi | Received HTTP error for http://172.29.238.220:8181/venvs/14.0.7/ubuntu/designate-14.0.7.checksum : HTTP Error 404: Not Found" | 17:20 |
evrardjp | I'm submitting a bug this way I don't forget for next week | 17:20 |
evrardjp | don't worry jmccrory | 17:21 |
Andrew_jedi | andymccr odyssey4me : http://paste.openstack.org/show/599292/ | 17:22 |
odyssey4me | Andrew_jedi did you do a repo build at all after adjusting the package sources? | 17:23 |
odyssey4me | and do you have hosts allocated to the right host groups? | 17:23 |
hachi | logan- , jrosser_ : thanks a lot for your help , indeed it was a MTU issue . | 17:23 |
hachi | my ceph is now working :) | 17:23 |
hachi | thank you | 17:23 |
logan- | awesome! | 17:23 |
odyssey4me | Andrew_jedi you should have these in user_secrets: https://github.com/openstack/openstack-ansible/blob/master/etc/openstack_deploy/user_secrets.yml#L145-L148 | 17:24 |
Andrew_jedi | odyssey4me: I did not do a repo rebuild :/ | 17:24 |
odyssey4me | and you should have this content in designate_all.yml https://github.com/openstack/openstack-ansible/blob/master/playbooks/inventory/group_vars/designate_all.yml | 17:24 |
odyssey4me | and this content https://github.com/openstack/openstack-ansible/blob/master/playbooks/inventory/env.d/designate.yml | 17:25 |
odyssey4me | and this playbook https://github.com/openstack/openstack-ansible/blob/master/playbooks/os-designate-install.yml | 17:26 |
odyssey4me | then finally you need something like this in /etc/openstack_deploy/conf.d: https://github.com/openstack/openstack-ansible/blob/master/etc/openstack_deploy/conf.d/designate.yml.example | 17:27 |
Andrew_jedi | odyssey4me: I think i have all the variables set but i did not rebuild the repo :/ | 17:27 |
odyssey4me | once that's all in place, do the repo build to ensure that the packages and venvs are built | 17:27 |
evrardjp | mgariepy: are you there? | 17:27 |
mgariepy | yep, but not for long. | 17:28 |
mgariepy | evrardjp, what's up ? | 17:29 |
*** ngupta has quit IRC | 17:34 | |
openstackgerrit | Merged openstack/openstack-ansible stable/ocata: [Docs] Complete the example file https://review.openstack.org/435013 | 17:34 |
*** ngupta has joined #openstack-ansible | 17:34 | |
*** jamesdenton has joined #openstack-ansible | 17:35 | |
openstackgerrit | Merged openstack/openstack-ansible stable/newton: [Docs] Complete the example file https://review.openstack.org/435014 | 17:35 |
*** jamesdenton has quit IRC | 17:40 | |
*** Jack_Iv_ has quit IRC | 17:40 | |
*** spotz is now known as spotz_zzz | 17:48 | |
*** Jack_Iv has joined #openstack-ansible | 17:49 | |
*** lucasxu has quit IRC | 17:53 | |
*** lucasxu has joined #openstack-ansible | 17:55 | |
*** chyka has joined #openstack-ansible | 17:57 | |
openstackgerrit | Jesse Pretorius (odyssey4me) proposed openstack/openstack-ansible stable/newton: [DOCS] Move limited connectivity section to Deploy Guide https://review.openstack.org/434944 | 17:59 |
*** spotz_zzz is now known as spotz | 17:59 | |
*** Jack_Iv has quit IRC | 18:00 | |
*** Jack_Iv has joined #openstack-ansible | 18:00 | |
*** cjloader_ has joined #openstack-ansible | 18:07 | |
*** Jack_Iv has quit IRC | 18:09 | |
*** Jack_Iv has joined #openstack-ansible | 18:10 | |
*** japestinho_ has quit IRC | 18:10 | |
*** ngupta has quit IRC | 18:12 | |
*** ngupta has joined #openstack-ansible | 18:12 | |
*** Jack_Iv has quit IRC | 18:12 | |
*** FrankZhang has quit IRC | 18:16 | |
*** jamesdenton has joined #openstack-ansible | 18:16 | |
*** FrankZhang has joined #openstack-ansible | 18:16 | |
Andrew_jedi | odyssey4me: repo error got resolved after making some changes suggested by you and then rebuilding the repo but now ansible complains about "AnsibleUndefinedVariable: /openstack/venvs/designate-{{ designate_venv_tag }}/bin: {{ venv_tag }}: 'venv_tag' is undefined"} | 18:17 |
Andrew_jedi | https://github.com/openstack/openstack-ansible-os_designate/blob/master/defaults/main.yml#L38 | 18:17 |
*** tsots has joined #openstack-ansible | 18:17 | |
tsots | hello | 18:17 |
tsots | given the fact that ansible runs on mac os x , can the role be deployed from a mac to the target hosts ? | 18:18 |
*** jamesdenton has quit IRC | 18:21 | |
hamzy | Does anyone know why "Execute tempest tests" at https://github.com/openstack/openstack-ansible-os_tempest/blob/stable/newton/tasks/tempest_run.yml#L16 would be skipped in the newton branch? | 18:25 |
hamzy | I see: | 18:25 |
hamzy | skipping: [aio1_utility_container-53addcbe] => {"changed": false, "skip_reason": "Conditional check failed", "skipped": true} | 18:25 |
Andrew_jedi | hamzy: Probably because "skip_reason": "Conditional check failed". | 18:27 |
hamzy | Andrew_jedi, yes, but where is the conditional check in that section? | 18:28 |
*** vnogin has joined #openstack-ansible | 18:30 | |
Andrew_jedi | tempest_run: False | 18:30 |
hamzy | In https://github.com/openstack/openstack-ansible-os_tempest/blob/stable/newton/tasks/tempest_run.yml#L16 ? | 18:30 |
*** vnogin has quit IRC | 18:30 | |
*** vnogin has joined #openstack-ansible | 18:31 | |
*** crushil has quit IRC | 18:31 | |
Andrew_jedi | hamzy: you may also want to checkout scripts/run-tempest.sh | 18:32 |
antonym | logan-: o/ | 18:33 |
Andrew_jedi | hamzy: not sure , but i am talking about this one https://github.com/openstack/openstack-ansible-os_tempest/blob/stable/newton/defaults/main.yml#L24 | 18:34 |
openstackgerrit | Merged openstack/openstack-ansible stable/ocata: [DOCS] Fix link to plugins docs https://review.openstack.org/435031 | 18:34 |
hamzy | Andrew_jedi, thanks! yeah I see there are some conditional checks on that variable elsewhere. I wish ansible would have reported the skipping earlier in the run. :) | 18:35 |
logan- | hey antonym! was looking thru the link from this morning. cool work you've done! | 18:35 |
Andrew_jedi | hamzy: :) | 18:35 |
openstackgerrit | Amy Marrich (spotz) proposed openstack/openstack-ansible stable/ocata: SHA Bump for roles and upstream projects 15-02-2017 https://review.openstack.org/434244 | 18:38 |
*** chhavi has quit IRC | 18:38 | |
spotz | odyssey4me: If you're around to re-review https://review.openstack.org/#/c/434244/4 I made a quick grammar check | 18:39 |
*** retreved has quit IRC | 18:42 | |
*** retreved has joined #openstack-ansible | 18:44 | |
*** stuartgr has quit IRC | 18:44 | |
*** smatzek has quit IRC | 18:52 | |
*** pbandark has quit IRC | 18:52 | |
redrobot | hi friends... I'm setting up an AIO deployment for the first time, and I was wondering if there are docs on enabling additional services? | 18:54 |
redrobot | I tried running the playbook for the service I want to set up, but it appears that I have to create a container for it first? | 18:54 |
*** The_Intern has quit IRC | 18:55 | |
*** The_Intern has joined #openstack-ansible | 18:56 | |
tsots | given the fact that ansible runs on mac os x , can the role be deployed from a mac to the target hosts ? | 18:58 |
jmccrory | redrobot https://docs.openstack.org/project-deploy-guide/openstack-ansible/draft/configure.html#installing-additional-services you'll need to run playbooks for lxc-containers-create, repo-build, and the specific service | 19:00 |
openstackgerrit | Merged openstack/openstack-ansible master: [ops-guide] Add rabbitmq content https://review.openstack.org/431499 | 19:00 |
*** The_Intern has quit IRC | 19:00 | |
redrobot | jmccrory lxc-containers-create and repo-build sound like exactly what I was looking for. Thanks! | 19:01 |
*** crushil has joined #openstack-ansible | 19:03 | |
xdaxdb | Andrew_jedi: That's good to know, i might use that style in the future. | 19:03 |
Andrew_jedi | xdaxdb: :) | 19:03 |
*** The_Intern has joined #openstack-ansible | 19:06 | |
*** jamesdenton has joined #openstack-ansible | 19:10 | |
*** FrankZhang has quit IRC | 19:15 | |
*** The_Intern has quit IRC | 19:18 | |
*** xdaxdb has quit IRC | 19:20 | |
openstackgerrit | Merged openstack/openstack-ansible-galera_server stable/newton: Retry galera_running_check after systemctl daemon-reload https://review.openstack.org/434850 | 19:26 |
*** The_Intern has joined #openstack-ansible | 19:29 | |
*** Jack_Iv has joined #openstack-ansible | 19:30 | |
*** vnogin has quit IRC | 19:31 | |
*** admin0 has joined #openstack-ansible | 19:32 | |
*** smatzek has joined #openstack-ansible | 19:33 | |
openstackgerrit | Merged openstack/openstack-ansible-os_tempest stable/ocata: Refresh multi-backend variables https://review.openstack.org/434935 | 19:33 |
*** admin0 has quit IRC | 19:43 | |
*** admin0 has joined #openstack-ansible | 19:44 | |
*** mmalik4_ has joined #openstack-ansible | 19:47 | |
openstackgerrit | Merged openstack/openstack-ansible-os_keystone stable/ocata: Only run token_flush on 1 host https://review.openstack.org/433797 | 19:50 |
cjloader_ | does anyone know if shade is broken? I cannot use os_nova_flavor module but I have shade installed...yet I get error saying "shade is required to use this module" | 19:53 |
palendae | cjloader_: Is ansible present on the host or in a venv? | 19:54 |
palendae | And is shade being installed into the venv or onto the host? | 19:54 |
cjloader_ | into the container | 19:54 |
palendae | Sorry, "host" hear meaning the container | 19:54 |
cjloader_ | oh | 19:55 |
palendae | My guess is Ansible is looking at the system level packages, since it's shebang line doesn't play well with venvs | 19:55 |
cjloader_ | Ok, so might have to install shade on the system? | 19:56 |
cjloader_ | err physical host | 19:56 |
palendae | cjloader_: Yeah. If you attach to the utility container, and run `python`, then `import shade` does it work? | 19:56 |
cjloader_ | i'll try | 19:56 |
cjloader_ | nope palendae | 19:59 |
palendae | Ok, still on the utility container, do `less $(which ansible)` | 19:59 |
palendae | What's the first line say? | 19:59 |
alextricity25 | Ansible is installed in the utility container? | 20:00 |
alextricity25 | TIL :P | 20:00 |
palendae | alextricity25: Maybe? | 20:00 |
palendae | alextricity25: If that's where shade's going, that's where Ansible'd have to be | 20:00 |
palendae | Maybe we need to step back up and ask: what's the larger goal? | 20:00 |
cjloader_ | Missing filename ("less --help" for help) | 20:00 |
openstackgerrit | Jimmy McCrory proposed openstack/openstack-ansible-os_neutron master: Deprecate neutron_dhcp_domain https://review.openstack.org/435090 | 20:01 |
alextricity25 | palendae: So ansible needs to be installed on hosts utilizing the openstack cloud modules? | 20:01 |
*** Hosam has joined #openstack-ansible | 20:01 | |
palendae | alextricity25: They need to be installed together, yes. Ansible works by pushing modules out, not by reading modules already there | 20:01 |
csmart | \o morning | 20:01 |
palendae | alextricity25: Also, Ansible does not like living in venvs, which is annoying | 20:02 |
palendae | Wish they'd rewrite their shebang line | 20:02 |
palendae | cjloader_: You're trying to create stuff on the cloud right after set up? | 20:03 |
palendae | Like networks and flavors? | 20:03 |
cjloader_ | just flavors | 20:04 |
palendae | cjloader_: Ok, I'd probably recommend a slightly different approach, then. Install shade on the deployment host, just like Ansible | 20:05 |
cjloader_ | Okay | 20:05 |
palendae | Double checked https://github.com/openstack/openstack-ansible-plugins/tree/master/library, but we don't have a nova one | 20:05 |
palendae | Since you'd be installing it on the deployment host, it won't go into utility_pip_packages | 20:05 |
palendae | But the requirements.txt | 20:05 |
cjloader_ | ok | 20:05 |
alextricity25 | palendae: Not if he delegates those task to the utility container | 20:06 |
palendae | alextricity25: Ah...hrm...why would you delegate them there? | 20:06 |
alextricity25 | palendae: You could do them locally(on the deployment host), but aren't the openstack clients installed in the utility container? | 20:06 |
palendae | They are | 20:07 |
palendae | Hm | 20:07 |
palendae | Ansible still needs the modules it calls on the host | 20:07 |
palendae | Unless I'm misunderstanding delegation | 20:07 |
alextricity25 | That sounds right. so if he is using the openstack cloud ansible modules, and delegating that task to the utility container, then shade needs to be installed in the utility container | 20:08 |
palendae | So, in deployment, we use https://github.com/openstack/openstack-ansible-plugins/tree/master/library | 20:08 |
palendae | Neutron and Keystone libs exist there in order to create resources on the cloud | 20:08 |
palendae | Those are installed on the host | 20:09 |
palendae | alextricity25: So would Ansible, I'd think.... | 20:09 |
palendae | http://docs.ansible.com/ansible/playbooks_delegation.html#delegation | 20:09 |
palendae | Shade doesn't work without Ansible, and Ansible, as far as I know, doesn't use libs that are on the remote machine | 20:09 |
palendae | Looks like there's multiple angles to take this from | 20:10 |
alextricity25 | no way man | 20:10 |
alextricity25 | shade shouldn't need ansible to run | 20:10 |
alextricity25 | it's just a python module | 20:10 |
palendae | I agree it shouldn't | 20:10 |
palendae | But Ansible's dumb :) | 20:10 |
palendae | Ansible calls shade | 20:10 |
palendae | via the os_nova, etc modules | 20:10 |
*** sdake_ has quit IRC | 20:10 | |
palendae | Ok, let me rephrase | 20:11 |
palendae | Shade can be used independently | 20:11 |
palendae | If you're calling from os_server or os_image, it needs to be available to ansible | 20:11 |
*** sdake has joined #openstack-ansible | 20:12 | |
palendae | https://github.com/ansible/ansible/blob/devel/lib/ansible/modules/cloud/openstack/os_flavor_facts.py#L180 | 20:12 |
openstackgerrit | Merged openstack/openstack-ansible-os_horizon stable/ocata: Update repo for stable/ocata https://review.openstack.org/430741 | 20:12 |
alextricity25 | palendae: that's like saying requests+ansible needs to be installed on any host running a URI ansible module | 20:13 |
alextricity25 | Only requests needs to be installed, not ansible | 20:13 |
cjloader_ | I will try installing shade on the host | 20:13 |
palendae | alextricity25: Ok, so you're NOT trying to use the os_ modules? | 20:14 |
palendae | Are you using shade directly, or via Ansible? | 20:14 |
alextricity25 | in cjloader_ case he is using the os_* ansible modules | 20:14 |
palendae | Ok | 20:14 |
palendae | Can you show me where Ansible calls remote libs? | 20:14 |
alextricity25 | So that means he needs to have shade installed on the target hosts | 20:14 |
palendae | I use shade to set up my AIOs, I need it present it with Ansible | 20:15 |
alextricity25 | But what I still don't understand is why are you saying ansible also needs to be installed on the target hosts? | 20:15 |
palendae | To link it to os_* modules | 20:15 |
palendae | Again https://github.com/ansible/ansible/blob/devel/lib/ansible/modules/cloud/openstack/os_flavor_facts.py#L180 imports it | 20:15 |
palendae | https://github.com/ansible/ansible/blob/devel/lib/ansible/modules/cloud/openstack/os_image.py#L119 | 20:15 |
alextricity25 | palendae: So these modules get run on the target host, right? | 20:16 |
palendae | They get packaged by ansible then shipped there | 20:16 |
palendae | They get run on the deploy host | 20:16 |
palendae | The yaml part, anyway | 20:16 |
alextricity25 | I feel like this is something i'm going to have to try out on my own | 20:16 |
palendae | Yeah | 20:17 |
palendae | It's not at all straightforward | 20:17 |
palendae | Or even sensible | 20:17 |
cjloader_ | alextricity25: want to join my box? | 20:17 |
alextricity25 | cjloader_: sure | 20:17 |
palendae | You can certainly try installing shade manually on the utility container, then running your plays | 20:17 |
palendae | Perhaps I'm wrong | 20:17 |
mrda | Morning OSA | 20:17 |
alextricity25 | I've used these os_* cloud modules before. I don't ever remember having to install ansible on the target hosts, or shade on the deployment host. | 20:17 |
alextricity25 | I've only had to install shade on the target hosts | 20:18 |
alextricity25 | cjloader_: Just give me a second to hunt down this fly that's wizzing by my head | 20:18 |
alextricity25 | so. distracting. | 20:18 |
palendae | alextricity25: You've used it via delegation? | 20:18 |
palendae | My context: using it locally to spin up a VM on RAX cloud | 20:18 |
alextricity25 | palendae: Ah, that I didn't do. | 20:18 |
cjloader_ | okay, I'll send you the ip in the rpc channel | 20:19 |
palendae | My desktop had ansible and shade | 20:19 |
*** lucasxu has quit IRC | 20:19 | |
*** rmelero has joined #openstack-ansible | 20:19 | |
palendae | Which then called to localhost to ask shade to hit RAX to spin things up | 20:19 |
*** lucasxu has joined #openstack-ansible | 20:19 | |
palendae | I've not used it via delegation either, so perhaps I'm wrong | 20:19 |
*** gouthamr has quit IRC | 20:24 | |
*** Hosam has quit IRC | 20:24 | |
*** lucasxu has quit IRC | 20:26 | |
tsots | given the fact that ansible runs on mac os x , can the role be deployed from a mac to the target hosts ? | 20:26 |
*** lucasxu has joined #openstack-ansible | 20:26 | |
openstackgerrit | Jean-Philippe Evrard proposed openstack/openstack-ansible master: Integration of dragonflow in integrated gate https://review.openstack.org/391522 | 20:33 |
openstackgerrit | Jimmy McCrory proposed openstack/openstack-ansible-os_neutron master: Deprecate neutron_dhcp_domain https://review.openstack.org/435090 | 20:35 |
openstackgerrit | Jimmy McCrory proposed openstack/openstack-ansible-os_neutron master: Rename neutron_dhcp_domain to neutron_dns_domain https://review.openstack.org/435090 | 20:35 |
*** FrankZhang has joined #openstack-ansible | 20:38 | |
*** kberger has quit IRC | 20:39 | |
*** The_Intern has quit IRC | 20:40 | |
*** gouthamr has joined #openstack-ansible | 20:40 | |
*** admin0 has quit IRC | 20:43 | |
*** The_Intern has joined #openstack-ansible | 20:44 | |
*** admin0 has joined #openstack-ansible | 20:45 | |
*** aleph1 is now known as agarner_away | 20:54 | |
*** sdake has quit IRC | 21:07 | |
*** admin0 has quit IRC | 21:08 | |
alextricity25 | Anybody know how to tell ansible-lint to not inspect files under "vars_files" ? | 21:13 |
*** lucasxu has quit IRC | 21:14 | |
*** lucasxu has joined #openstack-ansible | 21:14 | |
*** klamath_ has joined #openstack-ansible | 21:15 | |
openstackgerrit | Mark Hamzy proposed openstack/openstack-ansible master: [WIP] Add support to install a molteniron server https://review.openstack.org/427255 | 21:17 |
*** klamath has quit IRC | 21:17 | |
*** FrankZhang has quit IRC | 21:21 | |
*** karimb has quit IRC | 21:21 | |
*** karimb has joined #openstack-ansible | 21:21 | |
*** ngupta has quit IRC | 21:22 | |
*** ngupta has joined #openstack-ansible | 21:23 | |
*** FrankZhang has joined #openstack-ansible | 21:23 | |
*** woodard has quit IRC | 21:23 | |
*** chris_hultin is now known as chris_hultin|AWA | 21:29 | |
*** ngupta has quit IRC | 21:32 | |
*** ngupta has joined #openstack-ansible | 21:32 | |
*** sdake has joined #openstack-ansible | 21:33 | |
*** lucasxu has quit IRC | 21:33 | |
*** MasterOfBugs has joined #openstack-ansible | 21:33 | |
*** lucasxu has joined #openstack-ansible | 21:33 | |
*** Jack_Iv has quit IRC | 21:35 | |
*** Jeffrey4l has quit IRC | 21:35 | |
*** Jack_Iv has joined #openstack-ansible | 21:35 | |
*** Jeffrey4l has joined #openstack-ansible | 21:36 | |
*** karimb has quit IRC | 21:37 | |
tsots | hello | 21:37 |
*** crushil has quit IRC | 21:38 | |
tsots | given the fact that ansible runs on mac os x , can the role be deployed from a mac to the target hosts ?. i am talking about the first play bootstra-ansible | 21:38 |
*** kysse_ is now known as kysse | 21:38 | |
*** crushil has joined #openstack-ansible | 21:39 | |
*** pmannidi has joined #openstack-ansible | 21:40 | |
*** crushil has quit IRC | 21:48 | |
*** Jack_Iv has quit IRC | 21:50 | |
*** cjloader_ has quit IRC | 21:52 | |
*** smatzek has quit IRC | 22:02 | |
*** smatzek has joined #openstack-ansible | 22:12 | |
*** chris_hultin|AWA is now known as chris_hultin | 22:13 | |
*** smatzek has quit IRC | 22:13 | |
*** smatzek_ has joined #openstack-ansible | 22:13 | |
*** xdaxdb has joined #openstack-ansible | 22:15 | |
*** gouthamr has quit IRC | 22:15 | |
*** woodard has joined #openstack-ansible | 22:16 | |
*** Andrew_jedi has quit IRC | 22:17 | |
*** portdirect is now known as intlabs | 22:17 | |
*** woodard has quit IRC | 22:18 | |
*** woodard has joined #openstack-ansible | 22:18 | |
*** klamath_ has quit IRC | 22:27 | |
*** fguillot has quit IRC | 22:28 | |
*** retreved has quit IRC | 22:32 | |
*** smatzek_ has quit IRC | 22:38 | |
*** pmannidi has quit IRC | 22:39 | |
*** thorst_afk has quit IRC | 22:39 | |
*** ngupta has quit IRC | 22:49 | |
*** furlongm has quit IRC | 22:50 | |
*** furlongm has joined #openstack-ansible | 22:53 | |
*** marst has quit IRC | 22:54 | |
*** chris_hultin is now known as chris_hultin|AWA | 22:56 | |
*** askb has joined #openstack-ansible | 22:58 | |
*** jamielennox is now known as jamielennox|away | 23:02 | |
*** thorst_afk has joined #openstack-ansible | 23:03 | |
*** The_Intern has quit IRC | 23:03 | |
*** thorst_afk has quit IRC | 23:07 | |
*** esberglu has quit IRC | 23:07 | |
*** galstrom_zzz is now known as galstrom | 23:07 | |
*** esberglu has joined #openstack-ansible | 23:07 | |
*** esberglu has quit IRC | 23:12 | |
*** jamielennox|away is now known as jamielennox | 23:14 | |
*** lucasxu has quit IRC | 23:15 | |
*** marst has joined #openstack-ansible | 23:16 | |
xdaxdb | anyone around with a good understanding of cinder-volume and how it works with glance? | 23:18 |
xdaxdb | specifically the process of creating a volume from an image and the reverse | 23:19 |
*** esberglu has joined #openstack-ansible | 23:21 | |
xdaxdb | I'm trying to overcome the iscsi limitations of containers | 23:21 |
*** jamesdenton has quit IRC | 23:23 | |
*** esberglu has quit IRC | 23:24 | |
*** esberglu has joined #openstack-ansible | 23:24 | |
*** jrobinson has joined #openstack-ansible | 23:27 | |
*** jperry has quit IRC | 23:28 | |
tsots | hi | 23:30 |
tsots | given the fact that ansible runs on mac os x , can the role be deployed from a mac to the target hosts ? | 23:31 |
openstackgerrit | Michael Still proposed openstack/openstack-ansible master: Improve the swap test. https://review.openstack.org/435149 | 23:35 |
xdaxdb | tsots: it might work to some degree but I wouldn't bother with that. | 23:38 |
*** Hosam has joined #openstack-ansible | 23:38 | |
tsots | better to setup a virtual machine and run the role from within that eh | 23:39 |
xdaxdb | ansible modules require certain python packages | 23:39 |
xdaxdb | yes | 23:39 |
tsots | i have ansible working ok from mac os , but i asked because openstack is so complex | 23:40 |
xdaxdb | there are some openstack modules listed on the ansible modules index i tried using once | 23:40 |
xdaxdb | I had to install packages with pip to get them to work | 23:40 |
xdaxdb | and even then their functionality was limited and I'm not sure if they were working right | 23:41 |
tsots | ok ill use vagrant to power up a vm then | 23:41 |
xdaxdb | so I ended up ditching them and using ansible shell/command to issue openstack commands | 23:41 |
xdaxdb | this was before I had heard of OSA | 23:42 |
xdaxdb | and I was writing my own playbooks. | 23:42 |
tsots | for openstack? | 23:42 |
tsots | brave man | 23:42 |
tsots | :P | 23:42 |
xdaxdb | to deploy it yes | 23:42 |
xdaxdb | I had installed it manually a couple times, but there are so many config files and service endpoints | 23:43 |
xdaxdb | I would always specify the wrong port number or something for an endpoint doing it manually so I decided I needed to put all details in a single var file and deploy with ansible to ensure the integrity | 23:44 |
xdaxdb | but my end result was not secure, no-ssl configs, and no HAproxy | 23:45 |
xdaxdb | then I found OSA, it was love at first sight | 23:45 |
tsots | i agree | 23:46 |
*** esberglu has quit IRC | 23:46 | |
*** galstrom is now known as galstrom_zzz | 23:47 | |
*** tsots has quit IRC | 23:48 | |
*** tsots has joined #openstack-ansible | 23:49 | |
*** tsots has quit IRC | 23:50 | |
*** Jack_Iv has joined #openstack-ansible | 23:50 | |
*** Jack_Iv has quit IRC | 23:55 | |
*** kysse has quit IRC | 23:57 | |
*** kylek3h has joined #openstack-ansible | 23:57 | |
*** kysse has joined #openstack-ansible | 23:58 | |
*** kylek3h_ has quit IRC | 23:58 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!