Re: Ubuntu Xenial stemcell and rootfs plans
Mike Dalessio
Hi Mike,
toggle quoted message
Show quoted text
I totally agree with you on all points, but there are second-order effects that are worth discussing and understanding, as they've influenced my own thinking around the timing of this work. Given the current state of automation in the Buildpacks Team's CI pipelines, we could add a Xenial-based rootfs ("cflinuxfs3"?) to CF pretty quickly (and in fact have considered doing exactly this), and could build precompiled Xenial binaries to add to each buildpack pretty easily. Unfortunately, this would result in doubling (or nearly so) the size of almost all of the buildpacks, since the majority of a buildpack's payload are the precompiled binaries for the rootfs. For example, we'd need to compile several Ruby binaries for Xenial and vendor them in the buildpack alongside the existing Trusty-based binaries. Larger buildpacks result in longer staging times, longer deploy times for CF, and are just generally a burden to ship around, particularly for operators and users that don't actually want or need two stacks. A second solution is to ship a separate buildpack for each stack (so, ruby_buildpack_cflinuxfs2 versus ruby_buildpack_cflinuxfs3), and have `bin/detect` only select itself if it's running on the appropriate stack. But this would simply be forcing all buildpacks to plug a leaky abstraction, and so I'd like to endeavor to make buildpacks simpler to maintain. A third solution, and the one which I think we should pursue, is to ship separate buildpacks for each stack, but make Cloud Controller aware of the buildpack's "stackiness", and only invoke buildpacks that are appropriate for that stack. So, for example, the CC would know that the go_buildpack works on both Trusty- and Xenial-based rootfses (as those binaries are statically linked), and would also know that ruby_buildpack_cflinuxfs2 isn't valid for applications running on cflinuxfs3. This work, however, will require some changes to CC's behavior, and that's the critical path work that hasn't been scoped or prioritized yet. Hope this helps everyone understand some of the concerns, and hopefully explains why we haven't just shipped a Xenial-based stack. -m On Tue, May 10, 2016 at 1:34 PM, Mike Youngstrom <youngm(a)gmail.com> wrote:
I may not have anything that qualifies as compelling. But, here are some |
|