RE: Deploying Juju charms from Github

2015-04-17 Thread Robert Day
From: Mark Shuttleworth [mailto:m...@ubuntu.com] Sent: 16 April 2015 07:41 There's a current limitation with bundles in the GUI, because they are actually deployed server-side, which makes the drag-and-drop interaction awkward. However, I just saw a lighting talk demo of client-side bundle

Re: Existing Charms: Can we get ppc64 PPA's built?

2015-04-17 Thread Jorge O. Castro
On Thu, Apr 16, 2015 at 2:39 PM, Johnny Shieh jsh...@us.ibm.com wrote: Remove of reference to non-existent PPA actually results in a successful install on Power. Should the reference to PPA be removed? Hi Johnny, Randall Ross is investigating the status of PPA builders for POWER but it'll

Re: Existing Charms: Can we get ppc64 PPA's built?

2015-04-17 Thread Johnny Shieh
Hi Jorge, Yes, I agree with your assessment. PPAs are meant to be temporary. In fact, there's one charm that works when references to PPAs are removed! Implied in this request is for the equivalent Trusty Charm to be created, from the original Precise. Thanks!

Re: Vivid init system bug status

2015-04-17 Thread Martin Packman
On 17/04/2015, John Meinel j...@arbash-meinel.com wrote: Do you know what version of Go you're using in your custom builds? The go compiler version was the key, our CI and Oleg are using 1.3.3 on vivid. Frustrating, this issue is in large part to vivid tests not being reliable enough to gate

Vivid init system bug status

2015-04-17 Thread Martin Packman
Update on where we're at with the local provider init system breakage on vivid. Oleg reported the following bug againsts 1.23: https://bugs.launchpad.net/juju-core/+bug/1443440 Short version, juju sometimes fails when trying to operate on the mongo service, during either bootstrap or

Re: Vivid init system bug status

2015-04-17 Thread John Meinel
Iterating over a map is something that is likely to be deterministic in go 1.2 (which AIUI is what our CI systems use), and random in go 1.3+ (because they force random map ordering). I would think we shouldn't do things in iterate over map order in most cases. Do you know what version of Go