Michael Bridgen
Michael Bridgen
On a tangent, https://github.com/koki/short is a nice idea -- boil the (standard) API objects down to the minimal, unambiguous form. So you'd construct values looking like this: ``` const dep...
First target: use the generated classes when constructing resources, e.g., in generateConfigMap. This probably means pointing the tests at dist/, or compiling into src/. If rewriting in typescript, the latter...
Sketch: an invocation of overlay should return a map of the names to the transformed names; at the top level of composition, all resources then get traversed and any fields...
> Also, in similar vein: label modifier There's `transform/commonMetadata`, which adds labels and annotations .. What kind of modifications would you want to do to labels? Changing particular labels, or...
Hmm actually it looks like libnetwork intends to do port mapping itself, and currently has a hack to make this happen: https://github.com/docker/libnetwork/issues/401
> So this will have wait for IPAM to be able to allocate subnets, and support allocating IPs from a specific subnet. This requirement is encoded as the "symbolic names"...
> When the plugin is deployed as a global driver, we get multiple network support by virtue of using Docker's default IPAM. Specifically: Docker's default IPAM will allocate a fresh,...
It's not just my mac. I can make this happen with the following steps, in rabbitmq-server: - remove all but rabbithub from plugins/ - ./scripts/rabbitmq-activate-plugins - make cleandb - make...
This looks like a bug (er, feature?) in mnesia: $ erl Erlang R13B02 (erts-5.7.3) [source] [smp:4:4] [rq:4] [async-threads:0] [hipe] [kernel-poll:false] Eshell V5.7.3 (abort with ^G) 1> mnesia:start(). ok 2> mnesia:create_schema([node()])....
Yes, that ought to do it. Beware of relying on RabbitMQ for locking though, as noted in the edits at the end of that blog post. Something like zookeeper may...