[00:19] hey guys, any known way to run 1.18 on saucy? === thumper-afk is now known as thumper === CyberJacob is now known as CyberJacob|Away [02:02] is it legit to call `juju set` from within a charm hook? [02:03] for example, if i wanted to change on a config value on the "other" service when a relation is joined [02:04] change a config value [02:14] tvansteenburgh: you can't actually do that. Charms can't set configruation for itself or other services [02:14] tvansteenburgh: if you need to commuicate from one charm to another in a deployed environment you should use relation-set and relation-get [02:14] jose: 1.18 isn't released yet [02:14] oh [02:15] marcoceppi: mind a quick PM? [02:15] marcoceppi: thanks [02:15] 1.17.5 is latest devel, 1.16.6 is latest stable [02:15] jose: sure [03:24] marcoceppi: hey, do you know approximately how much time does the mysql charm take to set the variables (database, user, password...)? [03:34] jose: not very long, shouldn't take more than a few seconds. If you're thinking about putting a sleep in your script to wait for variables then you're doing something wrong [03:35] marcoceppi: that's just what I did [03:35] don't [03:35] I did `while [ -z "$DB ]; do sleep 10; done` [03:35] you won't get them, because relation-get variables are locked at the start of the run of the hook [03:35] hmm, how should I set it, then? [03:35] they're only updated when a hook is done executing [03:36] use relation-changed hook [03:36] instead of a relation-joined? [03:36] right, relation-joined is basically anything you need to do pre-relation [03:36] it's like an initial handshake [03:36] cool! [03:36] if you're just waiting for data [03:36] (yeah, you read my mind) [03:36] put your code in relation-changed, and add an idempotency guard [03:37] a... what? [03:37] like, db=`relationg-get database`; if [ -z "$db" ]; then exit 0; fi [03:37] oh, gotcha [03:37] that way, if the relation settings haven't been set the hook will just exit [03:37] and when relation data does change, the hook will fire again [03:38] btw, let me say this as I *just* did my first juju (unsuccessful) deploy on EC2: it's AMAZING. [03:39] :D [03:40] :} [03:41] if this does good, then you should be have another charm on the queue === vladk|offline is now known as vladk [03:57] marcoceppi: still around? I'm kinda stuck with a hook === timrc is now known as timrc-afk === vladk is now known as vladk|offline === CyberJacob|Away is now known as CyberJacob === vladk|offline is now known as vladk === CyberJacob is now known as CyberJacob|Away === Ursinha is now known as Ursinha-afk === Ursinha-afk is now known as Ursinha [11:02] marcoceppi, is amulet still pip installing cherrypy? [11:03] jamespage: bleh, yes [11:04] jamespage: next patch will address that [11:04] marcoceppi, because its not avaliable on 12.04 right? [11:04] right [11:04] well, py3 cherrypy isn't at least [11:04] marcoceppi, please - I really like the work mbrusek has done on rabbitmq-server for amulet tests [11:05] but I can't run that on our QA cloud with pip installs.... [11:05] right, jamespage i have a 1.4.1 patch release planned for friday, I'll make the change then [11:05] marcoceppi, thanks - are you dropping the requirement for it? [11:06] jacekn: going to use a web framework that's in archive [11:06] jamespage: ^^ [11:06] marcoceppi, +1 [11:09] marcoceppi, how does amulet choose which series to test on btw? [11:10] jamespage: the test set it (considering the fact that charms are currently tied to series) that might change where series is set by the test runner though [11:10] no one has had a use case for it yet [11:11] jamespage: when you create a new amulet.Deployment you can set series as an option, defaulting to precise [11:11] marcoceppi, I do - cause althought the branch for the charm is 'precise' [11:11] it actually works on 12.04->14.04 [11:11] marcoceppi, OK - cool [11:12] marcoceppi, I can see how I can make that work - thanks! [11:12] jamespage: can you file a bug for amulet about muti-series testing. I'll target it to 1.5 [11:13] we'll probably need a way to override via env variable, mobile atm so cant file it myself [11:25] vila: just checking in with you that things seem happier on HP for you today [11:32] jose, ping.. resolved? [11:32] jam: thanks for checking ! Things stabilized enough yesterday for me to be able to deploy and use the deployment. [11:32] great [11:33] jam: being able to use 1.17.5 without uploading it was key. I'm still talking with hp about the upload issue I face [11:33] marcoceppi, why does amulet need a web app? re cherrypy [11:33] marcoceppi, oh.. ic.. xmlrpc server is builtin and roughly the same [12:05] hazmat: hey, not exactly... if you have a min I have the links around [12:19] jono, sure [12:19] er. jose sure [12:20] hazmat: so, I deploy https://code.launchpad.net/~jose/charms/precise/phpbb/trunk and install, config-changed and start run good, but when a DB starts a relation with it I get an error when running db-relation-changed, says something about unbound variable on line 18 [12:23] if anyone has time can i get a +1 on https://code.launchpad.net/~lazypower/charms/precise/nrpe/fix-lp-1287393/+merge/209137 ? I need to land this as a dependency on some other stuff in the queue [12:24] oh, morning, lazyPower! [12:24] jose: if a variable is reported as unbound, you're referencing it before it's set [12:25] jose. line 18 you've got an extra > at the end afaics [12:25] and good morning :) o/ [12:25] hmm, let's change that [12:25] jose, re http://bazaar.launchpad.net/~jose/charms/precise/phpbb/trunk/view/head:/hooks/db-relation-changed#L18 [12:26] hazmat: looking at it now! I'm just wondering, does relation-get host with the mysql interface provides the host address? or what's the parameter set? [12:28] jose host does work for mysql interface [12:28] the mysql server side sets database, username, password, host atomically [12:29] then I wonder what's the variable not set? [12:30] * jose deploys and does debug-hook [12:37] marcoceppi, hey - when I wrote the percona-cluster charm I decided to default all databases to UTF8 [12:37] marcoceppi, any reason why we should not do the same in mysql? [12:38] marcoceppi, I was so busy testing pxc with openstack for icehouse b3 I missed https://bugs.launchpad.net/glance/+bug/1279000 [12:38] <_mup_> Bug #1279000: db migrate script to set charset=utf8 for all tables === timrc-afk is now known as timrc [12:47] jamespage: I don't see why not [13:05] guys, I'm having a problem when SSH'ing into a machine... looks like juju is getting the private IP instead of the public IP so it never goes through [13:05] (using EC2) [13:09] thats strange, i've not seen that behavior [13:09] jose: how are you attempting to access the unit? [13:09] lazyPower: juju ssh phpbb/0 [13:09] and juju status is the one giving me that info (I'm checking my console atm) [13:10] which release of juju are you running? [13:10] .16 [13:10] hmm i dont have a .16 release to check on [13:10] I'm going to try adding an entry to my hosts file [13:10] that may solve it in the meanwhile [13:11] jose: if you can reproduce it, make sure you file a bug on that. [13:11] will do - it's not the first time I've seen this [13:22] mgz: around? I think bug 1248283 is critical for MAAS+juju in Trusty, but it isn't milestoned to make Trusty currently. [13:22] <_mup_> Bug #1248283: juju userdata should not restart networking [13:23] fwereade, ^^ [13:29] rbasak: looking [13:31] rbasak: I'll set back to 1.18 [13:31] jamespage, Thanks for the review on the amulet tests, working on addressing the issues now. [13:31] mgz: thanks! [13:32] mbruzek, did you see what I was poking at? we should be able to confirm the correct data is set on the relations [13:32] mbruzek, excitingly I have a full redux in flight for rabbitmq - want to land your tests first tho! [13:32] Honestly did not, but running them now to see what ceph is passing on the relation [13:33] I think our issue with that bug is we're actually not sure what to change on the juju-core side... or we have already poked it and our change didn't work, we tried moving when the bridge-utils package gets installed for... basically that reason? [13:33] but the last comment looks hopeful [13:34] jamespage, What key should I be looking for in the ceph relation? Is it actually called "key"? [13:34] mbruzek, look for 'key' and 'auth' [13:35] jamespage, Running the tests now to get that. [13:35] mbruzek, where does stdout go? I could not see the print statement anywhere [13:37] It depends upon how you run them. If you are running juju test 20_relations_test.py you need the -v flag [13:37] ah - right I see [13:37] I run them differently so the systems are still up after the test is done. [13:38] juju test both bootstraps and destroys environment [13:42] jamespage, http://pastebin.ubuntu.com/7119833/ [13:43] mbruzek, amqp stuff looks good - however the ceph cluster isnot bootstrapped so it won't send the keys [13:44] Ahh I see now, thank you for pointing that out. [13:44] dosaboy: are you around? [13:51] lazyPower: otp but yes go ahead [13:52] dosaboy: i noticed the MP we have reviewed is getting quite a bit of back and forth. touching base with you so we can find a middle fo the road resolution without the delay. [13:55] howdy. Is there a way for a charm to respond when a floating ip is added? [13:55] like, does it automatically fire any realtion-changed hooks with a public-address? [13:55] bloodearnest: floating ip on which provider? elasticip from AWS? [13:55] bloodearnest, How would the charm know when that changes? [13:55] mbruzek: good point! [13:56] mbruzek: indeed, I didn't think so (though that would be ideal from the charms pov, no?) [13:56] lazyPower: openstack [13:56] If something changes on the relation, a *-relation-changed gets fired yes, but what would trigger that [13:56] lazyPower: but, interested in the general [13:56] bloodearnest: since juju doesn't spend cycles monitoring the ip table of the machine, i dont think thats in the cards [13:57] bloodearnest, I supposed one could write a daemon that checks the ip, and if somthing changes trigger a relation-changed event or something of that nature [13:57] mbruzek: right, and that would now include a public-address automatically? Or would you need to provide it explicitly? [13:57] mbruzek: ack, was thinking along those lines [13:57] or set the ip manually as a config (ugh) [13:57] bloodearnest, I would have to check, but I believe that the private address is often part of the relation-changed information. [13:58] ^ [13:58] So if you could somehow detect that the ip changed you could fire the relation changed juju event and it would get sent to the related charms. [13:59] bloodearnest: you could write an out of band check [13:59] but there is no mechanism in juju that i know of [14:00] marcoceppi: yeah, I thought so. Just wanted to check if I was missing something. [14:00] maybe when juju grows a network abstraction, perhaps [14:01] bloodearnest: its a compellimg case for a unit-changed hook [14:01] marcoceppi: WANT [14:01] that could do volume changes too. nice. [14:02] bloodearnest: you shoild file a bug about ot on core. afaik juju has no way of tracking unit changes, inclidimg address, but given your use case it would make sense [14:02] * marcoceppi is typing from a phone :\\ [14:03] lazyPower: sorry lots of calls :( === marcoceppi is now known as marcoceppi-mobil [14:03] lazyPower: so can you remind me which MP this is? [14:03] dosaboy: perfectly ok. ping me when you're off the phone? [14:03] mysql per chance? [14:03] indeed [14:03] marcoceppi-mobil: ack, will do [14:04] is there a hack to trigger a hook context from a cron job in 1.16 (i.e. what juju-run does in 1.17)? [14:05] bloodearnest: not without a lot of work [14:08] marcoceppi-mobil: right. 1.18 is due like RealSoonNow™, so maybe I can convince IS to use that in prod :) [14:08] bloodearnest: that's whati would do [14:14] HI, is anyone familiar with preseed settings for MaaS? I want to partition a disk while commissioning [14:19] marcoceppi-mobil: https://bugs.launchpad.net/juju-core/+bug/1294673 [14:19] <_mup_> Bug #1294673: Support hook for handling unit changes (like public IP address) === marcoceppi-mobil is now known as marcoceppi === marcoceppi is now known as marco-traveling [15:19] juju ssh only goes to service, not machine? So if I kill a service (but the machine is still up), no juju way to ssh in? [15:23] Fishy_: just give it the machine # [15:24] eg: to ssh to machine 1 - juju ssh 1 [15:25] any idea when the OpenStack charms are going to appear for Trusty? [15:26] bbcmicrocomputer: ask jamespage [15:27] afaik they already work on trusty, just need to promulgate the as such [15:27] marco-traveling: k, cool [15:27] juju ssh 1 Permission denied (publickey,password). ERROR exit status 255 [15:28] (whereas juju ssh wordpress is fine) [15:28] Fishy_: which provider? [15:28] local [15:29] local you can only use the units [15:29] Fishy_: is this local provider? [15:29] Fishy_: bug 1233497 [15:29] blah ;) [15:31] that bug is about a password protected ssh key, mine is wide open [15:31] maybe same root cause though [15:32] yeah, should be another bug too somewhere === cmagina-away is now known as cmagina [15:42] marco-traveling: so, my bug is duplicate of https://bugs.launchpad.net/juju-core/+bug/1215579 [15:42] <_mup_> Bug #1215579: Address changes should be propagated to relations [15:48] bbcmicrocomputer, probably at or around the time trusty releases [15:48] bbcmicrocomputer, if you want to test the branchs are all under ~openstack-charmers [15:49] bbcmicrocomputer, /icehouse suffix [15:50] jamespage: k, thanks [15:51] bbcmicrocomputer, oh and just to be clear - the precise charms will be the trusty charms [15:51] so don't look for 'trusty' in the branch path [15:51] jamespage: k :) [16:23] whats it mean if I see 3 charms with the same name in the charm store, but none under reccomended.. and none work from a juju deploy command line? [16:23] some kind of beta charm that hasn't been approved yet? [16:24] i.e. Location: cs:~canonical-ci/precise/gerrit-59 [16:24] deploy did finally work, ignore me [16:24] need full path i guess [16:27] Fishy_: so charms can be customized for various users [16:27] Fishy_: so you'll often see copies of a charm that a user is working on or with [16:28] Fishy_: in this case, you found the charm used by ~canonical-ci [16:28] the source link didn't work for these though.. is there a normal procoedure to take one of these and grab the source? [16:28] so I can tweak for my own needs [16:29] https://bazaar.launchpad.net/~canonical-ci/charms/precise/gerrit/trunk/files [16:29] no worko [16:29] Fishy_: there's a thing in charm tools called 'charm get' [16:29] where you get give it a cs: url and get the downloaded charm [16:29] nice [16:30] Fishy_: oh hmm, that's not public. I wonder why that got pulled in [16:34] the entire charm isnt supposed to be or just the source url [16:34] Fishy_: I'm looking into it. [16:34] Fishy_: you've hit some edge case and I'll need to look into how it got this way [16:34] it's not typical [16:34] apparently I am good at edge cases with juju [16:35] stick around, we like finding those. :) [16:35] if I move my entie infastructure over to juju land, I will be here a few months... [16:36] we like the sounds of that Fishy_ [16:36] next up is try to write my own charm for an internal app [16:36] if it's not too bad, then I just need to do it 50 more times [16:37] Fishy_: we also have a testing tool for validating your charms are doing what you expect them to [16:37] Amulet to the rescue! [16:37] What testing tool? [16:37] Fishy_: https://juju.ubuntu.com/docs/tools-amulet.html [16:38] if you need test examples, mbruzek wrote an excellent amulet test in the memcached charm [16:38] he's also got some solid work in rabbit-mq [16:38] nice [16:39] is it insane to try and use "Subordinate services" as kind of mix in behavior? [16:39] like say I have a home-rolled backup service I write... then have 10 charms, all using my backup service [16:40] not at all. I wrote a subordinate for papertrail-app (a PAAS log aggregator service) [16:40] because I didn't want to pay/manage my own logging infrastructure [16:41] I've used it in 3 production deployments thus far, managing a total of 52 hosts. [16:41] Fishy_: that's the idea, there is a backup subordinate already around somewhere, but not in the store yet I think [16:41] i throw those metrics in there because it makes me feel special. [16:41] haha [16:43] just need to see how it works mixing in to stuff people already wrote.. I see how it would be easy for my own charms to all put data in a common place so a backup subordinate could grab it.. harder to see how my charm would work on say a wordpress charm vs a mysql charm vs a postgresql charm [16:43] without devolving into a if postgress: <> else if mysql <> [16:45] Fishy_: the backup subordinate has a relation that the primary charm can implement to tell it what to back up [16:45] ok so then i would need to write my own version of postgresql that supports fishy-backup [16:45] which seems reasonable [16:46] except how to deal with upstream postgresql charm changes [16:46] part of what is nice about using a precanned charm is to get the upstream fixes [16:51] Fishy_: heh, I would like to use a charm called fishy-backup :) [16:52] Fishy_: fork and pull changes periodically works pretty well, especially in your case where you would probably not alter the upstream functionality, but add new stuff === timrc is now known as timrc-afk [16:54] ya that's true [16:54] would at least be an easy merge [16:58] yeah we catch most of the schenanigans during peer review [16:58] Fishy_: we do that for all charms, and deploy from a local repo. We don't deploy from the charmstore at all === timrc-afk is now known as timrc [17:01] and juju download is the start of it? or do you go and find the actual svn/git repo [17:01] assume juju download is just a snapshot and not a repo? === vladk is now known as vladk|away [17:02] Fishy_: in what context do you mean? charm get? that fetches teh current snapshot from wherever the parent branch of the charm is located. [17:04] i dont think charm get exists [17:04] in stable juju [17:07] Fishy_: it's in charm-tools package. You have to install that on its own [17:10] genius [17:11] bbcmicrocomputer: i still think unit-changed would be a sweet hook === DrabMakyo is now known as ShinyMakyo [17:19] wow people still use bzr === timrc is now known as timrc-afk [17:24] marco-traveling: what happened to charm-helper-sh? === vladk|away is now known as vladk === vladk is now known as vladk|offline === cmagina is now known as cmagina-away === cmagina-away is now known as cmagina === timrc-afk is now known as timrc === cmagina is now known as cmagina-away === cmagina-away is now known as cmagina [17:55] bbcmicrocomputer: it was depricated [17:56] bbcmicrocomputer: only available on precise and in a PPA, but probably won't be going to trusty [17:57] marco-traveling: ah ok, thanks [17:57] bbcmicrocomputer: if you need the ppa, I think ~charmers owns it [17:57] * marco-traveling goes and looks [17:57] marco-traveling: ah no worries, it was just my curiosity asking [17:58] bbcmicrocomputer: really, we're pushing charm-helpers (v2) instead, which will have something soon for charms in shell [17:58] marco-traveling: ah nice! === vladk|offline is now known as vladk === Ursinha is now known as Ursinha-afk [18:20] * alexisb has just deployed her first service in the cloud using juju [18:20] woo :) [18:20] very good documentation did not take long to figure out, cool stuff [18:21] isn't that fun? :) [18:21] "ooh I just made a VM spin up a few hundred miles away and now it is doing my bidding!" [18:21] it *was* fun :) === Ursinha-afk is now known as Ursinha [18:41] alexisb: glad you had a good experience! Feel free to ask here if you have any questions :D [18:43] wallyworld: your connection is bouncing [18:53] marco-traveling, thank you and will do === vladk is now known as vladk|offline === vladk|offline is now known as vladk [19:15] guys, if I want my hook to run a python script which does not go to background, how should I do it? === Ursinha is now known as Ursinha-afk === Ursinha-afk is now known as Ursinha === vladk is now known as vladk|offline === CyberJacob|Away is now known as CyberJacob [20:00] jose: do you want the hook to block or not on the script? If the former, then just run it, if the latter write an upstart script [20:00] uh oh, I think not, I'll check how to write an upstart script then [20:02] marco-traveling: that phpbb charm I was writing, I'll need to stop as the feature we're looking for to get the DB info in place is not there yet [20:02] but the base is there, maybe in the future I can re-do it [20:03] jose: upstart is pretty simple if you need any help #upstart or ping me [20:03] cool, thanks! [20:07] marco-traveling: would a charm be approved if the user has to go and manually get the database values and set them by itself? [20:07] does the charm hook context not pull in /etc/environment? [20:09] jose: yeah, that won't fly [20:09] ev: probably/maybe not? [20:10] boooo [20:25] any juju contest going on? [20:34] webbrandon: not at the moment [20:36] :( ` [20:55] webbrandon: there's an Ubuntu Touch app development competition going on [20:58] marco-traveling, others: what's the preferred way of setting some environment data for all charms in a deployment? Say I'm at a very security conscious company and they have a http proxy for all traffic. I cannot just set the juju http-proxy config option because juju doesn't also have a no_proxy setting for putting the IPs of swift, glance, etc in. [20:58] ev: uh, that's a good question [20:59] ev: so, there's set-environment, but that's really only for the juju deployed environment [20:59] not like, environment variables [20:59] or, maybe that command does do that [20:59] ev: let me check [21:01] ev: yeah, not, it's just to modify the juju environment, not environment variables [21:02] ev: so, my first though it like a proxy subordinate, that can talk you can set filter based rules on [21:02] err, not subordinate, service [21:03] so set http proxy to this deployed service, then update it's configuration with filtering rules on which ips to send to the actual proxy and which shouldn't be [21:03] but that sounds messy [21:04] marco-traveling: I have the ability to bake the image [21:04] but I need to know where to stick http_proxy https_proxy, socks_proxy, no_proxy, etc so juju respects them [21:05] as when I put them in /etc/environment in the baked image, it didn't find it's way into the environment for $charm/hooks/hooks.py [21:05] oh [21:05] ev: I'd ask around in #juju-dev [21:05] okay, thank you [21:05] There might be a place that you can place these environment variables within juju that the hooks will pick it up === cmagina is now known as cmagina-away [21:36] install is ran by user root, but start is run by user ubuntu? [21:36] is that the convention [21:36] or anything except install is run by ubuntu [21:36] hi all, I made an oops, and now I have a mess. I accidentally spun up too many lxcs, my computer exploded, so I killed all the juju processes and deleted the lxcs. When I run juju status, I see a bunch of non-existent containers. The processes are still around, but they won't die (I assume there's a daemon respawning them). How do I reset everything? [21:36] sudo juju destroy-environment [21:37] Fishy_: that doesn't work. I get "ERROR failed to rename container directory" [21:38] next time dont delete stuff by hand ;) messed somethin up [21:41] have not seen that error though [21:41] (yet) [21:42] for juju could just blow away ~/.juju directory [21:42] peterklipfel: use --force [21:42] but lxc has stuff elsewhere [21:42] peterklipfel: juju destroy-environment local --force [21:42] ok. Actually, I was almost there. I just had to go in and manually recreate the directories (empty) and then run destroy-environment until it succeeded [21:43] the --force flag made juju complain. It doesn't recognize it [21:43] peterklipfel: are you on the 1.16 series of juju? [21:43] lazyPower: yes [21:43] ah ok, thats a recent convention [21:43] hang on there are instructions for cleaning up a broken local install [21:43] 1 moment while i fetch them [21:44] peterklipfel: http://askubuntu.com/questions/403618/how-do-i-clean-up-a-machine-after-using-the-local-provider [21:45] lazyPower: thanks! [21:45] peterklipfel: np, let me know if you run into any issues. I've gotten my hands dirty quite a few times with LXC misbehaving [22:10] how do I tell the juju that I have something running on port 80 [22:10] so it shows up on status [22:10] and gets exposed [22:11] provides: website: http [22:11] Fishy_: open-port exposed [22:11] er [22:11] wow [22:11] ? [22:11] Fishy_: open-port 80 in your hooks. [22:11] start hook? [22:11] or install [22:11] that works. [22:11] i guess install [22:11] I typically put them in config-changed if i have an ssl option so i can switch the ports on the fly === cmagina-away is now known as cmagina [22:12] or if there is a port setting, i can react on it. but if its always going to be port 80, put it wherever it makes sense. [22:12] Fishy_: you typically want to open-port when the service is ready to be used [22:12] open-port : command not found [22:12] I am in bash land [22:12] Fishy_: it has to be executed within hook-running context [22:12] Fishy_: so if after installation its ready, install hook. If you have to start the service, then start hook, if it requires a database, then the db-relation-changed hook [22:13] o okay [22:13] not ready till start happens [22:13] Fishy_: then open-port 80 in the start hook should suffice [22:13] config changed is good idea when I tie it to the config [22:14] but thats step 11 [22:14] Fishy_: yeah, like lazyPower said, if you can configure the port then it should /definitely/ be in the config-changed hook instead [22:14] but as you mentioned, you can iterate on that later [22:14] is the juju master node a single point of failure in this whole operation? [22:14] Fishy_: it is at the moment, we have HA landing for the bootstrap node in the next week or two [22:15] Fishy_: and it's a point of failure in terms of controlling the environment, if the bootstrap node goes down the other services will continue to run [22:15] you just wont' be able to orchestrate anymore (deploy, relate, expose, destroy, etc) [22:16] and if i brought it back up, it wouldnt re-discover what was done [22:17] so potentially lost track of what my machines are doing [22:19] cool open-port works [22:19] Fishy_: well, if you rebooted the node [22:19] Fishy_: it would pick up where it left off [22:19] like, if there was a networking outage or something similar [22:20] but if it was deleted, then there's really no way to recover from that at the moment [22:20] with HA you'll be able to deploy and scale your bootstrap node, so if you wanted HA you could have three bootstrap nodes, if one goes down the other two will continue serving [22:21] ya that would be good long term [22:21] for sure [22:21] master - slave ? [22:21] or can i run commands from any of them [22:24] Fishy_: well, you don't run commands from the bootstrap nodes [22:24] Fishy_: the bootstrap nodes expose an API server that the CLI and GUI, etc talk to [22:29] ya but can you talk to all 3 of the HA [22:29] or just 1 [22:45] Fishy_: all three, but juju will just select one [23:23] do I really need to use the gophers/go PPA to get lbox or can I just go get launchpad.net/lbox? [23:40] bodie_: the latter is better === cmagina is now known as cmagina-away