=== LibreSponge is now known as AuroraAvenue [09:18] hellooooo [09:18] may I ask a question ? [09:18] I am trying to bootstrap juju on maas on a node but always I get an error that is says "dial tcp 127.0.0.1:80: connection refused" [09:19] my maas server is on localhost [13:51] hi jcastro, can you squeeze these couple of 1-liners into your review? tldr; use `charm-proof`now instead of `charm proof` [13:51] https://code.launchpad.net/~1chb1n/charms/trusty/mongodb/update-charm-proof/+merge/290198 [13:51] https://code.launchpad.net/~1chb1n/charms/trusty/ubuntu/update-charm-proof/+merge/290196 [13:57] beisner: I've not done code reviews before, that time is usually for doc and AU reviews [13:57] though these seem so trivial I'll pair up with someone and learn the process [13:58] jcastro, ah gotcha. & thx :) === cos1 is now known as c0s [14:34] morning o/ [14:39] \o [15:38] hi everyone. if i just want a juju xenaial instance (on gce, if it matters), how do i do that? juju deploy cs:xenial/ubuntu gives me a "charm not found" [15:42] tych0: juju add-machine --series xenial should work for you [15:49] cherylj: sweet, thanks! === skr is now known as Guest57293 [15:52] hmm, although it puts me in the "error" state [15:53] how do i figure out what went wrong? juju debug-log -n50 -l DEBUG doesn't tell me anything [15:59] ah, juju status --format=yaml says something helpful, [15:59] no "xenial" images in us-central1 with arches [amd64] [16:00] tych0: are you just trying to get a xenial machine? I mean, can it be outside of juju? [16:01] (and btw for the above error - maybe set the image-stream to daily?) [16:01] well, i want juju to know about it so i can test some lxd container type code [16:01] cherylj: yeah, that's what i probably need to do, but i don't know how to do that :) [16:01] tych0: juju get-model-config | grep image-stream will tell you if / what it's set to [16:01] tych0: then juju set-model-config image-stream="daily" [16:01] if you need to change it [16:02] cool, thanks [16:02] how do i delete this failed machine? [16:02] remove-machine :) [16:03] cherylj: hmm. is the google provider busted? [16:03] oh, maybe not [16:04] http://paste.ubuntu.com/15540341/ [16:04] Odd_Bloke: ^^ [16:04] does that mean the gce daily streams are broken? [16:21] beisner: ping [16:21] hi jose [16:21] beisner: hey, I see that you did a couple lint fixes on ubuntu and mongodb, are those intended for review by any charmer or by openstack charmers? [16:22] I mean, I could take a look, but wouldn't want to touch them if you expect openstack charmers to review [16:24] jose, yep they're not openstack-specific. i think jcastro was going to have a go with the merge/review, but might be happy to have the first-available reviewer take it instead. whaddaya say, jorge? [16:26] jcastro: if you want me to guide you through the process I'd be happy to [16:32] tych0: that daily should be usable: http://paste.ubuntu.com/15540787/ [16:35] tinwood, for your merge conflict you can just git review again and gerrit will merge and tell you which files to fix :) [16:37] rcj: ok, so this is a juju bug then? [16:40] tych0, ah, I see the problem [16:40] image is in ubuntu-os-cloud-devel project, not ubuntu-os-cloud [16:41] rcj: ok, what does that mean? :) [16:45] tych0, well, to use the gcloud cli as an example, this would launch that image... gcloud compute instances create "gce-rcj-x2" --zone us-central1-c --machine-type g1-small --network "default" --boot-disk-size 10 --boot-disk-type "pd-ssd" --boot-disk-device-name "gce-rcj-x1" --image /ubuntu-os-cloud-devel/daily-ubuntu-1604-xenial-v20160326 [16:46] tych0, the paste you had showed the image in /ubuntu-os-cloud/ which is where we put release images only, not daily. [16:47] rcj: so is it fair to say that, [16:47] ubuntuImageBasePath = "projects/ubuntu-os-cloud/global/images/" [16:47] we need another constant like that that looks like, [16:47] ubuntuDailyImageBasePath = "projects/ubuntu-os-cloud-devel/global/images/" [16:47] ? [16:47] yes [16:47] cool [16:48] ah, fuck. [16:48] looks like juju doesn't have access to the stream at that point maybe [16:50] rcj: thanks. i'll try to send a juju patch for htis [16:50] i'll close that CPC issue too, one sec [17:19] rcj: cherylj: https://github.com/juju/juju/pull/4902 [17:36] kjackal_ kwmonroe cory_fu: I am looking into https://api.jujucharms.com/charmstore/v5/trusty/apache-spark-6/archive/config.yaml and just noticed the "yarn-client" execution mode for Spark [17:36] any reasons yarn-standalone wasn't used? [17:37] this is the _driver_ execution mode [17:39] in juju 2, is there still an environment variable that can be set to control the controller/model for juju to connect to? [17:41] c0s: i think the 2 yarn options are yarn-cluster and yarn-client, and we went with client because we wanted to use yarn resources as workers, but keep the spark master separate from yarn. had we used yarn-cluster, i believe that would use a yarn resource for the spark master as well. [17:42] c0s: unless yarn-standalone is new for spark > 1.5, in which case, i'm not sure what that does. [17:44] kwmonroe: the diff between yarn-client and yarn-standalone is where the _driver_ be running, really. [17:45] in the case of yarn-client, it will be executed on the client host, which might be totally outside of the cluster. hence adding more network traffic, etc. [17:45] kwmonroe: https://spark.apache.org/docs/0.8.1/running-on-yarn.html mentions yarn-standalone so it's not new. But https://spark.apache.org/docs/latest/running-on-yarn.html doesn't mention it. Is it perhaps an older spelling? [17:45] in yarn-standalone, the dirver will be co-located on a thread in Application Manager [17:46] cory_fu: indeed, it isn't a new thing [17:47] I am not sure why Spark docs don't have it any more. In all honesty, I am not sure about many thing that Spark project does nowadays [17:47] c0s: Looks like the spelling of the options might have changed to --master yarn --deploy-mode {cluster,client,standalone}? [17:48] c0s: :) cory_fu, i think you're right. looks like our latest spark charm isn't up with the times: https://github.com/juju-solutions/layer-apache-spark/blob/master/lib/charms/layer/apache_spark.py#L107 [17:48] Hrm, no, I think --deploy-mode only accepts {cluster,client} [17:48] oh, that's interesting [17:48] iow, i don't think --master yarn-* is relevant in my read of the latest docs. it needs to be --master yarn and --deploy-mode cluster|client [17:49] at any rate - if we are thinking of moving away from yarn deployment model, this whole discussion might be mott [17:49] http://spark.apache.org/docs/latest/running-on-yarn.html [17:49] kwmonroe: perhaps --master yarn --deploy-mode cluster replaces the yarn-standalone thing. I could check the source code to make sure, if it is of any interest to anyone ;) [17:50] Thank you c0s please keep me in the loop [17:50] it is indeed of interest to me c0s -- i'd like to get our --master fixed, because what we have now shouldn't work (unless i'm missing deprecation warnings) [17:51] indeed so .... https://github.com/apache/spark/pull/95 [17:52] yarn-standalone has been renamed [17:52] please accept my apologies for confusing the hell out of everybody [17:52] lol [17:52] * c0s ducks [17:53] * magicaltrout is permenantly in a state of confusion anywa [17:53] kjackal_: however, it still might worth changing yarn-client to yarn-cluster in the scope of this discussion ;) [17:53] i think we're still not correct c0s. we pass execution mode config setting as the --master $var, but in the latest docs form kjackal_, it seems any yarn mode needs --master yarn followed by another setting controlling what type of yarn mode we want. [17:53] permanently [17:53] I think you're right kwmonroe [17:54] magicaltrout: thanks, I feel better for at least not adding to your burden ;) [17:54] the "yarn-client" resolves to master=yarn and deploy=client [17:54] yeah, that's what I am saying [17:54] let me try to find the doc I read about this [17:55] and deploy, I believe, needs to be cluster [17:55] but you are right it is the prefered way [17:56] I think --deploy-mode client is good for spark-shell and some such nonsenses [17:56] http://spark.apache.org/docs/latest/submitting-applications.html [17:57] yarn-client Equivalent to yarn with --deploy-mode client, which is preferred to `yarn-client` [17:57] yarn-cluster Equivalent to yarn with --deploy-mode cluster, which is preferred to `yarn-cluster` [17:58] That's an awfully non-committal deprecation note [17:59] yeah, also this is what's important really [17:59] --deploy-mode: Whether to deploy your driver on the worker nodes (cluster) or locally as an external client (client) (default: client) † [17:59] along with the foot-note [17:59] so c0s, you're saying that you want this in cluster mode so both master (driver) and workers are in the yarn cluster. i'm ok with that, but originally, we thought it might be best for the driver to be outside of yarn. i'm not sure why. probably flipped a coin. [18:00] here it is [18:00] † A common deployment strategy is to submit your application from a gateway machine that is physically co-located with your worker machines (e.g. Master node in a standalone EC2 cluster). In this setup, client mode is appropriate. In client mode, the driver is launched directly within the spark-submit process which acts as a client to the cluster. The input and output of the application is attached to the console. Thus, this mode is especially suitable for applica [18:01] as I said earlier: client mode will involve more network traffic and will require an alive connection between the client machine and the cluster to avoid loosing some output, etc. [18:02] however, it seems that in case where the client machine is co-located with the cluster - the deploy mode doesn't make much of a difference [18:02] Doesn't this only affect jobs that are run by the charm, in which case they *would* be co-located within the cluster? [18:03] And they mention it being "especially suitable for applications that involve the REPL (e.g. Spark shell)." That seems like it would include the Zeppelin notebooks, no? [18:03] what if the configuration from such charmed cluster is copied to an external client and used there then? [18:04] if you, however, frame the question like cory_fu does - then it makes sense to use client one, I guess [18:05] again, apologies for crying wolf [18:05] c0s: Hrm. I don't think we should be supporting copying the config like that. For one thing, it will reference cloud-internal IPs for everything, which wouldn't work outside anyway. Instead, we should probably have an action or something that gives you the config you need to use the cluster from an external client [18:09] fair enough, cory_fu [18:27] hey cory_fu, i'm working with Guest57293 (that's her given name). what would cause something like this: [18:27] update-status File "/usr/local/lib/python3.4/dist-packages/charms/reactive/relations.py", line 255, in conversation 2016-03-28 17:42:32 INFO update-status raise ValueError('Unable to determine default scope: no current hook or global scope') 2016-03-28 17:42:32 INFO update-status ValueError: Unable to determine default scope: no current hook or global scope [18:27] trying to access a conversation from something like config-changed? [18:30] That means your interface layer is not scope=GLOBAL and is using a method that requires a default conversation, like self.conversation(), self.get_remote(), etc. IOW, you're asking it to tell you something about "this conversation" without it having enough information to know what conversation you're talking about [18:30] The conversation metaphor was intended to simplify things but I think ended up making things more confusing. :( [18:32] I'd have to see the specific code in question, but self.get_remote(), self.set_remote(), or self.conversation() (singular) are the most common cause, and it generally means you need to instead have a "for conv in self.conversations(): conv.get_remote()" or similar loop. [18:32] Let me find an example [18:32] a confusing metaphor in Juju?! no way! [18:32] * magicaltrout is truely shocked [18:33] -e [18:36] I think https://github.com/juju-solutions/interface-mapred/blob/master/provides.py is a fair example. You'll notice that inside @hook decorated methods, it uses self.conversation(). That's because it's handling a specific relation hook, and so it knows what remote unit its talking to. But in the other methods, it has to be aware that it could be talking about several different remote units at once, so it loops over the list of conversations and [18:36] handles each one separately [18:36] kwmonroe, Guest57293: If you can point me to the code that's causing the error, I can give more specific advice [18:42] Hi Cory, you can find the code here : provides.py : http://paste.ubuntu.com/15541870/ [18:42] requires.py : http://paste.ubuntu.com/15541889/ [18:46] Guest57293: Ok, so in provides.py, the scope.UNIT seems right because you might be providing NFS storage to several different clients. However, that means that host_name has to send the hostname_storage to every client, and nfsclient_ip might return several addresses, one for each client. [18:47] Guest57293: So, both of those need to use the "for conv in self.conversations():" loop, and nfsclient_ip I guess needs to return a list instead of one value [18:49] ok. [18:51] I had one more doubt, one I am having a relation between NFS Storage Server and n number of nfs clients. For the first unit of nfs client, all states and values are set, which is fine. [18:52] But for the second unit , the previous state values are retained, so it directly enters the @when condition. How can I reset my state values and variables ? [18:53] for nfs client units [19:02] Guest57293: So, there are two approaches to that for the interface layer. My preferred approach is for the interface layer to set the states according to what is connected / available, and then have the charm use things like "data_changed" to figure out if something changed and needs to be responded to [19:03] Guest57293: The other approach is more what you're talking about, which is to set the state when something happens and then remove the states once its been processed. In that case, you'd need to add an "acknowledge_client" method on the interface which would remove the states. [19:04] Guest57293: The downside of that approach is that you then can no longer ask the interface layer "what are all the connected nodes", for instance. [19:04] But maybe you don't need that and the other approach might simplify your charm. [19:04] marcoceppi: i have a charm in the review queue with ancient tests so it flags red [19:05] a) does that matter? b) can I do anything about it or do I just wait? [19:05] magicaltrout: do you want another test run? [19:05] be nice [19:05] they run in bundletester [19:05] thanks cory [19:05] but I have no clue how that translates to the real thing [19:05] magicaltrout: which charm? [19:05] magicaltrout: bundletester is what we run in the test env [19:06] yeah, but a lxc juju 1.2 instance != the canonical test env ;) saikuanalytics-enterprise [19:06] magicaltrout: heh, which charm? [19:07] https://jujucharms.com/u/spicule/saikuanalytics-enterprise/trusty/6 [19:07] magicaltrout: I just rekicked the test [19:08] they old [19:08] ta [19:08] yeah, i assumed that dumping your charm back into the review queue would re-test the charm [19:08] but that assumption was invalid :) [19:14] magicaltrout: it will in new review queue! but not in current one [19:14] supposedly this new review queue will also write my charm for me.... [20:11] make lint keeps catching me ridin dirty haha [20:18] is there a charm config way I missed to disable SSLv3 /RC4 in juju-gui or openstack-dashboard (also asked if charms should just do that by default in -dev) [20:23] What is the best way to find out the exact steps taken to upgrade the openstack neutron-dhcp-agent? I'm not sure who the charmer is to ask. [20:26] I'm having layer-docker charm failing to install properly during install hook. Is debug-hooks the proper way to debug this ? [20:50] deanman: you could do debug-hooks on the failed unit, then "juju resolved --retry " in another terminal to manuall run the install hook. or you could "juju debug-log --include -n 100" to see the last 100 lines of unit log. [20:58] gQuigs: https://jujucharms.com/juju-gui/#charm-config-secure that seems to be what you want, though it may not work in the gui charm [21:02] kwmonroe: Thanks, i found the problem. [21:03] Is deploying a layer-docker inside an lxc a bad practice? I'm trying to learn how to deploy my custom docker images but it seems that they are failing when deploying on a wily lxc container using the layer-docker charm template/ [21:04] deanman: lazyPower or mbruzek know for sure, but i didn't think docker inside lxc containers worked. [21:05] (sorry, i don't know why, but think i've heard that recently. i should probably be quiet) [21:05] deanman - it works only if (that i myself have verified, others may work but i havent vetted them): you're on xenial installing the docker.io package inside a lxd container [21:05] and yeah, docker inside lxd totally works if you do the above :) [21:05] kwmonroe: How would you propose to work a local dev machine then with docker ? [21:06] the default fs type needs to be changed to overlay as well, vs the default of aufs. I believe there's still some tweaking that needs to happen to the docker profile. [21:06] I have local bootstrap VM deploying into lxc [21:06] ah also, you have to fire up that lxd image w/ the docker profile to disable the appropriate cgroups. [21:06] deanman - i haven't had any luck in that method :( [21:07] deanman - what we've done i the past, is use juju 1.25 w/ local: kvm [21:07] Is anyone else having issues with filing bugs on launchpad? [21:07] deanman: what Ubuntu version is your VM? [21:08] -> https://www.dropbox.com/s/vl3hac0ns9kvcwg/Screen%20Shot%202016-03-28%20at%202.04.56%20PM.png?dl=0 [21:08] lazyPower: i think i saw somewhere juju nagging about my cpu not supporting KVM or something (running MacOS and then vagrant to host my juju env) [21:08] ah yeah, hypervisor in a hypervisor [21:09] bdx: there is a #launchpad channel on IRC [21:09] even if it did work, the performance would be abysmal [21:09] mbruzek: wily64 [21:09] mbruzek: sweet, thx [21:09] deanman: I have only got it two work with xenial [21:10] mbruzek: Would it be stable enough to do my juju learning and invite colleagues to participate ? [21:10] deanman - if you dont have a local configuration to work with, you can registher for the charm developer program and we'll give you some AWS credits to dev with [21:10] deanman or is lxc a requirement? [21:12] lazyPower: by local configuration you mean a non-virtualised ubuntu environment right ? [21:13] mbruzek: My only requirement is how to port a product we have in docker into juju and share the magic with my colleagues :-) [21:13] deanman - Right. If you have spare hardware there's a few options available to you as well, such as setting up a single server to run juju w/ kvm to work on docker workloads until we've gotten a stable docker-running-in-lxd story. [21:13] deanman - but to start, here's the form for the charm developer program: https://developer.juju.solutions/ [21:15] deanman: OK. Yeah LXD/LXC can run together, but that is really coming together for 16.04 (yet unreleased) and the experience is not great. You can sign up for the developer program to use amazon [21:15] where you get a full vm and it will run docker, lxc whatever [21:16] I have an early copy of 16.04 (xenial) on my laptop and have been able to run Docker inside LXC, but not through Juju yet. [21:16] I was able to run this manually [21:17] I use the local kvm provider with Juju 1.25 with much success. [21:17] so for docker workloads you either deploy on a bare machine e.g. --to 1 or if you want to pack more using --to kvm:x ? [21:18] marcoceppi that just makes it not in plain text, I want it to use modern SSL.. thanks though [21:18] deanman: correct [21:19] deanman: actually give me "juju version" [21:19] only we dont use --to kvm:x, the local:kvm provider routes all "machine" requests through the kvm installation, and spins up vm's that act as bare metal. [21:19] https://jujucharms.com/docs/stable/config-KVM [21:19] mbruzek: 1.25.3-wily-amd64 [21:20] This works with juju 1.25, use ^ document to set up the kvm provider [21:20] Then you can deploy all the docker workloads you want [21:21] That's for the remote juju deployment/workflow. For local dev i'll have to wait for xenial ? [21:22] or at least in my case running mac [21:22] deanman - yep, and possibly a bit longer [21:22] we're still exploring and piloting running docker based workloads in lxd [21:23] deanman: That is our local provider setup. I don't own a mac so I can't tell you if kvm will work with your vm solution [21:24] mbruzek: on a linux based pc for local dev. KVM is fast enough ? [21:24] deanman: Are you doing vagrant to get wily64 ? [21:24] mbruzek: Yeap! Using vagrant to ease the whole process and to introduce it to a wide audience, mostly windows machines and less linux. [21:25] deanman: KVM is awesome fast. But if you are using a mac, you are doing virtualization, and then kvm (another virtualization) it wouldn't be what I would choose [21:25] aisrael: lazyPower: can vagrant vms do KVM inside them? I have heard parallels can. [21:26] but I don't know vagrant. [21:26] mbruzek: vagrant -> virtualbox [21:26] deanman: Then that should work, the setup for the local provider is pretty simple/easy. [21:26] you will know for sure soon enough. [21:27] deanman: If that does not work sign up for the developer program that lazyPower referenced and you can get some free amazon creds. [21:28] deanman: my w540 laptop has linux on it, have ubuntu installed, and then configure the local kvm provider and it is crazy fast. [21:28] through juju [21:29] hi, is it possible to change how Juju generates the hostnames of LXC containers (i.e. juju-machine-1-lxc-10) to avoid having duplicate names if managing mulitple juju environments with the DNS domain? [21:32] mattrae: you would have to contact a core developer on that one. [21:33] mattrae: how are you getting a duplicate name? [21:36] mbruzek: thanks mbruzek. i need to do more testing, it happens reportedly by having multiple environments on the same maas server, both environments will use juju-machine-1-lxc-1 for their first container on machine 1 [21:36] mattrae: I see now. This is not something I have ever tried, and don't know how to do. [21:37] mattrae: I once ran 2 lxc providers on the same machine and was able to change the ports of juju so they would not collide, but not the names of the instances [21:37] mbruzek: following the kvm guide your shared and it complains about "failed verification of local provider prerequisites: kvm ok is not installed" [21:38] deanman: `sudo apt-get install juju-local` [21:38] mbruzek: cool thanks for the suggestions :) [21:38] deanman: you may also need to install kvm, let me check the packages that I have installed [21:39] mbruzek: i think it's not supported on macos [21:39] deanman install it on your wiley64 [21:39] deanman: if the juju-local does not install qemu-kvm you should install that too [21:40] but I think it should [21:40] mrjazzcat: "KVM acceleration can NOT be used" when running kvm-ok inside the vm [21:40] mbruzek: "KVM acceleration can NOT be used" when running kvm-ok inside the vm [21:41] deanman: that means kvm will run slow, but I suspect it will still run [21:41] deanman: Some virtualization technologies do not run nested virtualization. On Ubuntu I am able to run KVM within KVM [21:42] i think it didn't like it when defined inside environments.yaml (container: kvm) [21:42] deanman: what was the error? [21:43] deanman: juju would give you an error when you tried to bootstrap, if you got an environments.yaml error I suspect a yaml format error [21:43] mbruzek: "ERROR there was an issue examining the environment: failed verification of local provider prerequisites: kvm-ok is not installed. Please install the cpu-checker package." [21:44] apt-get install cpu-checker [21:44] mbruzek: cpu-checker is installed ;-) [21:44] minor bug [21:44] OK [21:44] well then sign up for the developer program and use aws [21:45] I apologize this didn't work, I am not mac savvy [21:45] ok it did go forward and was able to deploy juju-gui on a new machine (guessing KVM) [21:45] virsh list --all [21:47] that will show the kvm machines on the ssystem. [21:47] mbruzek: empty but after bootstrapping a local provider inside a vm and issuing juju deploy juju-gut i saw a new machine being added and the charm actually deploying [21:48] had to use sudo though for virsh, that's the expected way right? [21:48] deanman: yes but you can add the user to the virsh group and use virsh commands [21:49] would sudo report something different? no entries on virsh [21:49] deanman: no sudo would give you everything [21:50] mbruzek: ok so I'm not running that charm inside kvm, where am i running it then ? :-0 [21:51] deanman: did you specify kvm when you bootstrapped? I suspect you might be in lxc [21:52] mbruzek: nope, no kvm or lxc reference whatsoever while bootstrapping or in environments.yaml [21:53] deanman: http://pastebin.ubuntu.com/15544632/ [21:53] That is what my virsh list --all looks like [21:54] http://pastebin.ubuntu.com/15544671/ [21:54] local in this case is lxc [21:55] sudo lxc image list [21:55] and this is my environments http://pastebin.ubuntu.com/15544688/ [21:55] where was your kvm configuration [21:55] ? [21:56] it was in that environments.yam file but removed when it complained during bootstrap [21:56] deanman: That is LXC then: https://jujucharms.com/docs/stable/config-LXC [21:57] You will not be able to use docker within those LXC containers. [21:57] mbruzek: yeah it seems so... [21:57] The gui will deploy and other charms should work fine, just Docker does not play nice with the wily code [21:58] I have to get going soon, I recommend the developer program and use aws [21:59] deanman: https://developer.juju.solutions/ [22:00] and ping marcoceppi once you fill that out, then you can use a real cloud [22:03] mbruzek: Thank you [22:09] deanman: you are welcome good luck. [22:31] Is there a way to specify the series in the lxc containers that are created? For example my maas default deploy is xenial, and I want all my servers to be xenial. If I need to deploy a charm that doesn't support xenial, can I have juju request a new xenial server, and deploy the charm in a trusty container? [22:34] LiftedKilt: you can create a xenial machine then tell juju to put a trusty lxc on int [22:34] juju add-machine --series xenial [22:34] that gives you, say machine 8 [22:35] juju deploy trusty/juju-gui --to lxc:8 [22:35] marcoceppi: awesome - that's exactly what I was hoping for [22:36] marcoceppi: is there a way to deploy it without first adding the machine or specifying which machine I want it on? [22:38] LiftedKilt: not entirely [22:39] LiftedKilt: are you looking to do this in a bundle? [22:39] marcoceppi: potentially, but not exclusively [22:40] marcoceppi: was hoping for a way to be able to "juju deploy charm --to lxc:" and let it pick a machine or create one as it sees fit [22:43] marcoceppi: essentially I want to be able to deploy charms without worrying about series, and have juju create the appropriate containers to faciliate those charms [22:44] marcoceppi: with the intention of deploying every charm to a separate container [23:14] LiftedKilt: that's a great idea, but not one that exists today [23:27] marcoceppi: haha well that's a bummer [23:27] LiftedKilt: it's not a bad idea to reply to the 2.1 roadmap email about it [23:27] marcoceppi: I think I can make do without, but it would definitely make things easier [23:27] --to lxc: would be nice