Brian Morton
Brian Morton
Also, would we want to do all deploys sequentially or deploys for a given service sequentially? I haven't thought through the implications of each yet. Sent from my iPhone >...
Would it make sense to use [dbus](http://www.freedesktop.org/wiki/Software/dbus/) for this? Just throwing it out there because it's already available on coreos. Does that make sense or would it be a weird...
AFAIK, dbus isn't distributed across the cluster, so whatever was enqueueing and processing would have to be on the same node (or in the same process/container). At first glance, I...
:+1: When we get closer to implementing this, we can discuss some other options for how to persist jobs. It might be as easy as linking in a data dir...
Yeah, really cool. I started using it in my template for this stuff. Here's what my Dockerfile looks like currently: ``` dockerfile FROM golang MAINTAINER Brian Morton "[email protected]" ENV APP_NAME...
Given the bridge stuff, does it make sense that deployster would handle this or should it just be responsible for making sure to inject `ETCDCTL_PEERS` or whatever we want to...
:+1: I use codegangsta/cli for [`deployctl`](https://github.com/bmorton/deployctl), if you want to use that as an example, @dcondomitti.
Continuing to look into this and need to experiment with dbus to see if this is the right way to emit events. [This discussion](https://groups.google.com/forum/#!topic/coreos-dev/AXCs_2_J6Mc) has a way to mount access...
Starting to prototype this up now using etcd. I started by researching dbus more, but I'm not convinced it'll do what we need it to do and it is pretty...
Yeah, I hear you. Thanks for the sanity check. I've been spinning my wheels trying a few routes on this and the etcd one is the first one I made...