Thursday, 2015-10-01

*** stanchan has quit IRC00:05
*** signed8bit has quit IRC00:08
*** geoffarn_ has quit IRC00:11
*** geoffarnold has joined #openstack-operators00:11
*** mriedem1 has joined #openstack-operators00:18
*** SimonChung1 has quit IRC00:21
*** mriedem has quit IRC00:21
*** sdake has quit IRC00:23
*** geoffarnold has quit IRC00:32
*** geoffarnold has joined #openstack-operators00:32
*** Rockyg has quit IRC00:41
*** mriedem has joined #openstack-operators00:51
*** geoffarnold has quit IRC00:53
*** mriedem1 has quit IRC00:53
*** geoffarnold has joined #openstack-operators00:54
*** B_Smith has quit IRC00:59
*** Rockyg has joined #openstack-operators01:03
*** geoffarnold has quit IRC01:15
*** geoffarnold has joined #openstack-operators01:15
*** emagana has quit IRC01:27
*** geoffarnold is now known as geoffarnoldX01:33
*** B_Smith has joined #openstack-operators01:36
*** geoffarnold has joined #openstack-operators01:36
*** Rockyg has quit IRC01:39
*** geoffarnoldX has quit IRC01:41
klindgrensorrison, re: metadata02:03
klindgrenwe run metadata on every compute node vs's a designated network node02:03
klindgrenbinding 169.254.169.254 locally to loopback or dummy0 then applying iptables rules to snat traffic to 169.254.169.254 to 127.0.0.1:8775 (or whatever port metadata runs on)02:04
sorrisonAh ok, so do you not need/run neutron-metadata-proxy?02:09
*** k_stev has joined #openstack-operators02:13
*** k_stev has quit IRC02:13
*** markvoelker has quit IRC02:15
klindgrencorrect02:15
klindgrenwe dont run neutron-metadata-proxy02:15
sorrisonhmm ok cool, I'll have a play. We are doing the big switch to neutron on Tuesday02:16
klindgrenwe have: -A PREROUTING -d 169.254.169.254/32 -p tcp -m tcp --dport 80 -j DNAT --to-destination :8775 in the nat table02:18
sorrisonYeah we had been adding that too but pointing it to the neutron-metadata-proxy to support pre migrated instances that don't have the route added.02:19
klindgrenip addr list lo02:19
klindgren<snip>02:19
klindgreninet 169.254.169.254/32 brd 169.254.169.254 scope host lo02:19
klindgren</snip>02:19
sorrisonSo --to-destination :8775 is valid?02:19
klindgrenyea02:19
klindgreninside a vm: route -n shows: 169.254.0.0     0.0.0.0         255.255.0.0     U     1002   0        0 eth002:20
sorrisonso why do you need to route in the instance?02:21
klindgrenthat makes the instance arp/send out the ip out the interface on the network just like any other subnet02:22
klindgrenwhich then hits the iptables rules on the bridge - and gets the traffic snat'd02:22
sorrisonbut we don't have that route currently with our nova-network setup02:22
klindgrenif you turn off zeroconfig iirc that route is there on pretty much all versions of windows/linuxes02:23
sorrisonok will have a play02:23
klindgrenanyway if you have a nova-network setup - you *should* be able to do the exact same thing under neutron02:24
sorrisonsweet, this makes it a lot simpler02:25
sorrisonSo then service_metadata_proxy would be set to false then I assume (the default)02:26
klindgrenyea02:27
drwahlxavpaice: https://gist.github.com/drwahl/dfa16f85a2e1d342c1f702:32
drwahlthat's more or less how we fixed the cookie issue02:32
drwahlmay not apply cleanly if you don't build horizon into a virtualenv, but it's a simple enough patch you could apply it by hand02:33
xavpaicegreat, thanks for that!02:34
drwahlno problemo02:35
drwahlfwiw, it seems like HP has the same issue02:35
drwahland they seem to have chosen to ignore it02:35
xavpaiceI gather many do - I think the latest version has it fixed, but can't confirm cos I'm stuck on Juno till we can port our branding across to kilo02:35
drwahlya. we're hopefully pulling the kilo trigger in a couple months02:36
drwahlwe're ripping out NVP/OVS for a new network architecture (linux-bridge/vxlan+akanda)02:36
xavpaicethat sounds rather big and scary :)02:36
drwahlmore than you know :)02:37
klindgrenOur juno to kilo stuff was delayed - until I could get some venv's built to run kilo code of nova/neutron on some cent6 compute nodes - that we were in the process of upgrading, but hadn't yet gotten around to02:37
drwahlthat sounds manageable02:37
xavpaicekilo will be our first move to venv's - till now we're running respun versions of the cloud archive packages but there's... limitations02:38
xavpaicehow are you folks deploying the venv's to prod?02:38
drwahlheh ya02:38
klindgrenvenv's man....02:38
drwahlwe are packaging our own stuff from github02:38
drwahlin venvs02:38
drwahli'm working on pushing some of our stuff into public repos02:38
drwahli.e. our jenkins jobs02:38
drwahlthat build our stuff02:38
xavpaicepackaging is kinda wide - debs/rpm/tarball?02:39
drwahldeb02:39
klindgrenwe use anvil to build a venv for us from a repo02:39
drwahlwe're ubuntu02:39
klindgrenthen I have some stuff to package the stuff we care about into an rpm02:39
klindgrenfrom the venv02:39
xavpaicecool - same.  Looking forward to seeing your public repo02:39
drwahlworking on it. but it might be a bit before i get it out there02:39
drwahlbut very happy to share02:39
xavpaiceI've been using dh_virtualenv so far and it seems to be quite reasonable02:39
klindgrenso relocatable venv's are kinda pain02:40
klindgrenand rootwrap is also "fun"02:40
xavpaiceam very keen to hear how others are doing this02:40
drwahlwe eseentially have a jenkins jobs that checks out the repo (and branch/revision), then builds a venv, installs the code into the venv, then uses FPM to package it all up02:40
klindgrenwe also had to deal with running our stuff in software collections ot get python27 on centos6 (native python26)02:40
xavpaiceFPM! love that tool02:40
drwahlnow that i'm in an ubuntu shop, i'm ok with FPM02:41
drwahlbut at $previous_employer, we were a centos shop02:41
* xavpaice used to use it to put gems into the Satellite server02:41
drwahland FPM doesn't produce SRPMs02:41
xavpaicetell you what, I'll get these kilo packages building and put them somewhere public so we can compare notes02:42
drwahli can make our packages public(ish) as well02:42
drwahlthat part is easy02:42
drwahlmaking sure the job that builds them is in proper order is more difficult02:43
xavpaiceactually, I'll be able to get the build stuff public but not pretty - the packages themselves will be from our slightly modified repos so probably won't be useful to be public02:44
drwahlya, that's the problem i'm having selling this whole "make things public" here02:45
drwahlour stuff may not be super useful publicly02:45
drwahlbut we have solved some problems that could help others02:45
drwahlso even if our stuff can't be used as-is, the approach will likely be helpful for some02:45
drwahlor so my thought process goes02:45
xavpaiceI'm really lucky that my employer is so pro open-source, we are really encouraged to be releasing anything that might be useful, as GPLv3 no less.02:46
drwahlya, we are actually a really pro-open-source company as well02:47
drwahlbut when there is a bunch of scripts that need passwords and stuff scraped from them that may not even be useful for the public, it's a bit harder to sell that work02:47
xavpaicefor sure02:47
drwahlat the risk of sounding like i'm tooting my own horn, and in the interest of sharing, i've been blogging about how we are doing image building: https://www.dreamhost.com/blog/2015/09/24/dreamcompute-images-a-behind-the-scenes-look-at-our-image-building-process/02:50
*** mriedem has quit IRC02:51
drwahli have another post that should be hitting that site early next week that goes into more details about how we're using veewee and such02:51
*** geoffarnold has quit IRC03:01
*** geoffarnold has joined #openstack-operators03:02
*** harshs has quit IRC03:11
*** markvoelker has joined #openstack-operators03:15
*** markvoelker has quit IRC03:20
*** deepthi has joined #openstack-operators03:23
*** SimonChung has joined #openstack-operators03:35
*** SimonChung1 has joined #openstack-operators03:36
*** SimonChung2 has joined #openstack-operators03:37
*** _hanhart has joined #openstack-operators03:38
*** SimonChung has quit IRC03:39
*** SimonChung1 has quit IRC03:40
*** geoffarn_ has joined #openstack-operators03:44
*** geoffarnold has quit IRC03:45
*** sdake has joined #openstack-operators04:01
*** _hanhart has quit IRC04:02
*** geoffarn_ has quit IRC04:05
*** geoffarnold has joined #openstack-operators04:06
*** markvoelker has joined #openstack-operators04:16
*** markvoelker has quit IRC04:20
*** maishsk has quit IRC04:21
*** sdake_ has joined #openstack-operators04:25
*** VW has joined #openstack-operators04:26
*** geoffarnold has quit IRC04:26
*** geoffarnold has joined #openstack-operators04:27
*** sdake has quit IRC04:28
*** maishsk has joined #openstack-operators04:28
*** harshs has joined #openstack-operators04:28
*** maishsk has quit IRC04:30
*** VW has quit IRC04:46
*** VW has joined #openstack-operators04:46
*** Marga_ has quit IRC04:47
*** geoffarnold has quit IRC04:48
*** signed8bit has joined #openstack-operators04:48
*** geoffarnold has joined #openstack-operators04:48
*** vsedelnik has joined #openstack-operators04:50
*** vsedelnik has quit IRC04:51
*** vsedelnik has joined #openstack-operators04:53
*** signed8b_ has joined #openstack-operators04:54
*** signed8bit has quit IRC04:57
*** harshs has quit IRC04:59
*** geoffarnold has quit IRC05:09
*** geoffarnold has joined #openstack-operators05:09
*** vsedelnik has quit IRC05:11
*** stanchan has joined #openstack-operators05:14
*** vsedelnik has joined #openstack-operators05:14
*** vsedelnik has quit IRC05:16
*** vsedelnik has joined #openstack-operators05:21
*** sdake_ is now known as sdake05:21
*** signed8b_ has quit IRC05:25
*** signed8bit has joined #openstack-operators05:25
*** geoffarnold has quit IRC05:30
*** geoffarnold has joined #openstack-operators05:31
*** geoffarnold is now known as geoffarnoldX05:33
*** geoffarnoldX is now known as geoffarnold05:33
*** geoffarnold is now known as geoffarnoldX05:34
*** vsedelnik has quit IRC05:40
*** signed8bit is now known as signed8bit_ZZZzz05:41
*** geoffarnoldX has quit IRC05:52
*** geoffarnold has joined #openstack-operators05:52
*** VW has quit IRC05:55
*** VW has joined #openstack-operators05:56
*** vsedelnik has joined #openstack-operators05:56
*** VW has quit IRC06:00
*** VW has joined #openstack-operators06:02
*** VW has quit IRC06:10
*** VW has joined #openstack-operators06:10
*** geoffarnold has quit IRC06:13
*** geoffarnold has joined #openstack-operators06:13
*** VW has quit IRC06:15
*** vsedelnik has quit IRC06:17
*** markvoelker has joined #openstack-operators06:17
*** vsedelnik has joined #openstack-operators06:19
*** markvoelker has quit IRC06:21
*** Marga_ has joined #openstack-operators06:39
*** Marga_ has quit IRC06:47
*** geoffarnold has quit IRC06:55
*** geoffarnold has joined #openstack-operators06:56
*** vsedelnik has quit IRC07:13
*** geoffarnold has quit IRC07:16
*** geoffarnold has joined #openstack-operators07:17
*** vsedelnik has joined #openstack-operators07:19
*** vsedelnik has quit IRC07:22
*** matrohon has joined #openstack-operators07:24
*** vsedelnik has joined #openstack-operators07:28
*** vsedelnik has quit IRC07:31
*** bvandenh has joined #openstack-operators07:36
*** Marga_ has joined #openstack-operators07:44
*** openstackgerrit has quit IRC07:46
*** openstackgerrit has joined #openstack-operators07:47
*** Marga_ has quit IRC07:48
*** priteau has joined #openstack-operators08:01
*** bvandenh has quit IRC08:05
*** bvandenh has joined #openstack-operators08:05
*** priteau has quit IRC08:08
*** derekh has joined #openstack-operators08:08
*** markvoelker has joined #openstack-operators08:18
*** markvoelker has quit IRC08:22
*** vsedelnik has joined #openstack-operators08:24
*** geoffarnold has quit IRC08:40
*** geoffarnold has joined #openstack-operators08:41
*** Marga_ has joined #openstack-operators08:45
*** Marga_ has quit IRC08:50
*** deepthi has quit IRC08:57
*** geoffarnold has quit IRC09:02
*** geoffarnold has joined #openstack-operators09:02
*** deepthi has joined #openstack-operators09:10
*** deepthi has quit IRC09:19
*** geoffarn_ has joined #openstack-operators09:24
*** signed8bit_ZZZzz has quit IRC09:24
*** geoffarnold has quit IRC09:28
*** deepthi has joined #openstack-operators09:37
*** bvandenh has quit IRC09:37
*** sdake_ has joined #openstack-operators09:38
*** sdake has quit IRC09:42
*** Marga_ has joined #openstack-operators09:46
*** bvandenh has joined #openstack-operators09:49
*** Marga_ has quit IRC09:51
*** markvoelker has joined #openstack-operators10:19
*** markvoelker has quit IRC10:23
*** geoffarn_ has quit IRC10:26
*** geoffarnold has joined #openstack-operators10:27
*** vsedelnik has quit IRC10:38
*** vsedelnik has joined #openstack-operators10:38
*** Marga_ has joined #openstack-operators10:46
*** geoffarnold has quit IRC10:47
*** geoffarnold has joined #openstack-operators10:48
*** Marga_ has quit IRC10:51
*** vsedelnik has quit IRC10:52
*** cvstealt1 is now known as cvstealth10:57
*** vsedelnik has joined #openstack-operators11:00
*** berendt has joined #openstack-operators11:05
*** geoffarnold has quit IRC11:08
*** geoffarnold has joined #openstack-operators11:09
*** vsedelnik has quit IRC11:15
*** vsedelnik has joined #openstack-operators11:17
*** geoffarnold has quit IRC11:30
*** geoffarnold has joined #openstack-operators11:30
*** markvoelker has joined #openstack-operators11:34
*** markvoelker has quit IRC11:39
*** deepthi has quit IRC11:45
*** Marga_ has joined #openstack-operators11:47
*** geoffarnold has quit IRC11:51
*** geoffarnold has joined #openstack-operators11:51
*** Marga_ has quit IRC11:52
*** markvoelker has joined #openstack-operators12:01
*** geoffarnold has quit IRC12:12
*** geoffarnold has joined #openstack-operators12:13
*** regXboi has joined #openstack-operators12:21
*** alejandrito has joined #openstack-operators12:27
*** geoffarnold has quit IRC12:34
*** geoffarn_ has joined #openstack-operators12:34
*** Marga_ has joined #openstack-operators12:48
*** Marga_ has quit IRC12:53
*** geoffarn_ has quit IRC12:55
*** delattec has joined #openstack-operators12:56
*** geoffarnold has joined #openstack-operators12:56
*** cdelatte has quit IRC12:58
*** jaypipes has joined #openstack-operators12:58
*** k_stev has joined #openstack-operators13:06
*** geoffarnold has quit IRC13:16
*** geoffarn_ has joined #openstack-operators13:17
*** mriedem has joined #openstack-operators13:23
*** signed8bit has joined #openstack-operators13:26
*** csoukup has joined #openstack-operators13:29
*** bvandenh has quit IRC13:29
*** geoffarn_ is now known as geoffarnold13:33
*** geoffarnold has quit IRC13:39
*** stanchan has quit IRC13:48
*** Marga_ has joined #openstack-operators13:49
*** Marga_ has quit IRC13:53
*** berendt has quit IRC13:56
*** drwahl_ has joined #openstack-operators13:56
*** VW has joined #openstack-operators14:05
*** laron has joined #openstack-operators14:11
*** david-lyle has quit IRC14:11
*** david-lyle has joined #openstack-operators14:13
*** signed8bit is now known as signed8bit_ZZZzz14:14
*** signed8bit_ZZZzz is now known as signed8bit14:17
*** dminer has joined #openstack-operators14:20
*** asusk7m550 has joined #openstack-operators14:21
*** rmoats has joined #openstack-operators14:49
*** rmoats has quit IRC14:49
*** Marga_ has joined #openstack-operators14:50
*** rady has joined #openstack-operators14:50
*** mdorman has joined #openstack-operators14:51
*** drwahl has quit IRC14:52
*** Marga_ has quit IRC14:54
*** asusk7m550 has quit IRC14:56
*** geoffarnold has joined #openstack-operators14:56
*** harshs has joined #openstack-operators14:58
*** signed8bit is now known as signed8bit_ZZZzz14:58
*** jmckind has joined #openstack-operators14:59
*** jaypipes has quit IRC14:59
klindgrenxavpaice, drwahl_ were you guys saying that you would move to a new version of openstack as soon as you could port of your branding changes in horizon?15:00
*** signed8bit_ZZZzz is now known as signed8bit15:00
klindgrenIf so - how much owkr is the branding change stuff?15:00
*** drwahl_ is now known as drwahl15:00
drwahlit wasn't so much the branding stuff15:01
klindgrenwe dont use horizon - for our end users - so we dont worry about branding it.  Wondering if thats something we could ask to get made easier? in operator-local-patches15:01
drwahlbut a complete re-architecture of the network :)15:01
klindgrenkk15:01
drwahlwe're going from VLAN using NVP+Akanda+OVS to VXLAN using Akanda+linux-bridge+ML215:02
*** jmckind has quit IRC15:05
*** jmckind_ has joined #openstack-operators15:05
*** SimonChung2 has quit IRC15:06
*** sdake has joined #openstack-operators15:06
*** jmckind_ has quit IRC15:07
*** jmckind has joined #openstack-operators15:07
*** sdake_ has quit IRC15:10
*** Marga_ has joined #openstack-operators15:14
*** vsedelnik has quit IRC15:22
*** vsedelnik has joined #openstack-operators15:23
*** vsedelnik has quit IRC15:26
*** signed8bit is now known as signed8bit_ZZZzz15:30
*** jaypipes has joined #openstack-operators15:30
*** signed8bit_ZZZzz is now known as signed8bit15:39
*** Marga_ has quit IRC15:44
*** Marga_ has joined #openstack-operators15:45
*** vsedelnik has joined #openstack-operators15:49
*** alop has joined #openstack-operators15:49
*** vsedelnik has quit IRC15:50
*** harshs_ has joined #openstack-operators15:51
*** harshs has quit IRC15:53
*** harshs_ is now known as harshs15:53
*** Fin1te has joined #openstack-operators15:56
*** alejandrito has quit IRC15:58
*** stanchan has joined #openstack-operators16:00
*** signed8bit is now known as signed8bit_ZZZzz16:05
*** alejandrito has joined #openstack-operators16:05
*** mdorman has quit IRC16:06
*** mdorman has joined #openstack-operators16:07
*** vsedelnik has joined #openstack-operators16:08
*** vsedelnik has quit IRC16:10
*** signed8bit_ZZZzz is now known as signed8bit16:14
*** SimonChung has joined #openstack-operators16:14
*** jmckind has quit IRC16:18
*** jaypipes has quit IRC16:18
*** vsedelnik has joined #openstack-operators16:21
*** vsedelnik has quit IRC16:21
*** mriedem is now known as mriedem_lunch16:22
*** matrohon has quit IRC16:26
*** vsedelnik has joined #openstack-operators16:29
*** mriedem_lunch is now known as mriedem16:30
*** vsedelnik has quit IRC16:31
*** amit213 has joined #openstack-operators16:43
*** signed8bit is now known as signed8bit_ZZZzz16:49
*** signed8bit_ZZZzz is now known as signed8bit16:52
*** stanchan has quit IRC16:52
*** markvoelker has quit IRC16:55
*** markvoelker has joined #openstack-operators16:56
*** geoffarnold has quit IRC16:56
*** Fin1te has quit IRC16:57
*** k_stev has quit IRC16:58
*** k_stev has joined #openstack-operators16:58
*** harshs has quit IRC16:59
*** derekh has quit IRC17:01
*** sdake_ has joined #openstack-operators17:02
*** mriedem has quit IRC17:02
*** maishsk has joined #openstack-operators17:03
*** vsedelnik has joined #openstack-operators17:03
*** sdake_ has quit IRC17:04
*** maishsk has quit IRC17:05
*** sdake has quit IRC17:05
*** Piet has quit IRC17:06
*** mriedem has joined #openstack-operators17:07
*** Marga_ has quit IRC17:07
*** Marga_ has joined #openstack-operators17:08
*** Marga_ has quit IRC17:13
*** elo1 has quit IRC17:15
*** elo1 has joined #openstack-operators17:23
*** VW_ has joined #openstack-operators17:29
*** geoffarnold has joined #openstack-operators17:29
*** VW has quit IRC17:33
*** VW_ has quit IRC17:33
*** VW has joined #openstack-operators17:33
mfischmriedem: not trying to be argumentative but I dont see how adding a new nova db manage command solves anything when the nova developers cant keep the other one That does something similar functional17:35
mfischif the delete ever works it will break like the other one did and be ignored and eventually die17:35
*** signed8bit is now known as signed8bit_ZZZzz17:36
*** alejandrito has quit IRC17:36
*** Marga_ has joined #openstack-operators17:36
*** alejandrito has joined #openstack-operators17:38
mriedemmfisch: i'm pretty sure most large deployments already have some kind of db prune script, i know that HP cloud and RAX have something like that17:38
mriedemand a lot of operators have said they don't want to archive things17:38
mfischsure17:39
mfischbut nova devs aren't going to maintain it17:39
mriedemnova devs are going to maintain it more than a thing that does not exist in tree17:39
mfischI'm very confused17:39
mriedemif operators are using it and there are problems, then i'd expect bugs to be reported17:39
mfischarchive deleted was reported as bugs a bunch17:39
mriedemmfisch: let's move to the nova channel17:40
mriedemsince i'm not the voice for all of nova17:40
mfischtbh I'm pretty megh17:40
mfischmeh17:40
mfischbugs were filed17:40
mfischit was discussed on the ML17:40
mfischand it was ignored17:40
*** signed8bit_ZZZzz is now known as signed8bit17:41
mfischits not priority for anyone over there and that's fine, we'll end up with the same with a new tool that does something similar17:41
mgagnedrwahl: what are the purpose of "-gate" and "-promote-gate" jobs in https://www.dreamhost.com/blog/wp-content/uploads/2015/09/Screen-Shot-2015-09-23-at-6.10.04-PM.png ?17:44
mgagnedrwahl: are they "dummy" jobs to satisfy Jenkins pipeline system?17:46
drwahlsigh...17:46
drwahlya17:46
*** alejandrito has quit IRC17:46
drwahlit's just to make things look normal to the human eye17:46
mgagnehehe17:46
drwahlthings look kinda goofy if you don't include those dummy jobs17:46
*** alejandrito has joined #openstack-operators17:47
drwahlbut i figured that the whole point of that page was for us (humans) to be able to easily see where the promotion was at, so i did what i needed to make that easy to read17:47
mfischmriedem: I'd love to have delete tools for nova and cinder and glance too, I just dont think the projects will maintain them. We're not big enough to write our own tooling for this stuff17:47
mgagnedrwahl: yea, which plugin is used for this visualisation?17:47
*** geoffarnold has quit IRC17:48
drwahlmgagne: i believe it's coming from https://wiki.jenkins-ci.org/display/JENKINS/Build+Pipeline+Plugin17:48
mgagnedrwahl: we use the pipeline view plugin (which has serious performance issue)17:48
mgagnedrwahl: hmmm17:48
drwahlour pipelines are small, so maybe we aren't noticing the perfomrance issues17:49
drwahlwe literally have 2 pipelines. the one i shared in that blog post, and 1 other for our chef deploys, which looks mostly the same17:49
mgagnedrwahl: ours are small too but I guess it's because some pipelines have jobs with thousands of builds :-/17:49
mgagnedrwahl: I tried https://wiki.jenkins-ci.org/display/JENKINS/Delivery+Pipeline+Plugin but it doesn't play well with trigger parameterized build17:50
mgagnedrwahl: the visualisation is much more human and business friendly17:51
drwahlit seems to be working well enough for us17:51
drwahlwe pass parameters between the jobs17:51
mgagnepipeline plugin works well, you can easily retrigger failed jobs with the same parameters17:52
drwahl          - project: masseffect-image-promote-gate17:52
drwahl            SMOKETEST_IMAGE_ID: '{SMOKETEST_IMAGE_ID}'17:52
drwahl            current-parameters: true17:52
mgagnenot with delivery pipeline plugin =(17:52
*** VW has quit IRC17:52
drwahl^ that's how we are doing it (with jjb)17:52
mgagneyea, same here too17:52
*** VW has joined #openstack-operators17:52
mgagnehmm current-parameters, will have to check17:53
drwahlif we need additional parameters, we either add them to the top level of the pipeline or pass them through with the "property-file" option17:53
mgagnealright, thanks for the info17:55
drwahlnp17:55
*** Fin1te has joined #openstack-operators17:58
*** Piet has joined #openstack-operators18:05
*** cdelatte has joined #openstack-operators18:06
*** delattec has quit IRC18:08
*** delattec has joined #openstack-operators18:22
*** cdelatte has quit IRC18:24
*** maishsk has joined #openstack-operators18:26
*** cdelatte has joined #openstack-operators18:30
*** openstackgerrit has quit IRC18:31
*** openstackgerrit has joined #openstack-operators18:32
*** delattec has quit IRC18:32
*** SimonChung has quit IRC18:34
*** SimonChung has joined #openstack-operators18:34
*** SimonChung1 has joined #openstack-operators18:35
*** SimonChung has quit IRC18:35
*** harshs has joined #openstack-operators18:49
*** delattec has joined #openstack-operators18:51
*** delatte has joined #openstack-operators18:51
*** cdelatte has quit IRC18:53
*** signed8bit is now known as signed8bit_ZZZzz18:53
*** cdelatte has joined #openstack-operators18:55
*** delattec has quit IRC18:56
*** delatte has quit IRC18:56
*** signed8bit_ZZZzz is now known as signed8bit18:59
*** delattec has joined #openstack-operators18:59
*** laron has quit IRC19:01
*** cdelatte has quit IRC19:01
*** david-lyle has quit IRC19:18
*** vsedelnik has quit IRC19:23
*** vsedelnik has joined #openstack-operators19:24
*** vsedelnik has quit IRC19:26
*** david-lyle has joined #openstack-operators19:27
*** matrohon has joined #openstack-operators19:28
*** delatte has joined #openstack-operators19:30
*** cdelatte has joined #openstack-operators19:30
*** delattec has quit IRC19:33
*** logan2 has quit IRC19:47
*** logan2 has joined #openstack-operators19:55
*** SimonChung1 has quit IRC20:00
*** signed8bit has quit IRC20:03
*** SimonChung has joined #openstack-operators20:04
*** elo1 has quit IRC20:10
*** Fin1te has quit IRC20:10
*** elo has joined #openstack-operators20:28
*** geoffarnold has joined #openstack-operators20:29
*** geoffarn_ has joined #openstack-operators20:30
*** geoffarnold has quit IRC20:33
*** k_stev1 has joined #openstack-operators20:40
*** k_stev has quit IRC20:43
*** markvoelker has quit IRC20:46
*** markvoelker has joined #openstack-operators20:46
*** derekh has joined #openstack-operators20:46
*** markvoelker has quit IRC20:47
*** markvoelker has joined #openstack-operators20:47
*** laron has joined #openstack-operators20:48
*** delatte has quit IRC20:50
*** cdelatte has quit IRC20:50
*** VW has quit IRC20:50
*** VW has joined #openstack-operators20:51
*** VW has quit IRC20:55
*** geoffarn_ has quit IRC20:55
*** geoffarnold has joined #openstack-operators20:56
*** k_stev has joined #openstack-operators20:57
*** matrohon has quit IRC20:58
*** laron_ has joined #openstack-operators20:59
*** derekh has quit IRC21:00
*** laron has quit IRC21:01
*** signed8bit has joined #openstack-operators21:07
*** signed8b_ has joined #openstack-operators21:09
*** SimonChung has quit IRC21:11
*** SimonChung1 has joined #openstack-operators21:11
*** SimonChung has joined #openstack-operators21:11
*** SimonChung1 has quit IRC21:11
*** mdorman has quit IRC21:12
*** Fin1te has joined #openstack-operators21:13
*** signed8b_ is now known as signed8bit_ZZZzz21:13
*** signed8bit has quit IRC21:13
*** vsedelnik has joined #openstack-operators21:16
*** geoffarnold has quit IRC21:17
*** geoffarnold has joined #openstack-operators21:17
*** signed8bit_ZZZzz has quit IRC21:18
xavpaiceklindgren: I mentioned we'd upgrade Horizon - Juno to Kilo - but our branding was done in Icehouse, ported to Juno, and moving that to Kilo is harder than we thought because the Horizon code was refactored to make branding easier21:20
xavpaicemaking porting our branding across to the newer format hard - but not impossible21:20
xavpaiceand miles easier in future21:20
klindgrenkk - was thinking about adding osmehint in horizon to make "branding easier"21:21
klindgrenbut I assumeed they would have already done that21:21
klindgrensomething*21:21
xavpaiceyeah, I think they did in Kilo but our dev went on holiday and isn't back till the summit21:21
klindgrenthats a hell of a holiday - good on him21:21
xavpaicehe needs it, so far he's the only full time dev in our team and is a bit... busy :)21:22
xavpaiceanother one starts soon, we're all looking forward to that21:22
drwahlthe bigger story with the horizon stuff is they have been doing massive changes every release21:24
drwahlso it has been a fairly large chunk of work every release to get branding working again21:24
*** vsedelnik has quit IRC21:24
drwahlthey keep selling the changes with "it will be easier in the future", but so far, that hasn't proven true, 'cause it keeps completely changing21:25
xavpaiceso I guess it's easier for people just starting out, but those of us wanting to take existing changes and port them have a hard time21:25
prometheanfirethere's a reason I stopped packaging horizon21:25
drwahlwe've just accepted that we'll be spending at least 1 sprint (2 weeks) fixing the branding stuff each release21:26
drwahland if it gets better, yay. but until we see things *actually* get easier, we'll plan on 1 dev being busy each sprint when we're looking to upgrade21:26
xavpaicestill, that's probably less maintenance than writing a custom replacement21:26
*** vsedelnik has joined #openstack-operators21:27
*** Marga_ has quit IRC21:28
mgagnetrue story about horizon theming... doing kilo upgrade and we just kept horizon icehouse due to theme forward porting madness21:29
mgagnecombined with Ubuntu offline compression madness that I still don't fully understand =(21:30
*** signed8bit has joined #openstack-operators21:30
drwahllol21:30
drwahli had to fix that offline-compression stuff here21:30
drwahlthat was fun...21:30
mgagneyea, I took some patches somewhere to do something21:30
*** Marga_ has joined #openstack-operators21:30
*** vsedelni_ has joined #openstack-operators21:35
*** vsedelnik has quit IRC21:35
*** vsedelni_ has quit IRC21:37
*** vsedelnik has joined #openstack-operators21:38
*** geoffarnold has quit IRC21:38
*** geoffarnold has joined #openstack-operators21:38
*** regXboi has quit IRC21:39
*** vsedelnik has quit IRC21:42
*** mriedem has quit IRC21:43
*** david-lyle has quit IRC21:43
*** Marga_ has quit IRC21:46
*** Marga_ has joined #openstack-operators21:47
*** SimonChung has quit IRC21:51
*** SimonChung1 has joined #openstack-operators21:51
*** Fin1te has quit IRC21:52
*** SimonChung1 has quit IRC21:54
*** SimonChung has joined #openstack-operators21:54
*** mdorman has joined #openstack-operators21:55
*** david-lyle has joined #openstack-operators21:56
*** Marga_ has quit IRC21:59
*** Marga_ has joined #openstack-operators21:59
*** Marga_ has quit IRC22:00
*** Marga_ has joined #openstack-operators22:00
*** laron_ has quit IRC22:00
*** harshs has quit IRC22:02
*** harshs has joined #openstack-operators22:03
*** dminer has quit IRC22:04
xavpaicewe did a customer survey, and the biggest thing people wanted improved was the dashboard - which is what prompted us to get the Juno dash in place before upgrading any of the rest22:06
xavpaicewe've got a large number of small customers that find the dashboard essential, and a small number of large customers that don't need it at all - so I guess it depends on who the target market is22:08
drwahlheh, we did a customer survey and found pretty much the same thing22:11
drwahlwe're considering writing a horizon replacement (but that will be further down the road)22:11
serverascodedrives me crazy, so many customers just using openstack as a vps22:12
serverascodebasically same here on the use of horizon22:12
xavpaiceI'm happy for customers to use OpenStack for whatever they like, but I also try to explain to them the limitations and how to design apps so that's not an issue22:13
*** geoffarn_ has joined #openstack-operators22:16
*** geoffarnold has quit IRC22:20
*** signed8bit has quit IRC22:35
*** geoffarn_ has quit IRC22:37
*** geoffarnold has joined #openstack-operators22:37
*** csoukup has quit IRC22:37
*** vsedelnik has joined #openstack-operators22:39
*** vsedelnik has quit IRC22:45
*** geoffarnold is now known as geoffarnoldX22:48
*** DinaBelova has quit IRC22:49
*** mriedem has joined #openstack-operators22:51
*** DinaBelova has joined #openstack-operators22:52
*** signed8bit has joined #openstack-operators22:52
*** signed8bit has quit IRC22:58
*** geoffarnold has joined #openstack-operators22:59
*** geoffarnoldX has quit IRC22:59
*** alejandrito has quit IRC23:03
*** harshs has quit IRC23:04
*** SimonChung1 has joined #openstack-operators23:05
*** SimonChung has quit IRC23:05
*** SimonChung has joined #openstack-operators23:07
*** SimonChung has quit IRC23:07
*** SimonChung2 has joined #openstack-operators23:07
*** SimonChung1 has quit IRC23:07
*** chlong has quit IRC23:07
*** SimonChung2 has quit IRC23:07
*** SimonChung has joined #openstack-operators23:07
*** harshs has joined #openstack-operators23:08
*** mriedem has quit IRC23:10
mgagnehehe same here23:10
*** mriedem has joined #openstack-operators23:10
mgagnepeople that don't need the dashboard are using 3rd party tools and are literally harassing us to make our cloud "standard" so those tools work. Unfortunately, those tools often assume the standard is Rackspace and/or use legacy API calls which were only relevant when nova-network was used or Glance wasn't a thing. So when I see thread about deprecating old API versions, it frustrates me because I know it would break most or all 3rd party to23:13
*** mriedem has quit IRC23:15
mgagne[...] or all 3rd party tools.23:15
*** k_stev has quit IRC23:23
*** vsedelnik has joined #openstack-operators23:24
serverascodethat's a good point re 3rd party tools23:24
*** alop has quit IRC23:25
*** mriedem has joined #openstack-operators23:25
*** markvoelker has quit IRC23:30
*** geoffarnold has quit IRC23:41
*** geoffarnold has joined #openstack-operators23:41
*** vsedelnik has quit IRC23:41
klindgrenmgagne, agreed re: third party tools23:44
klindgrenI have heard that from itnernal customers on more than one occasion23:44
klindgren"I dont have a private network and public network in my project".  Um yea- thats not an openstack standard - your project  that you are using is wrong.23:45

Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!