[00:53] thumper: SSHClient facade. Review pls. http://reviews.vapour.ws/r/4713/ [01:14] menn0: i have a couple of simple PRs https://github.com/juju/juju/pull/5252 https://github.com/juju/juju/pull/5241 [01:14] menn0: reviewboard doesn't seem to have picked them up [01:21] * redir is eod. See you tomorrow juju-dev [01:46] Bug #1575448 opened: trusty juju 1.25.5 HA availability issues [02:00] mwhudson: looking [02:00] menn0: looks like tim merged them [02:00] mwhudson: ok cool. I was having lunch. [02:01] or well [02:01] menn0: https://github.com/juju/juju/pull/5252 hasn't merged, can you tell why? [02:01] oh still processing [02:01] mwhudson: yep, still merging [02:02] hey perrito666 - your window tests PR fixed this bug, right? bug 1571783 [02:02] Bug #1571783: Windows unit tests cannot setup under go 1.6 [02:03] * perrito666 checks [02:03] yes [02:03] cool, thanks === redir_ is now known as 16WAADNFF === 16WAADNFF is now known as redir [02:06] having trouble building juju(cb347bb7). Following the README.md results in: cannot find package "github.com/Azure/azure-sdk-for-go/Godeps/_workspace/src/github.com/Azure/go-autorest/autorest/mocks" [02:06] a123: did you run godeps first ? [02:07] cd $GOPATH/github.com/juju/juju && godeps -u dependencies.tsv [02:08] no I did not. The README.md only says to run 'make install-dependencies' [02:08] that should do the same thing [02:08] did that process work ? [02:08] it might be easier to run the command I suggested [02:08] and raise a bug if our install docs are out of date [02:09] hmm. godeps: command not found. I'm using: go version go1.6.1 linux/amd64 [02:09] I'm new to go, if that's not obvious. [02:10] please raise a bug that make install-dependencies does not install godeps, which is a dependency :) [02:11] for the momement [02:11] go get launchpad.net/godep [02:11] go get launchpad.net/godeps [02:11] you will need to install bzr, sorry [02:12] ha. yep. [02:12] that may have been while make isntall-deps failed [02:13] odd, I thought make install installed bzr [02:13] hmm. odd. bzr already installed. here's the output of get get launchpad.net/godeps [02:13] # cd .; bzr branch https://launchpad.net/godep /home/ubuntu/proj/gojuju/src/launchpad.net/godep bzr: ERROR: Not a branch: "https://launchpad.net/godep/". package launchpad.net/godep: exit status 3 [02:13] a123: its godeps [02:13] go get launchpad.net/godeps [02:13] yep. [02:13] with an s at the end [02:13] you are missing it [02:14] yes, sorry, i typed it incorrectly the first time [02:14] working.... [02:14] there is a related tool with a very similar name [02:16] godeps -u dependencies.tsv looks like it did its thing. [02:19] now running go install -v github.com/juju/juju/... and that looks like it's doing its thing. Thanks for the help. [02:20] no worries [02:21] BTW, anyone get juju bootstrap to work from behind a proxy? At home, no issues at all. Different story behind a proxy. [02:21] juju _should_ pickup the various http_proxy variables if they are defined in your shell [02:22] a123: 1.25, or 2.x? [02:22] 1.25 works for me [02:22] yes. It does look like it does that at first.... Yes, 1.25 worked for me too, now trying 2.0 [02:24] don't know if this is related to our proxy or not, but doing lxc remote list produced a table where images url looked like: [02:24] https://images.linuxcontainers.org [02:25] I could not download any images from there. but when I redefined that url to include the port(8443) the image download was successful. [02:28] if you've change something (i'm not sure what you've changed) then you'll need to be explicit [02:28] it sounds like the thing your downloading from expects 443 as the default [02:29] right. I ran: lxc remote set-url images https://images.linuxcontainers.org:8443 [02:29] this redefined the remote images url. I then ran: lxc image copy images:ubuntu/xenial/amd64 local: --alias ubuntu-xenial [02:30] w/out changing the URL, the lxc image copy command would not work behind our proxy [02:30] umm, juju 2.0 doesn't support lxc [02:30] only lxd [02:30] i hope this statement is helpful, not frustating [02:31] laughing... I thought lxd2.0 was built on top of lxc. Your point is taken though. [02:32] well it is [02:32] so your point is technically correct, which is the best kind of correctness [02:34] before changing the image url and running: juju bootstrap --config default-series=xenial lxd-test lxd --debug produced: [02:42] sorry guys. I'm seeing different debug output now than earlier. lots of connection refused to the 10.0.3.0/24 network. Does the no_proxy setting take CIDR? [02:44] that network is attached to lxdbr0 [02:47] What I should ask is, does juju understand CIDR if used in the no_proxy env var? ie. export no_proxy=10.0.3.0/24 [02:48] a123: no, no_proxy doesn't take a cidr [02:49] thanks. [02:49] i _think_ no_proxy is just a sort of match string [02:49] export no_proxy=10. [02:49] ^ not tested [02:50] just a comma seperated list of "domain extensions" [02:50] so, it's suffixes, not prefixes [02:51] valid: no_proxy=.com [02:51] no_proxy=.255 [02:51] I've found this to be application dependent in the past. [02:52] ah. nice. [02:52] not valid: no_proxy=10. no_proxy=10.* etc etc [02:52] we plug this stuff into wget in some places so are limited by what wget supports [02:52] oh. It wasn't clear to me if wildcards would work. [02:54] ok. wget is the driver. I think I know why my debug is different now. I used the --keep-broken flag when running the bootstrap in hopes of finding answers. How do you destroy the model? [02:54] juju kill-controller $controller [02:54] from memory [02:55] kill is the more finite form of destroy [02:55] which tends to not actually destroy things 'cos it's a wimp [02:58] so much I don't know. Is the controller a different concept than a model? It looks like a controller never got created when using the --keep-broken flag. [03:02] so. juju list-controllers returns an empty table. When I then run: juju list-models I get: error: controller local.lxd-test not found. What exactly does --keep-broken do? [03:08] thanks for the help everyone. I'm not confident my environment is in a good state. I'm going to tear down the VM, bring up a fresh one and try again tomorrow. [03:21] menn0: a few questions on your review [03:21] * thumper goes to make coffee [03:21] thumper: ok, looking [03:24] thumper: good point... these APIs copy the existing APIs used by juju ssh/scp exactly but it's probably worth making sure they at least work for IPv6 too [03:28] thumper: hangout to discuss? [03:31] menn0: sure, gimmie 5? [03:31] yep [03:32] * thumper wants to enjoy his coffee first [03:55] Bug #1575463 opened: buildSuite.TestGetVersion* CryptAcquireContext: Provider DLL failed to initialize [04:09] menn0: are you looking at this bug https://bugs.launchpad.net/juju-core/+bug/1458585 [04:09] Bug #1458585: SSHGoCryptoCommandSuite.TestCommand fails [04:09] or a duplicate of it ? [04:09] davecheney: no and no [04:11] davecheney: I'm working on making juju ssh/scp use the actual SSH host keys of the machine being connected to [04:11] davecheney: close to being done [04:14] ok, related, but not the same issue [04:14] thanks [04:21] wallyworld: when do we add things into the cloud metadata storage? [04:21] wallyworld: is it "normal" behaviour for clouds [04:21] or more used for custom openstack stuff? [04:21] thumper: you mean keystone? [04:21] or the metadata url [04:22] will still allow the use keystone for simplestreams [04:22] but i don't think we've used the metadtaa url for ages [04:22] we now bootstrap differently [04:23] it used to be a way to pass bootstrap instance info across [04:25] Bug #1575469 opened: liveSuite.TestBootstrapMultiple invalid character \"\\\\\" in host name [04:25] Bug #1575472 opened: Data Race github.com/juju/juju/environs/tools/build.g [04:32] wallyworld: I mean the state cloudmetadataC collection [04:34] thumper: we cache the simplestreams metadata there at bootstrap and whenever we poll cloud-images [04:42] k [04:59] menn0: https://github.com/juju/juju/pull/5289 [04:59] i heard u were on call review [06:09] davecheney: looking [06:11] davecheney: looks fine. what's changed in x/crypto that fixes the isssue? [06:19] menn0: who knows it's been a year since we updated that dependency [06:19] and there have been heaps of bug fixes to the crypto repo [06:19] i'm deliberately phrasing it like this because I don't want to backport anything [06:19] davecheney: ah right... so you didn't find a specific upstream change that fixed the issue [06:19] i didn't even look [06:19] upgrading to tip fixed the problem [06:19] davecheney: well you have a ship it [06:45] Do we need to maintain comptabilty with Go 1.2 ? [06:45] the build bot just failed to land a branch 'cos it tried to build with Go 1.2 [07:42] axw: are you around by any chance? [07:43] or wallyworld ? [07:43] hey, otp [07:43] dimitern: yo, I am [07:43] axw, wallyworld: hey, just a quick question, if you happen know [07:44] in provider/ec2 can we now only filter instances by model tags rather than secgroups ? [07:44] axw: I know you did something around that lately [07:44] dimitern: not yet, tried to land today but master is blocked [07:45] I'm working on bug 1321442 and it will be a lot easier not to have to make group filters work with explicit VPC ID [07:45] Bug #1321442: Juju does not support EC2 with no default VPC [07:46] axw: I see, ok - I'll look into your changes [07:46] dimitern: hmm you know, I just remembered a reason why we may not want to do away with the group filtering. [07:46] dimitern: tags aren't added immediately after creating an instance... [07:46] axw: ah, bummer [07:46] sorry [07:47] dimitern: I mean, they're not added until after they're created [07:47] dimitern: so there's a window where they could leak [07:47] axw: np, it makes sense in an AWS world I guess [07:48] axw: ok, cheers, I'll do group filtering then as well [07:48] dimitern: and I'll revert that bit in my PR :) [07:48] cheers [07:51] you gotta love how inconsistent AWS API is at times :[ [07:53] lol `deleteSecurityGroupInsistently` [08:03] jam, tech board? [08:32] dimitern: ping [08:32] voidspace: pong [08:33] dimitern: I've addressed two of your comments from your review of the devices branch [08:33] dimitern: you suggest just adding a test for the multi nic case as it's basically done [08:33] dimitern: however, adding a test means some test infrastructure work as the multi-nic path calls additional provider methods [08:34] dimitern: not difficult but not nothing [08:34] voidspace: it looked like that, but yeah - can be a follow up [08:34] dimitern: in addition there is the known bug with the multi-nic case [08:34] dimitern: I'd rather land as is - with working and tested single nic containers [08:34] voidspace: what did you find about the missing subnet? [08:34] dimitern: not uncovered it yet - still digging [08:34] dimitern: should be done and dusted today though, can't be *that* hard to find :-) [08:35] dimitern: so I'll land as is and land multi-nic tests along with the bug fix (assuming it's not a maas bug) [08:35] dimitern: ok? [08:35] voidspace: you know what occurred to me yesterday: it might be due to unchecked 0 ids for fabrics or vlans [08:35] dimitern: possibly [08:36] dimitern: I'm going to try always setting VLAN ID even if it isn't changing in that update call [08:36] voidspace: e.g. fabric-0 is always there, but we might not have meant that [08:36] yeah [08:36] voidspace: ok, if you don't mind let me do a quick bootstrap with your branch now [08:37] dimitern: sure [08:37] I'm doing the same, with modified gomaasapi [08:39] ok [08:43] forcing the VLAN to be specified didn't help [08:44] adding more debugging [08:44] dimitern: anyway, I'm on it [08:45] voidspace: can you paste the outputs of 'maas subnets read', 'fabrics read', and 'machines read' for your maas2? [08:47] dimitern: http://pastebin.ubuntu.com/16076113/ [08:49] voidspace: thanks, here's mine for comparison: http://paste.ubuntu.com/16076129/ [08:50] dimitern: I'm going to try allocating the machines and making the maas calls manually [08:51] dimitern: after this bootstrap to confirm it's the CreateDevice call that fails [08:51] voidspace: sgtm, I'm bootstrapping now [08:51] dimitern: I'd still like to land single nic support [08:53] voidspace: I don't disagree with that :) [08:53] cool [08:54] voidspace: are both of your first 2 fabrics managed? (0 and 1) [08:55] i.e. subnets 172.16 and 172.17 [08:55] dimitern: gah, master blocked [08:55] dimitern: subnets are managed if that's what you mean [08:55] I don't know what a managed fabric is [08:56] both subnets [08:56] dimitern: ok, I was wrong it gets past CreateDevice and UpdateInterface [08:57] dimitern: so I need to add more instrumentation and redo [08:57] dimitern: I've got this anyway [08:57] dimitern: I'll ping you when I've made progress [08:57] voidspace: ok, your maas2 setup looks fine - so the issue must be related to how we're calling the api [08:58] yep [09:00] voidspace: still the same thing - no params (with vlan) passed to update the primary NIC of the device [09:02] dimitern: standup old boy [09:21] morning [09:34] babbageclunk: it would appear you're the luck OCR today, would you please take a look at http://reviews.vapour.ws/r/4718/diff/#? [09:34] fixes master blocker [09:39] dimitern: I see vlan=5001 in the params of the PUT [09:40] voidspace: and I can't :/ [09:41] voidspace: and with the vlan set do you still get 500 ? [09:42] dimitern: wait, that's the wrong vlan though [09:42] dimitern voidspace: can either of you take a look at the tiny PR above? it should unblock master [09:42] well, with the juju/juju change coming after [09:42] dimitern: I do get 500 [09:42] dimitern: but I think that's the wrong vlan [09:42] dimitern: interesting [09:42] axw: LGTM [09:42] ta [09:43] voidspace: aha! [09:43] voidspace: 5001 should be the untagged vlan of your fabric-0 [09:43] voidspace: and it should be the same as the host's first NIC's VLAN [09:44] dimitern: however this subnet comes straight from MAAS [09:44] but "spaces read" seems to give the right thing [09:46] dimitern: so in gomaasapi it should be args.Subnet.VLAN() not iface.VLAN() [09:47] dimitern: and in the single NIC case it works because there's only one [09:47] dimitern: trying that [09:47] voidspace: exactly! [09:48] I think that's it [09:48] trying it now [09:48] voidspace: the iface is the device interface, while args.Subnet.VLAN is the one we want on iface [09:48] yep [09:48] gaah, that took a long time [09:48] at least we get to blame Tim [09:48] :) [09:48] and a chunk of the time was getting a multi-nic MAAS setup which is worthwhile work [09:49] voidspace: \o. [09:49] \o/ even [09:50] voidspace: and it also helped your maas2 setup is a bit different than mine [09:50] yep [09:51] voidspace: are you using 2.0.0 beta4 more recent than bzr 4936 ? [09:52] dimitern: 4941 [09:52] dimitern: beta3 though! [09:53] dimitern: I've got past that point with no error [09:53] dimitern: and I see a device with two nics and two IP addresses [09:54] voidspace: hmm, well you *might* hit this bug 1572070 [09:54] Bug #1572070: MAAS 2.0 cannot link physical device interfaces to tagged vlans, breaking juju 2.0 multi-NIC containers [09:54] axw: Sure - sorry, missed this until now. [09:54] voidspace: sweet! then it should work the rest of the way [09:54] dimitern: yep, so I'll propose a fix for gomaasapi and then tests for multi-nic [09:55] frobware: babbageclunk: it turned out to be a bug in gomaasapi [09:55] voidspace: but that bug will be relevant with mult-nic only [09:55] dimitern: ok, thanks [09:55] dimitern: the linking is already done (my vlans are untagged) [09:55] dimitern: so I think I've got past that [09:55] voidspace: nice [09:57] voidspace: well since the physical nics of the host are on untagged VLANs it only will become an issue trying to create a second physical NIC of the device linked to a tagged VLAN [09:57] dimitern: container is running fine [09:57] voidspace: no WARNINGs in the log around provisioning / PrepareContainerInterfaceInfo ? [09:58] dimitern: only about no DNS settings found [09:58] dimitern: nothing else [09:58] axw: dimitern: d'oh, should've reloaded [09:58] dimitern: and I can ssh fine [09:58] dimitern: case closed on that one [09:59] voidspace: awesome! so the device has eth0 and eth1 linked to br-eth0 and br-eth1 on the host? [10:00] dimitern: this is e/n/i on the container http://pastebin.ubuntu.com/16076575/ [10:02] voidspace: slightly odd to see `dns-nameservers 172.16.0.2` on eth0 which has address 172.17.0.4/24 [10:02] dimitern: it adds the nameservers to the first stanza [10:02] but otherwise looks solid [10:02] yeah [10:02] voidspace: yeah - and only the .16 subnet has dns_servers set? [10:02] dimitern: this is the host http://pastebin.ubuntu.com/16076591/ [10:03] dimitern: you only need one nameserver entry [10:03] they're global [10:04] neither dns is set in maas (both 0.0.0.0) and both are managed [10:04] voidspace: I see, ok - does 'ping bbc.co.uk' work while inside the container? [10:05] dimitern: yep [10:06] voidspace: we're nearly done then :) [10:09] dimitern: can't test that change easily in gomaasapi - you can specify responses in the test server it uses but not verify requests it seems [10:10] you can fetch the last request, but it makes another after the update [10:10] looking to see if I can get at the one before last :-) [10:11] hah, no [10:11] ah, I can check the VLAN [10:11] should be ok [10:12] voidspace: sure, on it [10:18] dimitern: are you doing it? [10:18] dimitern: I have a branch with a fix [10:18] voidspace: haven't started [10:18] doing a few things at once as usual [10:19] dimitern: a proper test involves a lot of json (new interface, vlan and subnet in json) [10:19] dimitern: I have this though https://github.com/juju/gomaasapi/compare/master...voidspace:maas2-create-device-vlan [10:19] as there's only one interface on the test machine the test doesn't fail without the fix [10:20] I suggest we land this, I'll work on juju and come back for a multi-nic test for gomaasapi later [10:20] voidspace: looks good [10:20] babbageclunk: https://github.com/juju/gomaasapi/pull/47 [10:22] coffee [10:34] voidspace: I like it [10:34] voidspace: ! === akhavr1 is now known as akhavr === dimitern is now known as dimitern-afk [11:26] voidspace: ahh, missed your discussion about the test above. [11:48] babbageclunk: yeah, it needs a better test - but creating a machine with multiple interfaces, subnets and vlans for the gomaasapi test harness is a pain [11:48] babbageclunk: I'll do it later [11:48] babbageclunk: it's no worse tested than it was before ;-) === dimitern-afk is now known as dimitern [12:37] dimitern: I've updated http://reviews.vapour.ws/r/4700/ [12:37] dimitern: includes gomaasapi revision bump and a happy path test for multi-nic [12:37] is master unblocked yet [12:37] dimitern: still more tests needed [12:39] voidspace: still looks good to land, and I'll do another quick live test with it [12:39] dimitern: that would be good, see if it works for you [12:46] master is still blocked [13:08] voidspace, dimitern, frobware, babbageclunk please JFDI any maas2 related PRs [13:09] master is blocked but maas2 stuff is an exception here [13:36] alexisb: thanks! [13:37] voidspace: it looks a lot better: bootstrap ok, switch to admin, add-machine, then add-machine lxd, lxc, kvm to both :0 and :1 [13:38] voidspace: but only machine-1 containers all came up ok and have expected addresses, the ones on machine failed with host machine device "br-eno2" has no address, and I was digging into the logs to figure out why [13:56] Bug #1575676 opened: Hard to use non-default LXD bridge [13:57] thank you katco ! [13:57] alexisb: np... happy that we're giving capacity planning a little more attention [13:57] alexisb: also revealing future targets :) [13:58] * katco begins her morning routine [14:17] alexisb: ok [14:18] dimitern: machine-0 ones didn't work? [14:18] picking up daughter from school [14:18] back in 15mins [14:20] voidspace: nope, something's odd, still investigating and adding more logging === deathpip is now known as ivyharriet [15:00] dimitern: alexisb: frobware: babbageclunk: container support has landed on master [15:01] voidspace: nice work! [15:01] voidspace: awesome! === redir_ is now known as redir [15:03] voidspace: great! [15:03] I'm still debugging the issue on machine-0 [15:03] dimitern: ok [15:03] dimitern: I'll try adding a node to my maas with two nics and try that [15:04] dimitern: I've *only* deployed to machine-0 [15:06] voidspace: in the admin model? [15:06] dimitern: yep [15:08] dimitern: commissioning an additional node now [15:09] \o/ [15:12] dimitern: when I commission a node with two nics the second nic comes up as "unconfigured" (no address) whereas the primary nic is "auto assign" [15:12] dimitern: I can manually change it to auto assign [15:12] dimitern: if I don't do that then I think I only get a single nic on the container [15:13] voidspace: otp [15:17] successfully created a container with two nics on a new machine not in the admin model [15:24] Bug #1574809 changed: "to: lxc:0" ignored in bundle [15:31] voidspace: yeah, you can set them to auto or static (unconfigured physical + auto/static VLAN children won't work though) [15:31] voidspace: nice! I added more logging and now trying again [15:47] dimitern, voidspace - hmm, trying to add a machine with a space constraint gives a schema error - it looks like the maas response might have changed since we put the constraint matching code in. [15:48] It's returning an array of interface/device ids, not just one. [15:49] I'm going to fix gomaasapi - do you think that just taking the first is the right thing to do? I guess I should ask the MAAS people what it would mean for the result to have more than one value. [15:50] babbageclunk: can you point me to the code you're talking about (causing the issue)? [15:52] dimitern: https://github.com/juju/gomaasapi/blob/master/controller.go#L810 [15:53] dimitern: compared to this response: http://pastebin.ubuntu.com/16083467/ [15:54] voidspace: where is the gomaasapi/bootresource.go stuff meant to come from? bootstrapping complains about missing kflavor schema [15:57] mgz - if you do "maas boot-resources read" can you see kflavor in the items that come back/ [15:57] ? [15:58] babbageclunk: a bunch of them do, some do not (centos ones) [15:59] babbageclunk: hmm [15:59] babbageclunk: so looking at the response you pasted, the schema seems correct [16:00] mgz: that makes it sound like it's an optional field that we didn't know was optional. [16:00] babbageclunk: it does indeed, I'll file a bug? [16:01] mgz: yes please! [16:01] dimitern: will ForceInt accept an array? [16:03] babbageclunk: I think the ForceInt applies to the values of the StringMap [16:03] dimitern: sure, but the values are lists, right? [16:04] dimitern: I'm going to write a little test to check [16:04] babbageclunk: i.e. given a {"constraints_by_type":{"storage":{"foo":1,"bar":2}},"interfaces":{"aa":1,"bb:2}} it should parse it [16:06] Bug #1575760 opened: Juju switch returns confusing error message [16:06] dimitern: but the one coming from maas has "interfaces": {"default": [24]} [16:07] babbageclunk: you're correct! so specifying "interfaces=foo:space=0" gives me multiple items in the list for "foo" [16:08] dimitern: is that because any of those interfaces are in the right space? [16:08] dimitern: I mean, all [16:08] babbageclunk: yeah - if you have 1 space only (space-0 a.k.a. default) and you pass that to interfaces, you'll get all nodes back [16:10] babbageclunk: so I guess it needs to be something like "interfaces": schema.StringMap(schema.List(schema.ForceInt())) [16:10] dimitern: yeah, I think so. [16:11] dimitern: And I think we need to change gomaasapi.ConstraintMatches to have slices of BlockDevice and Interface as well then. [16:11] babbageclunk: indeed [16:11] dimitern: once it gets into the provider, can we just pick any one of them? [16:12] * babbageclunk looks in environ.go for how we use the matches. [16:12] babbageclunk: and the way ids are handled in the loops below (id := value.(int) -> ids := value.([]int) and range over it) [16:13] babbageclunk: you mean, if you have more than one interface ID per label? [16:14] babbageclunk: does not matter if we only want a given space to be accessible on the allocated machine [16:14] dimitern: yeah, actually we only use the constraint matches for storage information. [16:15] babbageclunk: but why do you need those results from constraintsMap ? the 1.0 code path ignores them as we don't care (i.e. we read all interfaces along with which subnets and spaces they're linked to each time we call NetworkInterfaces()) [16:15] babbageclunk: :) yep [16:16] we probably should at some point, but so far we don't need it [16:19] dimitern: ok, in the storage case should that just be another loop over the block devices that come back [16:19] ? [16:20] babbageclunk: I suspect so, but have a look how 1.0 code path does it (and its tests) [16:20] dimitern: context: https://github.com/juju/juju/blob/master/provider/maas/volumes.go#L295 [16:22] voidspace, babbageclunk: filed bug 1575768 [16:22] Bug #1575768: boot resource 2.0 schema check failed: kflavor: expected string, got nothing [16:23] dimitern: It was structured differently in the v1 API - looks like it was id -> label, so you could have multiple ids going to the same label [16:24] babbageclunk: it doesn't look like the 2.0 code path is using physicalblockdevice_set at all [16:24] thanks mgz - I'll start on that now. [16:24] dimitern: no - gomaasapi handles that lookup [16:28] dimitern: in controller.go: parseAllocateConstraintsResponse [16:30] mgz: do you know what MAAS version that is? [16:31] babbageclunk: beta3+bzr4941 [16:32] mgz: Thanks. [16:33] it's upgraded from 1.9, which would have done the original image imports [16:33] babbageclunk: I need to go, but in case it might help, here's a couple of outputs with a set storage constraint on 2.0 (http://paste.ubuntu.com/16084450/) and 1.0 (http://paste.ubuntu.com/16084458/) [16:34] dimitern: thanks! I'm not going to get to fixing it tonight, should fix mgz's issue first [16:34] mgz: that's a bit too old can't you upgrade to the latest beta4 from the experimental3 ppa? [16:34] babbageclunk: sounds good, cheers! [16:35] dimitern: mgz: I wasn't sure whether that was something I could demand. :) [16:35] aw c'mon mgz's a pal :) [16:35] mgz: the version we're working against is beta4+bzr4944 [16:36] dimitern: I can, I didn't see an announcement from roaksoax about it [16:36] Bug #1575764 opened: Juju doesn't detect lxd container IP address changes [16:36] Bug #1575768 opened: boot resource 2.0 schema check failed: kflavor: expected string, got nothing [16:36] Bug #1575769 opened: Can't "forget" a controller that I've lost access to [16:36] mgz: they don't always mail when they do a point release I think [16:37] anyway, I'm outta here [16:37] mgz: it has a few bugfixes we need, so I guess you'll need to upgrade anyway. [16:39] Bug #1575769 changed: Can't "forget" a controller that I've lost access to [16:39] babbageclunk: dist-upgrading first [16:40] mgz: I'll try uploading a centos image to my local MAAS and see if that also leaves out kflavor. [16:42] Bug #1575769 opened: Can't "forget" a controller that I've lost access to [16:48] mgz: yup, it still leaves out kflavor on my local beta4 one [16:50] babbageclunk: have you got a fix for that issue? [16:51] Bug #1575769 changed: Can't "forget" a controller that I've lost access to [16:51] voidspace: I think we just need to mark it optional in the schema. [16:52] babbageclunk: do you have a branch with that? [16:52] voidspace: The provider doesn't use it - we only care about architectures [16:52] voidspace: not with the change yet - just reproducing the bug. [16:52] babbageclunk: cool [16:53] cherylj: looking [16:53] redir: at what? [16:53] what did I say? [16:53] * babbageclunk lols [16:54] cherylj: at your PR [16:54] haha [16:54] :p [16:56] babbageclunk: reading scrollback - weird about the device id array [16:56] babbageclunk: did you ask in the maas folk about that? [16:57] I've just upgraded to beta4 - was using next-proposed instead of experimental3 [16:58] there are too damn many maas ppas [16:59] voidspace: no, haven't yet [17:00] voidspace: but the new way is right - if the mapping's gone from {id: label} to being keyed by label, the values need to be lists [17:01] babbageclunk: I don't see a beta4 in any of the ~maas ppas [17:01] it's in someones private one? [17:03] Bug #1575769 opened: Can't "forget" a controller that I've lost access to [17:05] mgz: I think it's this one: ppa:maas-maintainers/experimental3 [17:05] jam, tych0: PTAL @ http://reviews.vapour.ws/r/4722/ [17:05] frobware: oh, derp :) [17:06] tych0: you were doing the same thing? [17:06] no, just that it's a dumb bug on my part [17:06] Bug #1575769 changed: Can't "forget" a controller that I've lost access to [17:06] i didn't realize Initialize was called more than once, actually [17:06] but it makes sense that it is [17:08] frobware: looks good to me [17:08] tych0: ok, will do some testing tomorrow morning (as master is blocked). [17:08] tych0: thx [17:09] frobware: np, thanks for the fix [17:12] Bug #1575794 opened: Agent config format version should be changed for 2.0 [17:15] babbageclunk: mgz: that's the right one - I just had to switch to it [17:16] babbageclunk: ok, the kflavor ones sounds easier [17:16] babbageclunk: I can propose that [17:19] babbageclunk, voidspace: similar issue with 'mount_point' [17:20] on filesystem2_0 [17:21] voidspace: https://github.com/juju/gomaasapi/pull/48 [17:21] voidspace: can you do the mount_point one? [17:23] babbageclunk: gah, you beat me to it [17:23] sorry! [17:23] babbageclunk: mount_point needs to be optional? [17:23] what command is this coming from? [17:23] babbageclunk: I fixed it by supplying a default instead [17:24] voidspace: oh, that's nicer [17:24] Bug #1575794 changed: Agent config format version should be changed for 2.0 [17:24] hm, block-device, which needs a machine [17:25] babbageclunk: https://github.com/juju/gomaasapi/compare/master...voidspace:maas2-kflavor-optional [17:25] babbageclunk: and then you always get a value even if it's missing [17:26] mgz: I can make mount_point optional in filesystem [17:26] voidspace: yeah - do that instead [17:26] babbageclunk ok, I'll add making mount_point optional in the same branch [17:26] voidspace: some of my filesystems are null [17:27] mgz: you should be able to see it with machines read [17:27] the whole filesystem? [17:28] mgz: what should we default to for mount_point: "/" ? [17:28] voidspace: http://paste.ubuntu.com/16085749 [17:28] voidspace, mgz: sorry, I have to head home [17:29] I have to go in five minutes too [17:29] mgz: when you say "some of my filesystems are null" you mean mount_point, label and mount_options being null [17:29] ah no [17:29] the whole filesystem is null [17:29] geez [17:29] :) [17:29] mgz: this is now a tomorrow problem, sorry [17:30] wife is calling me to dinner [17:30] voidspace: I'll file you a bug son [17:30] mgz: can you link to this pastebin on it please [17:30] will also put up a non-voting job for maas 2.0 [17:30] Bug #1575794 opened: Agent config format version should be changed for 2.0 [17:30] to avoid cursing on this stuff [17:30] mgz: much appreciated - thanks [17:30] mgz: yeah [17:31] weird-ass maas configuration [17:32] right, dinner [17:32] sorry [17:36] Bug #1575797 opened: AddressableContainerSetupSuite.TestContainerInitialised lxc-net: no such file or directory [18:00] Bug #1575808 opened: filesystem 2.0 schema check failed: mount_point: expected string, got nothing [18:03] Bug #1575808 changed: filesystem 2.0 schema check failed: mount_point: expected string, got nothing [18:06] Bug #1575808 opened: filesystem 2.0 schema check failed: mount_point: expected string, got nothing [18:31] ericsnow: you around? [18:31] redir: yep [18:31] can I borrow your eyes for a minute? [18:32] ericsnow: ^^ [18:33] redir: sure [18:33] ericsnow: am in moonstone [19:56] uhh... redir, cherylj, are the tests supposed to pass on xenial? [19:57] I'm getting a lot of this: obtained string = "xenial"... expected string = "trusty" [19:59] katco, ericsnow ^ ? This is just running tests on master [19:59] natefinch: what does dist-info --lts return for you? [20:00] natefinch: I don't believe we've landed any fixes for that yet [20:00] natefinch: sorry distro-info --lts [20:00] natefinch: redir is working on a comprehensive patch [20:00] ahh ok [20:00] katco: xenial [20:01] Bug #1575895 opened: juju loses apt-http/s-proxy information if a model is deleted and a new one created [20:04] natefinch: getting close with some help from ericsnow just now. Making sure it works then reviewing previous commits to see if this works on those and reverting them to keep things uniform. [20:04] Hopefully done RSN(tm) [20:04] redir: \o/ [20:05] /o\ [20:38] ah, resources are awesome [20:39] cmars: glad you like them. I do think they're pretty great [20:39] natefinch, updating my mattermost charm to use them [20:39] cmars: nice! [20:40] cmars: let us know if there's any problems or unexpected behavior [20:40] cmars: :D === natefinch is now known as natefinch-afk [21:18] wallyworld: ping me when you are around please [21:28] perrito666: hey. just about to go into a meeting [21:29] k [21:37] Bug #1575940 opened: LXC containers under MAAS get no "search " entry in resolv.conf when deployed with juju2 [22:04] menn0, ping [22:04] alexisb: hey hey [22:05] are you available to join the leads call [22:06] alexisb: ah crap... sorry [22:10] davecheney: ping? [22:19] wallyworld: lemme know if you have a spot before the standup [22:20] perrito666: stuck in meetings, will let you know. may have to move standup depending on how meetings go [22:20] k [23:04] perrito666: axw: anastasiamac_: redir: quick standup between meetings? [23:06] redir: will you need to coordinate with CI to not hack distro-info for your PR? [23:07] cherylj: If I have this right it should pass as the bots are, and when they unhack them as well. [23:07] redir: sweet! [23:57] so master is blocked [23:57] should I target something else for a PR?