*** rwsu has joined #tripleo | 00:02 | |
*** zhenzanz has joined #tripleo | 00:05 | |
*** zhenzanz_ has joined #tripleo | 00:06 | |
*** zhenzanz has quit IRC | 00:09 | |
*** zhenzanz_ is now known as zhenzanz | 00:09 | |
*** daneyon_ has quit IRC | 00:09 | |
*** ChuckC_ has quit IRC | 00:18 | |
*** tzumainn has quit IRC | 00:20 | |
*** ChuckC_ has joined #tripleo | 00:25 | |
*** julim has joined #tripleo | 00:40 | |
*** vinsh has joined #tripleo | 00:49 | |
*** NobodyCam has quit IRC | 00:56 | |
*** NobodyCam has joined #tripleo | 00:58 | |
*** juice has quit IRC | 00:58 | |
*** juice has joined #tripleo | 01:01 | |
*** yamahata has joined #tripleo | 01:01 | |
*** daneyon has joined #tripleo | 01:02 | |
*** vinsh has quit IRC | 01:04 | |
SpamapS | greghaynes: yes I know upstart quite well. Reading bug now. | 01:23 |
---|---|---|
greghaynes | SpamapS: The change I posted is also pretty explanatory - basically neutron-ovs-agent forks a few times and then errors, it also takes a while to setup state beofore doing this | 01:23 |
greghaynes | so coming up with a way for upstart to be aware of when it should consider start completed is... not straightforwar | 01:24 |
SpamapS | greghaynes: we shouldn't really be relying on upstart to know it is "started" | 01:25 |
SpamapS | greghaynes: systemd will have slightly different ideas about it | 01:26 |
greghaynes | well we need to either have our own check in o-r-c scripts or make the service start <thing> exit with 1 | 01:26 |
SpamapS | greghaynes: or right after start/restart we poke neutron until it works. | 01:26 |
greghaynes | and I think the service script failing when the service doesnt start is preferred | 01:26 |
greghaynes | yea | 01:27 |
greghaynes | (the check in o-r-c) | 01:27 |
SpamapS | That's the only way we get things to work in the Ansible update | 01:27 |
SpamapS | with wait_for on the ports | 01:27 |
SpamapS | for start and stop | 01:27 |
greghaynes | :( | 01:27 |
SpamapS | daemons suck. | 01:27 |
greghaynes | true story | 01:27 |
SpamapS | I've spent basically 4 years trying to make them not suck with upstart, sysvinit, and now a bit in systemd. They all suck. | 01:28 |
greghaynes | I wonder if we could make neutron-ovs-agent do something a bit easier to detect when it things its started... | 01:28 |
SpamapS | The few daemons that don't suck do this: | 01:28 |
SpamapS | open a pipe, fork, read the pipe from the parent, initialize the daemon from the child. write to the pipe and close it in the child, parent returns from read and exits | 01:29 |
SpamapS | the problem is, upstart _TOTALLY_ misses that parent dying thing | 01:29 |
SpamapS | and just thinks "oh it forked, IT IS READY" | 01:29 |
greghaynes | ah! | 01:29 |
SpamapS | which basically only one daemon ever written does, dbus | 01:29 |
greghaynes | that is the key that I think explains why this totally fails in upstart :) | 01:29 |
SpamapS | but since Keybuk was writing upstart with early plumbing like udev and dbus in mind.. he thought that was how things should work. | 01:30 |
SpamapS | well without 'expect fork' upstart doesn't even wait for the fork | 01:30 |
greghaynes | Is there not a directive for an upstart config of "expect normal_daemon" | 01:30 |
SpamapS | as soon as the forked process exec's, upstart will consider that pid "started" unless there's a post-start to delay the 'started' event. | 01:31 |
greghaynes | hrm | 01:31 |
SpamapS | expect daemon waits for _two_ forks. | 01:31 |
SpamapS | because old school daemons did two | 01:31 |
greghaynes | yep, that is what I was messing with. maybe you could get clever in post-start and ps | grep for parent PID | 01:31 |
greghaynes | for now, my patch is basically | 01:32 |
SpamapS | ps grep isn't necessary | 01:32 |
greghaynes | "sleep 10" | 01:32 |
SpamapS | in post-start you know the pid of the main process | 01:32 |
greghaynes | Yes, but seems like the issue is we need to delay in post-start until the parent exits? | 01:32 |
SpamapS | parent will exist after 'exec /opt/stack/venvs/openstack/bin/neutron-ovs-agent' | 01:33 |
SpamapS | it just won't be doing anything _useful_ yet. | 01:33 |
SpamapS | another thing well behaved old school daemons would do is not write their pid file until they were in operational mode. | 01:33 |
greghaynes | yep, I read about that a bit when debugging this | 01:34 |
SpamapS | so that is sometimes effective | 01:34 |
greghaynes | ok, so that gives me some stuff to poke at | 01:34 |
SpamapS | I think somebody may have landed systemd compatability in oslo.service.. it does something with dbus or signals IIRC | 01:34 |
clarkb | its not signals. signals are bonghits and are what upstart uses iirc | 01:35 |
clarkb | instead they have a socket you write to or some such | 01:35 |
SpamapS | upstart also has an explicit mode where you can say 'expect stop' and then upstart will wait on the forked process until it sends itself a SIGSTOP, at which point upstart with SIGCONT it and consider it startd. | 01:35 |
SpamapS | clarkb: right thats it, a socket | 01:35 |
greghaynes | hahaah | 01:35 |
SpamapS | clarkb: the signals are interesting because it becomes atomic. You an SIGSTOP yourself and know that after that point upstart knows you're started. I forget the single practical example I was given that made this compelling 4 years ago when I learned of it. | 01:36 |
clarkb | SpamapS: but its a massive abuse | 01:37 |
clarkb | please read man 7 signal :) | 01:37 |
clarkb | sigstop means stop process | 01:37 |
clarkb | not I am ready | 01:37 |
greghaynes | It does stop it | 01:38 |
greghaynes | but I could see how that would be hilarous for a process that expects to actually stop | 01:38 |
SpamapS | clarkb: Well it is stopping the process you're signalling. :) | 01:38 |
SpamapS | clarkb: the abuse is the ptrace. :) | 01:38 |
SpamapS | clarkb: a socket is far simpler and makes me happy. | 01:39 |
greghaynes | So, i discovered a reason to be using expect daemon even though we work without it while I was debugging this - bad things happen if upstart is tracking a pid which can eventually be re-used by the OS | 01:39 |
greghaynes | like upstart can go and kill that pid when it gets reused later on | 01:40 |
*** pradeep has joined #tripleo | 01:47 | |
*** wuhg has joined #tripleo | 01:52 | |
*** marun has quit IRC | 01:55 | |
*** pradeep has quit IRC | 01:55 | |
*** rwsu has quit IRC | 01:58 | |
SpamapS | greghaynes: yes that is an insidious bug that I've never understood fully | 01:59 |
SpamapS | greghaynes: that goes hand in hand with upstart using weird ptracey things to track pids | 01:59 |
*** vinsh has joined #tripleo | 02:02 | |
*** vinsh has quit IRC | 02:07 | |
*** nosnos has joined #tripleo | 02:14 | |
*** cwolferh has quit IRC | 02:15 | |
*** NobodyCam has quit IRC | 02:26 | |
*** NobodyCam has joined #tripleo | 02:27 | |
*** sdake_ has joined #tripleo | 02:31 | |
*** sdake_ has quit IRC | 02:31 | |
*** sdake_ has joined #tripleo | 02:31 | |
*** vipul has quit IRC | 02:33 | |
*** jerryz has joined #tripleo | 02:35 | |
*** vipul has joined #tripleo | 02:37 | |
openstackgerrit | Richard Su proposed openstack/tripleo-image-elements: Run restorecon against actual rabbitmq directories https://review.openstack.org/137259 | 02:39 |
*** pradeep has joined #tripleo | 02:39 | |
*** yuanying_ has quit IRC | 02:47 | |
*** vinsh has joined #tripleo | 02:51 | |
openstackgerrit | Richard Su proposed openstack/tripleo-image-elements: RabbitMQ SELinux policy update https://review.openstack.org/137260 | 02:52 |
*** pradeep1 has joined #tripleo | 02:53 | |
*** pradeep has quit IRC | 02:55 | |
*** ramishra has joined #tripleo | 02:59 | |
*** nosnos has quit IRC | 03:01 | |
*** Marga_ has quit IRC | 03:03 | |
*** pradeep has joined #tripleo | 03:03 | |
*** Marga_ has joined #tripleo | 03:04 | |
*** yuanying has joined #tripleo | 03:04 | |
*** pradeep1 has quit IRC | 03:05 | |
*** vinsh has quit IRC | 03:09 | |
*** pradeep1 has joined #tripleo | 03:14 | |
*** pradeep has quit IRC | 03:16 | |
*** pradeep has joined #tripleo | 03:22 | |
*** killer_prince has quit IRC | 03:23 | |
*** Marga_ has quit IRC | 03:24 | |
*** pradeep1 has quit IRC | 03:25 | |
*** pradeep1 has joined #tripleo | 03:34 | |
*** jerryz1 has joined #tripleo | 03:35 | |
*** pradeep has quit IRC | 03:35 | |
*** jerryz has quit IRC | 03:37 | |
*** pradeep has joined #tripleo | 03:37 | |
*** pradeep1 has quit IRC | 03:39 | |
*** pradeep1 has joined #tripleo | 03:40 | |
*** pradeep has quit IRC | 03:42 | |
*** pradeep has joined #tripleo | 03:45 | |
*** pradeep1 has quit IRC | 03:46 | |
*** pradeep1 has joined #tripleo | 03:47 | |
*** pradeep has quit IRC | 03:49 | |
*** pradeep has joined #tripleo | 03:52 | |
*** noslzzp has quit IRC | 03:53 | |
*** pradeep1 has quit IRC | 03:54 | |
*** pradeep1 has joined #tripleo | 03:55 | |
*** pradeep has quit IRC | 03:56 | |
*** noslzzp has joined #tripleo | 03:56 | |
*** pradeep has joined #tripleo | 03:57 | |
*** noslzzp has quit IRC | 03:58 | |
*** pensu has joined #tripleo | 03:58 | |
*** pradeep1 has quit IRC | 03:59 | |
*** untriaged-bot has joined #tripleo | 04:00 | |
untriaged-bot | Untriaged bugs so far: | 04:00 |
untriaged-bot | https://bugs.launchpad.net/tripleo/+bug/1391218 | 04:00 |
uvirtbot | Launchpad bug 1391218 in tripleo "Configuration Dependent on HAProxy" [Undecided,In progress] | 04:00 |
untriaged-bot | https://bugs.launchpad.net/tripleo/+bug/1387061 | 04:00 |
uvirtbot | Launchpad bug 1387061 in tripleo "deploy under cloud failure due to pacemaker " [Undecided,New] | 04:00 |
untriaged-bot | https://bugs.launchpad.net/tripleo/+bug/1393643 | 04:00 |
uvirtbot | Launchpad bug 1393643 in tripleo "haproxy start failed loop with 'Starting proxy horizon: cannot bind socket'" [Undecided,New] | 04:00 |
untriaged-bot | https://bugs.launchpad.net/tripleo/+bug/1391412 | 04:00 |
uvirtbot | Launchpad bug 1391412 in tripleo "devtest deploy overcloud successfully,but there have one baremetal in Maintenance state" [Undecided,New] | 04:00 |
untriaged-bot | https://bugs.launchpad.net/tripleo/+bug/1387487 | 04:00 |
uvirtbot | Launchpad bug 1387487 in tripleo "tripleo-image-elements/elements/tuskar-ui /os-refresh-config /post-configure.d/101-tuskar-ui needs authentication from Keystone" [Undecided,New] | 04:00 |
untriaged-bot | https://bugs.launchpad.net/tripleo/+bug/1393304 | 04:00 |
uvirtbot | Launchpad bug 1393304 in tripleo "create-nodes failure for customised pool" [Undecided,New] | 04:00 |
untriaged-bot | https://bugs.launchpad.net/diskimage-builder/+bug/1391656 | 04:00 |
uvirtbot | Launchpad bug 1391656 in diskimage-builder "There is no way to customize the installation of the bootloader" [Undecided,New] | 04:00 |
*** untriaged-bot has quit IRC | 04:00 | |
*** pradeep has quit IRC | 04:02 | |
*** pradeep has joined #tripleo | 04:02 | |
*** pradeep1 has joined #tripleo | 04:07 | |
*** pradeep has quit IRC | 04:08 | |
*** yuanying_ has joined #tripleo | 04:14 | |
*** nosnos has joined #tripleo | 04:16 | |
*** yuanying has quit IRC | 04:17 | |
*** killer_prince has joined #tripleo | 04:18 | |
*** killer_prince is now known as lazy_prince | 04:18 | |
*** vinsh has joined #tripleo | 04:28 | |
*** vinsh has quit IRC | 04:28 | |
*** pradeep has joined #tripleo | 04:28 | |
StevenK | stevebaker: Do you have a sec to talk about bug 1390112? | 04:29 |
*** pradeep1 has quit IRC | 04:29 | |
uvirtbot | Launchpad bug 1390112 in heat "Invalid parameter defaults can't be overriden" [Medium,Triaged] https://launchpad.net/bugs/1390112 | 04:29 |
*** Marga_ has joined #tripleo | 04:35 | |
*** weshay has quit IRC | 04:37 | |
*** Marga_ has quit IRC | 04:39 | |
*** pcrews has quit IRC | 04:48 | |
*** pradeep has quit IRC | 04:48 | |
*** pensu has quit IRC | 05:04 | |
*** pradeep has joined #tripleo | 05:05 | |
*** rushiagr_away is now known as rushiagr | 05:10 | |
openstackgerrit | Merged openstack/diskimage-builder: Warning when using pypi element without a mirror https://review.openstack.org/135316 | 05:27 |
*** jerryz1 has quit IRC | 05:32 | |
*** michchap has quit IRC | 05:41 | |
*** pensu has joined #tripleo | 05:48 | |
tchaypo | greghaynes: yes | 05:55 |
greghaynes | kk | 05:57 |
greghaynes | :( hit the spurios node getting in state error deleting bug http://logs.openstack.org/94/136894/3/check-tripleo/check-tripleo-ironic-overcloud-precise-nonha/2278484/console.html | 05:58 |
*** rushiagr is now known as rushiagr_away | 05:59 | |
*** k4n0 has joined #tripleo | 06:03 | |
greghaynes | our meeting is in 1hr? | 06:03 |
*** edmund has quit IRC | 06:06 | |
tchaypo | having met keybuk long before i knew what upstart was | 06:14 |
tchaypo | this is all very amusing | 06:14 |
tchaypo | greghaynes: no, 2 hours | 06:15 |
tchaypo | at least according to the ical feed on https://wiki.openstack.org/wiki/Meetings | 06:16 |
tchaypo | however https://wiki.openstack.org/wiki/Meetings#TripleO_team_meeting says 0700UTC, and that’s in an hour | 06:16 |
tchaypo | or is it? | 06:18 |
tchaypo | 0700 London is in an hour, but are they running on UTC right now? | 06:18 |
*** dshulyak_ has joined #tripleo | 06:23 | |
tchaypo | yes, yes they are. | 06:25 |
tchaypo | > Because of the whining^W weekly-expressed preferences[1] of the | 06:27 |
tchaypo | > Europe-based folks, the latter meetings are going to be moved by +1 hour. | 06:27 |
tchaypo | > | 06:27 |
tchaypo | > So the new meeting times are: | 06:27 |
tchaypo | > | 06:27 |
tchaypo | > * Tuesdays at 19:00 UTC (unchanged) | 06:27 |
tchaypo | > * Wednesdays at 8:00 UTC (1 hour later) | 06:27 |
tchaypo | from the mailing list | 06:27 |
tchaypo | so it seems as though the new time was announced on list, and thierry updated the ical, but the wiki was not updated | 06:27 |
* tchaypo fixes wiki | 06:27 | |
tchaypo | ah, the meeting page was updated, but not the meetings page | 06:33 |
* tchaypo talks too much sometimes | 06:35 | |
tchaypo | Nov 26 06:42:19 undercloud-undercloud-gxpandxta2cg ironic-conductor: 2014-11-26 06:42:19.785 6915 WARNING ironic.conductor.manager [-] During sync_power_state, could not get power state for node 4b73150c-1c67-4465-baf2-1d09593f6c38. Error: f() takes exactly 1 argument (2 given). | 06:45 |
tchaypo | whee | 06:45 |
*** pcrews has joined #tripleo | 06:48 | |
tchaypo | https://www.irccloud.com/pastebin/Kgrfk8hq | 06:48 |
*** pcrews has quit IRC | 06:53 | |
*** jtomasek has joined #tripleo | 06:55 | |
*** jtomasek has quit IRC | 07:00 | |
*** jprovazn has joined #tripleo | 07:02 | |
*** mrunge has joined #tripleo | 07:04 | |
*** rushiagr_away is now known as rushiagr | 07:07 | |
*** pcrews has joined #tripleo | 07:23 | |
*** pcrews has quit IRC | 07:31 | |
*** jtomasek has joined #tripleo | 07:36 | |
*** penick has joined #tripleo | 07:38 | |
*** jtomasek has quit IRC | 07:47 | |
*** gfidente has joined #tripleo | 07:51 | |
gfidente | are we having the meeting today? | 07:52 |
GheRivero | I think so | 07:53 |
GheRivero | morning @TripleO | 07:53 |
tchaypo | morninge | 07:56 |
*** athomas has joined #tripleo | 08:01 | |
*** jtomasek has joined #tripleo | 08:04 | |
*** michchap has joined #tripleo | 08:11 | |
greghaynes | https://review.openstack.org/#/c/136894/ should unbreak devtest if another core is around to +A | 08:12 |
GheRivero | on my way | 08:12 |
greghaynes | \O/ | 08:12 |
*** dtantsur|afk is now known as dtantsur | 08:13 | |
openstackgerrit | Merged openstack/tripleo-heat-templates: Fix empty local_ip in ml2_conf.ini on undercloud https://review.openstack.org/136894 | 08:13 |
*** lucasagomes has joined #tripleo | 08:14 | |
*** penick has quit IRC | 08:14 | |
greghaynes | tyty | 08:15 |
GheRivero | go to bed | 08:15 |
greghaynes | haha | 08:15 |
tchaypo | or join the meeting | 08:16 |
*** ifarkas has joined #tripleo | 08:16 | |
StevenK | shardy: When is the Heat meeting, so I can bleat about bug 1390112? | 08:18 |
uvirtbot | Launchpad bug 1390112 in heat "Invalid parameter defaults can't be overriden" [Medium,Triaged] https://launchpad.net/bugs/1390112 | 08:18 |
*** yamahata has quit IRC | 08:18 | |
shardy | StevenK: It alternates between 12.00UTC and 20.00UTC on Wednesdays - you can nag me directly about it if you like though | 08:18 |
StevenK | shardy: *nag* ? :-) | 08:19 |
shardy | it's on my todo list, but I was unclear if we agreed to fix it in heat, or refactor to remove the parameter defaults from the templates in favour of a default environment containing the parameters (which won't have the same problem) | 08:19 |
tchaypo | greghaynes: i think i hit that exact error this morning, I’m trying to track down what’s causing it. i know where a quick error handler might help, but I don’t understand the cause of the error yet | 08:19 |
shardy | StevenK: we also have a nearly-landed "parameter_defaults" section for the environment which I think will solve this issue | 08:20 |
greghaynes | tchaypo: the no ip set one? | 08:20 |
shardy | StevenK: I'm happy to submit the template-level fix for review, if you think that sounds sane | 08:20 |
tchaypo | no, the “could not delete” one | 08:20 |
greghaynes | ah | 08:20 |
StevenK | shardy: So I can put up a patch to remove the defaults, but my concern with that is if the flavor is in template, we fail fast with a nice error message | 08:21 |
shardy | StevenK: https://wiki.openstack.org/wiki/Meetings/HeatAgenda | 08:21 |
*** dshulyak_ has quit IRC | 08:21 | |
shardy | StevenK: Yeah, I agree, solving it in heat too would be good | 08:21 |
shardy | StevenK: I started looking into it and it's not that simple, hence considering other approaches ;) | 08:21 |
shardy | StevenK: Isn't the problem that is *does* fail fast? | 08:22 |
shardy | e.g we should pass validation but fail at runtime when using custom constraints, if the default isn't overriden by a user-provided parameter value? | 08:22 |
StevenK | shardy: I mean without this issue -- if the default flavor exists, but the one passed in doesn't exist, the stack-create will fail fast with an error message about the flavor. If we don't have that in the template, then the stack create will just fail and you need to read logs. | 08:24 |
shardy | StevenK: I'm not sure that's correct, if you pass in a flavour which doesn't exist it should fail in the exact same way as if the default doesn't exist | 08:25 |
shardy | StevenK: Could you paste an example of such a scenario, or some sort of reproducer into the bug? | 08:26 |
shardy | StevenK: The only difference not having the default should cause is the parameter becomes mandatory (either via passing parameters or putting it in the environment) | 08:27 |
shardy | StevenK: If it fails slow then it's definitely a bug because the custom constraint on the parameter is not validating the value | 08:27 |
*** ifarkas has quit IRC | 08:28 | |
StevenK | shardy: I meant without the custom constraint | 08:28 |
*** ifarkas has joined #tripleo | 08:28 | |
shardy | StevenK: Ah, ok, yeah I think we want this to work with the custom constraints but without the default values in the template | 08:28 |
shardy | That should make the templates portable but maintain the fail-fast validation | 08:28 |
StevenK | Ah ha | 08:29 |
StevenK | We should be a position to drop the default, I think everything is now passed in | 08:29 |
shardy | StevenK: Ok, that's good :) | 08:29 |
*** jcoufal has joined #tripleo | 08:29 | |
StevenK | shardy: I'll test with that tomorrow | 08:30 |
shardy | StevenK: Sounds good, let me know how it goes | 08:33 |
*** greghaynes changes topic to "Using OpenStack to deploy OpenStack; meetings Tuesday 1900/0800 UTC in #openstack-meeting-alt"" | 08:33 | |
*** greghaynes changes topic to "Using OpenStack to deploy OpenStack; meetings Tuesday 1900/0800 UTC in #openstack-meeting-alt" | 08:33 | |
openstackgerrit | Merged openstack/tripleo-heat-templates: Don't replace OS::Neutron::Port on update of undercloud https://review.openstack.org/133435 | 08:35 |
*** bvandenh has joined #tripleo | 08:43 | |
*** zz_avozza has quit IRC | 08:56 | |
*** zz_avozza has joined #tripleo | 08:57 | |
*** zz_avozza is now known as avozza | 08:57 | |
*** jistr has joined #tripleo | 08:59 | |
*** jp_at_hp has joined #tripleo | 08:59 | |
*** zhenzanz has quit IRC | 08:59 | |
*** jp_at_hp has quit IRC | 08:59 | |
*** jp_at_hp has joined #tripleo | 08:59 | |
*** jprovazn has quit IRC | 09:01 | |
*** rdopiera has joined #tripleo | 09:01 | |
*** rdopiera has quit IRC | 09:03 | |
*** rdopiera has joined #tripleo | 09:03 | |
*** derekh has joined #tripleo | 09:12 | |
*** jprovazn has joined #tripleo | 09:15 | |
openstackgerrit | Merged openstack/tripleo-image-elements: Add a delorean-repo element https://review.openstack.org/136868 | 09:24 |
Ng | mornin' | 09:27 |
*** gfidente has quit IRC | 09:28 | |
*** gfidente has joined #tripleo | 09:28 | |
openstackgerrit | Merged openstack/tripleo-incubator: Set neutron ovs local-ip in seed correctly https://review.openstack.org/136389 | 09:32 |
openstackgerrit | Merged openstack/tripleo-image-elements: Modify sysctl-set-value script to support multi-value parameters https://review.openstack.org/134616 | 09:33 |
openstackgerrit | Merged openstack-infra/tripleo-ci: Updates to the CI doc https://review.openstack.org/133715 | 09:34 |
derekh | Looks like ubuntu are updating repositories again | 09:43 |
derekh | 2014-11-26 09:05:12.310 | W: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/trusty-updates/main/i18n/Translation-en Hash Sum mismatch | 09:43 |
*** pblaho has joined #tripleo | 09:43 | |
derekh | causing some CI tests to fail | 09:43 |
derekh | because different mirrors are in a different state http://paste.openstack.org/show/138720/ | 09:44 |
*** yamahata has joined #tripleo | 09:44 | |
tchaypo | lo derekh | 09:45 |
derekh | last time this happened we pinned DNS on the CI proxy to a particular IP address until everything had settled down | 09:45 |
tchaypo | what would you say to the idea of making the weekly CI/CD update an email instead of an item on the meeting agenda? | 09:46 |
tchaypo | derekh: seems like a decent solution | 09:46 |
derekh | tchaypo: Yup, can do and have been doing something like the for the last while (although emails havn't been a regular as weekly) | 09:47 |
*** lazy_prince has quit IRC | 09:48 | |
tchaypo | Would it help if you could share the workload instead of having to do it all yourself? | 09:49 |
derekh | tchaypo: I guess this came up because I wasn't at the meeting ? sorry neither times suit me very well at the moment but I'll | 09:50 |
derekh | tchaypo: try and make some of them | 09:50 |
derekh | tchaypo: yes it would, the main thing is reacting to problems and keeping this file uptodate https://etherpad.openstack.org/p/tripleo-ci-breakages | 09:51 |
tchaypo | derekh: well, one of the things that come up at the meeting | 09:52 |
tchaypo | was that the current so-called euro-friendly meeting time seems equally unfriendly to both EU and APAC people | 09:52 |
tchaypo | so I’m busy drafting an email suggesting we do something about that | 09:53 |
tchaypo | such as, for instance, seeing if we can move some of the things we’ve been doing out of the meeting, and having a more focussed meeting | 09:54 |
derekh | ok, sounds good, ya my problem is that its bang in the middle of getting the kids ready for the morning | 09:54 |
tchaypo | and the other meeting used to be in the middle of ng getting his kids ready for bed | 09:55 |
tchaypo | i think dst fixed that for him, but now the euro-friendly meeting time is in the middle of APAC dinner time... | 09:55 |
openstackgerrit | stephen-mulcahy proposed openstack/tripleo-image-elements: Add new nscd element https://review.openstack.org/137099 | 09:55 |
derekh | tchaypo: the other metting used to be ok for me because I could have them off to bed and then attend meeting, now its moved an hour earlier so clashes now | 09:56 |
*** jcoufal_ has joined #tripleo | 09:57 | |
derekh | tchaypo: so basically we've leaned, Ng sends his kids to bed an hour later then me | 09:57 |
derekh | *learned | 09:57 |
*** akrivoka has joined #tripleo | 09:59 | |
*** jcoufal has quit IRC | 10:00 | |
*** untriaged-bot has joined #tripleo | 10:00 | |
untriaged-bot | Untriaged bugs so far: | 10:00 |
untriaged-bot | https://bugs.launchpad.net/tripleo/+bug/1387061 | 10:00 |
uvirtbot | Launchpad bug 1387061 in tripleo "deploy under cloud failure due to pacemaker " [Undecided,New] | 10:00 |
untriaged-bot | https://bugs.launchpad.net/diskimage-builder/+bug/1391656 | 10:00 |
uvirtbot | Launchpad bug 1391656 in diskimage-builder "There is no way to customize the installation of the bootloader" [Undecided,New] | 10:00 |
untriaged-bot | https://bugs.launchpad.net/tuskar/+bug/1387487 | 10:00 |
uvirtbot | Launchpad bug 1387487 in tuskar "tripleo-image-elements/elements/tuskar-ui /os-refresh-config /post-configure.d/101-tuskar-ui needs authentication from Keystone" [Undecided,New] | 10:00 |
*** untriaged-bot has quit IRC | 10:00 | |
derekh | Ok, this is now added to the squid server | 10:00 |
derekh | 91.189.91.14 archive.ubuntu.com | 10:00 |
derekh | 91.189.91.14 nova.clouds.archive.ubuntu.com | 10:00 |
derekh | 91.189.91.14 security.ubuntu.com | 10:00 |
tchaypo | <3 derekh | 10:00 |
derekh | remind me later to check if it can be removed ;-) | 10:01 |
*** rlandy has joined #tripleo | 10:05 | |
Ng | derekh: 7pm every day! | 10:06 |
derekh | Ng: looks like I did that maths the wrong way round, so its my kids that go to bed an hour later | 10:08 |
*** subscope has quit IRC | 10:08 | |
tchaypo | my bedtime was 8:30 every night | 10:11 |
tchaypo | until I went to uni at 17 | 10:12 |
*** avozza is now known as zz_avozza | 10:13 | |
*** zz_avozza is now known as avozza | 10:15 | |
gfidente | derekh, thanks :) rechecking | 10:23 |
openstackgerrit | Dmitry Tantsur proposed openstack/diskimage-builder: Add element for hardware discovery ramdisk for ironic-discoverd https://review.openstack.org/122151 | 10:31 |
openstackgerrit | Giulio Fidente proposed openstack/tripleo-incubator: Add support for CEPHSTORAGESCALE to devtest https://review.openstack.org/137031 | 10:33 |
*** subscope has joined #tripleo | 10:34 | |
*** yamahata has quit IRC | 10:43 | |
openstackgerrit | Giulio Fidente proposed openstack/tripleo-heat-templates: Add ceph-source.yaml to the overcloud.yaml Makefile target https://review.openstack.org/137028 | 10:44 |
gfidente | ^^ both don't have deps anymore so they're easier to review | 10:44 |
*** yamahata has joined #tripleo | 10:45 | |
*** killer_prince has joined #tripleo | 10:56 | |
*** killer_prince is now known as lazy_prince | 10:56 | |
*** jerryz has joined #tripleo | 10:58 | |
gfidente | tchaypo, derekh so the ceph/ci email is into the wild | 11:25 |
tchaypo | Are you scared? | 11:25 |
gfidente | yeah | 11:25 |
gfidente | tchaypo, you didn't tell me if germany was sunnyt | 11:25 |
gfidente | I was going to suggest you get down here as long as some sun is still there | 11:26 |
*** blinky_ghost has joined #tripleo | 11:28 | |
blinky_ghost | Hi can anybody help me with network part in overcloud controller? I have a bridge br-ex created through the interface em2 that binds openstack services. The problem is that when I reboot the controller br-ex doesn't get ip anymore. | 11:31 |
*** pensu has quit IRC | 11:41 | |
*** avozza is now known as zz_avozza | 11:44 | |
*** pradeep has quit IRC | 11:48 | |
tchaypo | Does os-collect-config put it back? | 11:53 |
blinky_ghost | tchaypo: br-ex never comes up. apparently it should get ip from dhcp | 11:57 |
blinky_ghost | tchaypo: is it possible to deploy the overcloud without br-ex? I don't to use br-ex only vlan provider networks. But I can't figure it out how to do this | 11:59 |
*** pradeep has joined #tripleo | 12:12 | |
*** dshulyak_ has joined #tripleo | 12:15 | |
blinky_ghost | lsmola: good morning, did you had the chance to test baremetal deployment? | 12:15 |
*** morazi has quit IRC | 12:16 | |
lsmola | blinky_ghost: hello, not yet, still waiting for machines | 12:16 |
lsmola | blinky_ghost: have you succeed with your test? | 12:16 |
blinky_ghost | lsmola: I can reach overcloud horizon, I had to change ALLOWED_HOSTS = ['*']. But I cannot login, it reports a authentication problem. So I set selinux=permissive and rebooted the node. The problem is that when I reboot I cannot get ip in br-ex interface anymore. | 12:19 |
*** pradeep1 has joined #tripleo | 12:21 | |
*** pradeep has quit IRC | 12:23 | |
lsmola | blinky_ghost: have you rebooted using ironic console? | 12:23 |
*** bvandenh has quit IRC | 12:24 | |
lsmola | blinky_ghost: hm for the authentication error I would need to see you keystone log | 12:24 |
blinky_ghost | lsmola: no, I tried to reboot it normally | 12:25 |
lsmola | blinky_ghost: I don't thing selinux is the problem here, otherwise it would not even show you the login screen | 12:25 |
lsmola | blinky_ghost: please reboot it only via ironic or nova, it should boot it correctly then | 12:25 |
lsmola | blinky_ghost: didn't know about the allowed host, but it make sense | 12:26 |
blinky_ghost | lsmola: I've activated debug in keystone but nothing happens | 12:26 |
lsmola | blinky_ghost: you didn't see anything there? | 12:26 |
lsmola | blinky_ghost: what about horizon log? | 12:26 |
blinky_ghost | lsmola: /var/log/httpd/error_log ? | 12:27 |
*** dshulyak_ has quit IRC | 12:27 | |
blinky_ghost | lsmola: Login failed for user "admin". | 12:27 |
lsmola | lsmola: I think there is horizon_error log? | 12:27 |
lsmola | lsmola: hm, might be good to run debug mode with horizon too | 12:28 |
lsmola | blinky_ghost: but I think should be in local settings, either in /etc/ or under the package | 12:29 |
lsmola | blinky_ghost: damn why I am writing to myself :-D | 12:29 |
lsmola | blinky_ghost: if you search for local_settings.py under /opt | 12:29 |
lsmola | blinky_ghost: I think there was a bug and it didn't take the one under /etc last time I checked | 12:30 |
lsmola | blinky_ghost: you are using the password you see in the UI ? | 12:30 |
blinky_ghost | lsmola: yes I am | 12:30 |
lsmola | blinky_ghost: also could you try to ssh into the controller node | 12:30 |
lsmola | blinky_ghost: do, sudo -i | 12:30 |
lsmola | blinky_ghost: source stackrc | 12:31 |
lsmola | blinky_ghost: and try some CLI commands | 12:31 |
lsmola | blinky_ghost: optionally check if the admin password in stackrc is the same you are using | 12:31 |
lsmola | blinky_ghost: might be that you have a bad password given the error log I see | 12:31 |
blinky_ghost | lsmola: yes the password is the same | 12:32 |
lsmola | blinky_ghost: and the CLI is working? | 12:32 |
blinky_ghost | lsmola: yes | 12:32 |
lsmola | blinky_ghost: hmm | 12:32 |
blinky_ghost | lsmola: If I run openstack-status | 12:32 |
blinky_ghost | lsmola: I can see that everything is work | 12:33 |
blinky_ghost | working | 12:33 |
lsmola | blinky_ghost: og try e.g. nova list, or glance image-list, or nova hypervisor-list | 12:33 |
blinky_ghost | lsmola: [root@ov-tox5cniho3l-0-a4sicw6qkntj-controller-5iiawyyoe5za ~]# nova list | 12:33 |
blinky_ghost | +----+------+--------+------------+-------------+----------+ | 12:33 |
blinky_ghost | | ID | Name | Status | Task State | Power State | Networks | | 12:33 |
blinky_ghost | +----+------+--------+------------+-------------+----------+ | 12:33 |
blinky_ghost | +----+------+--------+------------+-------------+----------+ | 12:33 |
blinky_ghost | lsmola: [root@ov-tox5cniho3l-0-a4sicw6qkntj-controller-5iiawyyoe5za ~]# nova hypervisor-list | 12:34 |
blinky_ghost | +----+-----------------------------------------------------------------+ | 12:34 |
blinky_ghost | | ID | Hypervisor hostname | | 12:34 |
blinky_ghost | +----+-----------------------------------------------------------------+ | 12:34 |
blinky_ghost | | 1 | ov-hjokdompzj-0-vld4jkylg56c-novacompute-ecndpatd7xxv.novalocal | | 12:34 |
blinky_ghost | +----+-----------------------------------------------------------------+ | 12:34 |
lsmola | blinky_ghost: ok that looks good, please paste it to external file :-) | 12:34 |
blinky_ghost | lsmola: sorry | 12:34 |
lsmola | blinky_ghost: seems like only the UI is miss configured | 12:34 |
lsmola | blinky_ghost: ok, could you check what OPENSTACK_HOST you have in local_settings? | 12:35 |
blinky_ghost | lsmola: I still believe is something with selinux I think I saw this error before | 12:35 |
lsmola | blinky_ghost: and if you can curl the address? | 12:35 |
lsmola | blinky_ghost: hm, it could be I guess | 12:35 |
blinky_ghost | lsmola: OPENSTACK_HOST = "127.0.0.1" | 12:36 |
lsmola | blinky_ghost: I would need to see from the log if it really talks to keystone | 12:36 |
*** pradeep has joined #tripleo | 12:36 | |
lsmola | blinky_ghost: I think it's fine if you have keystone on localhost:5000 | 12:37 |
lsmola | blinky_ghost: yo uare using fedora 20? or centos? | 12:37 |
blinky_ghost | lsmola: nopes | 12:37 |
*** pradeep1 has quit IRC | 12:37 | |
lsmola | blinky_ghost: so what host do you have in stackrc? | 12:37 |
blinky_ghost | lsmola: keystone is running on public_bind_host = 192.0.2.66 | 12:37 |
blinky_ghost | lsmola: I have http://192.0.2.64:5000/v2.0 | 12:38 |
lsmola | blinky_ghost: ok fill the same to local settings OPENSTACK_HOST | 12:38 |
*** bvandenh has joined #tripleo | 12:38 | |
blinky_ghost | lsmola: it's working :D | 12:41 |
lsmola | blinky_ghost: cool | 12:41 |
blinky_ghost | lsmola: thanks :) how do I change this? on heat-template? on the image? | 12:42 |
lsmola | blinky_ghost: this is in horizon image-element | 12:42 |
lsmola | blinky_ghost: hm damn https://github.com/openstack/tripleo-image-elements/blob/master/elements/horizon/os-apply-config/etc/horizon/local_settings.py#L62 | 12:44 |
lsmola | blinky_ghost: so it's the bug that it actually does not take the local_settings from /etc | 12:44 |
lsmola | blinky_ghost: cause the element has it correct | 12:44 |
blinky_ghost | lsmola: ok the bug is already open, right? | 12:45 |
lsmola | blinky_ghost: I don't think so :-) | 12:45 |
blinky_ghost | lsmola: OK I'll file a bug :) | 12:45 |
*** rushiagr is now known as rushiagr_away | 12:46 | |
lsmola | blinky_ghost: I just noticed it while ago and wanted to investigate further, haven't have time yet :-) | 12:46 |
lsmola | blinky_ghost: ok, thank you | 12:46 |
lsmola | blinky_ghost: yo uare using source install, right? | 12:46 |
lsmola | blinky_ghost: I think package install has this working | 12:46 |
blinky_ghost | lsmola: yes | 12:46 |
lsmola | blinky_ghost: so the bug is most probably here https://github.com/openstack/tripleo-image-elements/blob/master/elements/horizon/install.d/horizon-source-install/100-horizon | 12:47 |
*** jcoufal_ has quit IRC | 12:47 | |
*** jcoufal has joined #tripleo | 12:48 | |
blinky_ghost | lsmola: another question, I know that I'm a pain in the a** :) Is it possible to deploy the overcloud without br-ex? I don't want to use that. I only want to use provider networks. | 12:48 |
lsmola | blinky_ghost: I am glad to help, I am actually glad you are helping me to test this :-) | 12:49 |
lsmola | blinky_ghost: we will have less work when QA will take this :-) | 12:49 |
lsmola | blinky_ghost: hm, that question goes probably beyond me :-) really my networking skills sucks | 12:50 |
blinky_ghost | lsmola: well I can say it's working now. If you want to hire me just for doing this I don't mind :) | 12:50 |
blinky_ghost | lsmola: OK, I'll ask dprince when he's around :) | 12:50 |
lsmola | blinky_ghost: well I think we are hiring :-) | 12:51 |
lsmola | blinky_ghost: ok, I think he is the right person to ask | 12:51 |
blinky_ghost | lsmola: OK so now I'll try to reboot the controller through nova to see if it comes up :) | 12:52 |
lsmola | blinky_ghost: ok :-) | 12:52 |
* lsmola will be back in 30mins | 12:52 | |
*** morazi has joined #tripleo | 13:01 | |
*** pradeep1 has joined #tripleo | 13:02 | |
*** pradeep has quit IRC | 13:04 | |
*** noslzzp has joined #tripleo | 13:04 | |
*** zz_avozza is now known as avozza | 13:06 | |
*** tzumainn has joined #tripleo | 13:07 | |
*** pradeep has joined #tripleo | 13:10 | |
*** avozza is now known as zz_avozza | 13:12 | |
*** pradeep1 has quit IRC | 13:13 | |
*** zz_avozza is now known as avozza | 13:13 | |
*** pradeep1 has joined #tripleo | 13:14 | |
*** avozza is now known as zz_avozza | 13:14 | |
*** pradeep has quit IRC | 13:14 | |
tchaypo | blinky_ghost: I’m perversely glad I’m not the only person who can’t answer your question | 13:15 |
tchaypo | it sucks for you, but it makes me feel less dumb | 13:15 |
*** zz_avozza has quit IRC | 13:16 | |
*** zz_avozza has joined #tripleo | 13:18 | |
*** zz_avozza is now known as avozza | 13:18 | |
*** julim has quit IRC | 13:19 | |
*** nosnos has quit IRC | 13:20 | |
*** avozza is now known as zz_avozza | 13:21 | |
*** zz_avozza is now known as avozza | 13:22 | |
openstackgerrit | Merged openstack/python-tuskarclient: Updated from global requirements https://review.openstack.org/135990 | 13:27 |
*** weshay has joined #tripleo | 13:31 | |
*** bvandenh has quit IRC | 13:32 | |
*** rushiagr_away is now known as rushiagr | 13:42 | |
*** bvandenh has joined #tripleo | 13:47 | |
*** julim has joined #tripleo | 13:49 | |
*** yamahata has quit IRC | 13:50 | |
*** yamahata has joined #tripleo | 13:51 | |
openstackgerrit | Merged openstack/tuskar: Remove outdated note from the install docs https://review.openstack.org/136430 | 13:59 |
*** jehb_ has joined #tripleo | 14:07 | |
*** avozza is now known as zz_avozza | 14:13 | |
*** zz_avozza is now known as avozza | 14:14 | |
*** tchaypo has quit IRC | 14:15 | |
openstackgerrit | Ladislav Smola proposed openstack/tripleo-incubator: Switch to os-cloud-config register-endpoints https://review.openstack.org/113841 | 14:16 |
*** tchaypo has joined #tripleo | 14:17 | |
openstackgerrit | Merged stackforge/kolla: Fix to not fork mongod so mongodb container works as expected https://review.openstack.org/137230 | 14:24 |
*** pradeep has joined #tripleo | 14:27 | |
blinky_ghost | thcaype: ok :) thanks anyway | 14:29 |
*** pradeep1 has quit IRC | 14:30 | |
*** ramishra has quit IRC | 14:33 | |
*** pradeep has quit IRC | 14:34 | |
*** pradeep has joined #tripleo | 14:34 | |
*** Hazelesque has quit IRC | 14:40 | |
*** Hazelesque has joined #tripleo | 14:40 | |
*** pradeep1 has joined #tripleo | 14:41 | |
*** mikeit has joined #tripleo | 14:42 | |
*** pradeep has quit IRC | 14:42 | |
*** Hazelesque has quit IRC | 14:44 | |
*** pradeep has joined #tripleo | 14:45 | |
*** pradeep1 has quit IRC | 14:46 | |
*** mikeit has quit IRC | 14:47 | |
*** Hazelesque has joined #tripleo | 14:47 | |
*** mikeit has joined #tripleo | 14:47 | |
*** pradeep1 has joined #tripleo | 14:49 | |
*** pradeep has quit IRC | 14:52 | |
*** pradeep has joined #tripleo | 15:02 | |
*** pradeep1 has quit IRC | 15:03 | |
sdake | morning | 15:03 |
openstackgerrit | Jerry Zhao proposed openstack/tripleo-incubator: use lowercase name to check for user/tenant existence https://review.openstack.org/136479 | 15:03 |
blinky_ghost | lsmola: https://bugs.launchpad.net/tripleo/+bug/1396638 | 15:05 |
uvirtbot | Launchpad bug 1396638 in tripleo "Controller overcloud horizon doesn't allow login after deployment" [Undecided,New] | 15:05 |
*** wuhg has quit IRC | 15:05 | |
*** wuhg has joined #tripleo | 15:05 | |
*** pradeep1 has joined #tripleo | 15:07 | |
*** pradeep has quit IRC | 15:09 | |
*** jcoufal has quit IRC | 15:10 | |
*** avozza is now known as zz_avozza | 15:11 | |
*** zz_avozza is now known as avozza | 15:15 | |
*** lazy_prince is now known as killer_prince | 15:21 | |
*** avozza is now known as zz_avozza | 15:27 | |
*** edmund has joined #tripleo | 15:28 | |
openstackgerrit | Ryan Brady proposed openstack/diskimage-builder: Add Activation Key Support For Customer Portal https://review.openstack.org/137378 | 15:30 |
*** zz_avozza is now known as avozza | 15:31 | |
*** marun has joined #tripleo | 15:31 | |
*** radez is now known as radez_g0n3 | 15:32 | |
*** WebSeb has joined #tripleo | 15:32 | |
WebSeb | Hello | 15:34 |
*** rwsu has joined #tripleo | 15:34 | |
*** WebSeb has quit IRC | 15:34 | |
openstackgerrit | Dmitry Tantsur proposed openstack/diskimage-builder: Add element for hardware discovery ramdisk for ironic-discoverd https://review.openstack.org/122151 | 15:36 |
openstackgerrit | Nicholas Randon proposed openstack/tripleo-image-elements: Split RabbitMQ actions out of startup script https://review.openstack.org/134249 | 15:36 |
*** pradeep has joined #tripleo | 15:37 | |
*** pradeep has quit IRC | 15:37 | |
*** pradeep1 has quit IRC | 15:39 | |
*** avozza is now known as zz_avozza | 15:43 | |
*** zz_avozza is now known as avozza | 15:43 | |
*** jcoufal has joined #tripleo | 15:46 | |
*** akrivoka has quit IRC | 15:46 | |
*** avozza is now known as zz_avozza | 15:54 | |
*** vinsh has joined #tripleo | 15:54 | |
*** pcrews has joined #tripleo | 15:56 | |
*** untriaged-bot has joined #tripleo | 16:00 | |
untriaged-bot | Untriaged bugs so far: | 16:00 |
untriaged-bot | https://bugs.launchpad.net/tripleo/+bug/1387061 | 16:00 |
untriaged-bot | https://bugs.launchpad.net/tripleo/+bug/1396638 | 16:00 |
uvirtbot | Launchpad bug 1387061 in tripleo "deploy under cloud failure due to pacemaker " [Undecided,New] | 16:00 |
uvirtbot | Launchpad bug 1396638 in tripleo "Controller overcloud horizon doesn't allow login after deployment" [Undecided,New] | 16:00 |
untriaged-bot | https://bugs.launchpad.net/diskimage-builder/+bug/1391656 | 16:00 |
uvirtbot | Launchpad bug 1391656 in diskimage-builder "There is no way to customize the installation of the bootloader" [Undecided,New] | 16:00 |
untriaged-bot | https://bugs.launchpad.net/tuskar/+bug/1387487 | 16:00 |
uvirtbot | Launchpad bug 1387487 in tuskar "tripleo-image-elements/elements/tuskar-ui /os-refresh-config /post-configure.d/101-tuskar-ui needs authentication from Keystone" [Undecided,New] | 16:00 |
*** untriaged-bot has quit IRC | 16:00 | |
*** pblaho_ has joined #tripleo | 16:01 | |
*** mikeit has quit IRC | 16:04 | |
*** mrunge has quit IRC | 16:04 | |
*** pblaho has quit IRC | 16:04 | |
openstackgerrit | Ryan Brady proposed openstack/tripleo-image-elements: Migrate horizon element to svc-map https://review.openstack.org/134081 | 16:06 |
tteggel | anyone able to look at https://review.openstack.org/#/c/131795/ ? | 16:07 |
*** jerryz has quit IRC | 16:08 | |
*** pblaho_ is now known as pblaho | 16:16 | |
*** zigo has quit IRC | 16:16 | |
*** akrivoka has joined #tripleo | 16:17 | |
*** zigo has joined #tripleo | 16:27 | |
*** k4n0 has quit IRC | 16:30 | |
*** pblaho_ has joined #tripleo | 16:31 | |
*** rdopiera has quit IRC | 16:32 | |
*** jcoufal has quit IRC | 16:33 | |
*** pblaho has quit IRC | 16:35 | |
*** Marga_ has joined #tripleo | 16:46 | |
*** akrivoka has quit IRC | 16:47 | |
*** pblaho_ has quit IRC | 16:49 | |
*** daneyon has quit IRC | 16:51 | |
*** eghobo has joined #tripleo | 16:54 | |
*** Marga_ has quit IRC | 16:57 | |
*** jsidhu has joined #tripleo | 16:58 | |
*** Marga_ has joined #tripleo | 16:58 | |
*** Marga_ has quit IRC | 16:59 | |
*** Marga_ has joined #tripleo | 16:59 | |
*** Marga_ has quit IRC | 16:59 | |
*** Marga_ has joined #tripleo | 17:00 | |
*** eghobo has quit IRC | 17:04 | |
*** ChuckC_ has quit IRC | 17:05 | |
*** ChuckC has joined #tripleo | 17:06 | |
*** eghobo has joined #tripleo | 17:08 | |
*** eghobo has quit IRC | 17:09 | |
*** Marga_ has quit IRC | 17:24 | |
*** Marga_ has joined #tripleo | 17:26 | |
openstackgerrit | Merged openstack/tripleo-image-elements: Increased protection to prevent vip https://review.openstack.org/135494 | 17:28 |
*** Marga_ has quit IRC | 17:30 | |
*** Marga_ has joined #tripleo | 17:30 | |
*** jang1 has joined #tripleo | 17:32 | |
*** daneyon has joined #tripleo | 17:36 | |
*** bvandenh has quit IRC | 17:46 | |
*** Marga_ has quit IRC | 17:52 | |
*** Marga_ has joined #tripleo | 17:53 | |
*** Marga_ has quit IRC | 17:54 | |
*** Marga_ has joined #tripleo | 17:55 | |
*** Marga_ has quit IRC | 17:55 | |
*** jistr has quit IRC | 17:56 | |
*** Marga_ has joined #tripleo | 17:56 | |
*** derekh has quit IRC | 17:58 | |
*** Marga_ has quit IRC | 18:06 | |
*** Marga_ has joined #tripleo | 18:06 | |
*** Marga_ has quit IRC | 18:07 | |
*** Marga_ has joined #tripleo | 18:07 | |
*** dshulyak_ has joined #tripleo | 18:10 | |
*** Marga_ has quit IRC | 18:12 | |
*** Marga_ has joined #tripleo | 18:12 | |
*** dtantsur is now known as dtantsur|afk | 18:13 | |
*** Marga_ has quit IRC | 18:13 | |
*** Marga_ has joined #tripleo | 18:14 | |
*** Marga_ has quit IRC | 18:18 | |
*** Marga_ has joined #tripleo | 18:18 | |
*** Marga_ has quit IRC | 18:19 | |
*** Marga_ has joined #tripleo | 18:19 | |
*** Marga_ has quit IRC | 18:21 | |
*** Marga_ has joined #tripleo | 18:22 | |
*** athomas has quit IRC | 18:24 | |
*** Marga_ has quit IRC | 18:25 | |
*** Marga_ has joined #tripleo | 18:25 | |
*** ifarkas has quit IRC | 18:27 | |
*** zz_avozza is now known as avozza | 18:28 | |
*** lucasagomes has quit IRC | 18:28 | |
openstackgerrit | Nicholas Randon proposed openstack/tripleo-image-elements: Split RabbitMQ actions out of startup script https://review.openstack.org/134249 | 18:28 |
*** jp_at_hp has quit IRC | 18:29 | |
*** Marga_ has quit IRC | 18:32 | |
*** spredzy has left #tripleo | 18:32 | |
*** Marga_ has joined #tripleo | 18:32 | |
*** jsidhu has quit IRC | 18:33 | |
*** wuhg has quit IRC | 18:33 | |
*** pradk has joined #tripleo | 18:35 | |
*** Marga_ has quit IRC | 18:35 | |
*** Marga_ has joined #tripleo | 18:36 | |
*** avozza is now known as zz_avozza | 18:36 | |
*** Marga_ has quit IRC | 18:39 | |
*** Marga_ has joined #tripleo | 18:39 | |
*** rushiagr is now known as rushiagr_away | 18:45 | |
*** jsidhu has joined #tripleo | 18:47 | |
*** rwsu has quit IRC | 18:50 | |
*** zz_avozza is now known as avozza | 18:57 | |
*** yamahata has quit IRC | 18:59 | |
*** avozza is now known as zz_avozza | 19:07 | |
*** zz_avozza is now known as avozza | 19:08 | |
*** penick has joined #tripleo | 19:09 | |
blinky_ghost | lsmola: are you there? | 19:11 |
*** jprovazn has quit IRC | 19:20 | |
*** blinky_ghost has quit IRC | 19:26 | |
*** blinky_ghost has joined #tripleo | 19:32 | |
rbrady | blinky_ghost: it's likely lsmola is afk for the evening | 19:36 |
*** blinky_ghost has quit IRC | 19:37 | |
*** dshulyak_ has quit IRC | 19:45 | |
*** dshulyak_ has joined #tripleo | 19:45 | |
*** dshulyak_ has quit IRC | 19:49 | |
*** jang1 has quit IRC | 19:59 | |
*** radez_g0n3 is now known as radez | 20:01 | |
openstackgerrit | Merged openstack/tripleo-image-elements: Fix syntax error in deploy-ci-overcloud https://review.openstack.org/135716 | 20:03 |
openstackgerrit | Merged openstack/os-cloud-config: Deal with uppercase MAC address in register-nodes https://review.openstack.org/135809 | 20:10 |
*** penick_ has joined #tripleo | 20:11 | |
*** dshulyak_ has joined #tripleo | 20:12 | |
*** penick has quit IRC | 20:13 | |
*** penick_ is now known as penick | 20:13 | |
openstackgerrit | Chris Jones proposed openstack/diskimage-builder: Continue past dependency ordering diffs. https://review.openstack.org/137465 | 20:24 |
*** dshulyak_ has quit IRC | 20:25 | |
*** jsidhu has quit IRC | 20:27 | |
*** avozza is now known as zz_avozza | 20:36 | |
*** penick has quit IRC | 20:37 | |
*** dshulyak_ has joined #tripleo | 20:40 | |
openstackgerrit | greghaynes proposed openstack/tripleo-image-elements: Longer upstart sleep for neutron-ovs-agent https://review.openstack.org/137195 | 20:51 |
openstackgerrit | Merged stackforge/kolla: Horizon container implementation https://review.openstack.org/135773 | 20:55 |
openstackgerrit | greghaynes proposed openstack/diskimage-builder: Add new package-installs system https://review.openstack.org/134917 | 20:55 |
*** weshay has quit IRC | 21:12 | |
*** radez is now known as radez_g0n3 | 21:17 | |
*** pradk has quit IRC | 21:23 | |
*** amitpp has joined #tripleo | 21:30 | |
*** weshay has joined #tripleo | 21:31 | |
*** gfidente has quit IRC | 21:36 | |
*** dshulyak_ has quit IRC | 21:38 | |
openstackgerrit | greghaynes proposed openstack/diskimage-builder: Migrate to new package-installs https://review.openstack.org/137478 | 21:38 |
*** jehb_ has quit IRC | 21:42 | |
openstackgerrit | greghaynes proposed openstack/diskimage-builder: Migrate to new package-installs https://review.openstack.org/137478 | 21:49 |
openstackgerrit | greghaynes proposed openstack/diskimage-builder: Migrate to new package-installs https://review.openstack.org/137478 | 21:50 |
*** zz_avozza is now known as avozza | 21:53 | |
*** ifarkas_ has joined #tripleo | 21:56 | |
*** amitpp has quit IRC | 21:58 | |
*** ifarkas_ has quit IRC | 21:59 | |
*** jsidhu has joined #tripleo | 22:00 | |
*** ccrouch has quit IRC | 22:21 | |
*** morazi has quit IRC | 22:24 | |
*** rlandy has quit IRC | 22:25 | |
*** daneyon has quit IRC | 22:35 | |
*** weshay has quit IRC | 22:42 | |
*** EmilienM has quit IRC | 22:47 | |
*** EmilienM has joined #tripleo | 22:47 | |
openstackgerrit | Ben Nemec proposed openstack/tripleo-image-elements: Add heat sudo enablement from dib https://review.openstack.org/136643 | 23:11 |
NobodyCam | good afternoon TripleO I have a question about the best way to have an element modify a setting in another element. As an example I am working on adding support Ironic-python-agent in to devtest. IPA requires swift-temp-url support, so I am looking at a way to change the backend setting in seed-stack-config element | 23:16 |
NobodyCam | or have a devtest it self detect the element and affect the change from the devtest_* script it self | 23:18 |
* greghaynes doesnt totally understand | 23:18 | |
NobodyCam | greghaynes: seed-stack-config holds the config.json for the seedvm | 23:18 |
NobodyCam | which has the glance backend set to file. | 23:19 |
greghaynes | so if its a feature you would like to turn on that has effects the elements included and some settings then it probably will need to go in similar to how we did with ironic where we had the USE_IRONIC=1 | 23:19 |
NobodyCam | I would like to clean;y switch to swift | 23:19 |
greghaynes | ah | 23:19 |
greghaynes | so, does that need to be configurable / can we make swift be a requirement there when using ironic? | 23:20 |
NobodyCam | I can add settings that will not be used by other elements but not sure how to change a current value | 23:20 |
NobodyCam | the patch I am working will add a $IRONIC_DEPLOY_PROVIDER var | 23:21 |
NobodyCam | so the ironic driver can be switched | 23:21 |
NobodyCam | I'm not sure what the cost to the seed would be to make swift a requirment if its only used for one ironic driver | 23:22 |
NobodyCam | which i am thinking will not be the default one | 23:23 |
greghaynes | yea, so you generally have to do two things to add something like that. for the undercloud (and overcloud if it applies but I dont think it does here) you parameterize that property in the heat templates and give it a reasonable default, then you also have to add a default to the seed local.json youre talking about and add the jq in devtest_seed.sh so a user can set something else via env var or somesuch | 23:24 |
greghaynes | if its something where the default is pretty reasonable for most users you can get away with not doing the env var + jq stuff though since a user can just modify the seed config.json manually | 23:25 |
greghaynes | this does kind of seem like a thing where you can add the property to config.json and a parameter to the undercloud heat template and be done | 23:26 |
greghaynes | since I dont think most users will want to mess with that value | 23:26 |
NobodyCam | yea ... I have an Idea, let me ponder on it for a bit :) | 23:28 |
NobodyCam | Ty greghaynes | 23:28 |
greghaynes | np | 23:28 |
openstackgerrit | Merged openstack/tuskar: Updated from global requirements https://review.openstack.org/134385 | 23:28 |
*** avozza is now known as zz_avozza | 23:46 | |
*** marun has quit IRC | 23:57 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!