Kevin Lin
Kevin Lin
This should be pretty straightforward to add, if you're down to take a crack at it. There's [this common function](https://github.com/kelda/blimp/blob/master/pkg/dockercompose/path.go#L8) that's used to get the list of compose files to...
Hi @Laski! We don't expect to add `blimp run` soon unfortunately since we're not working on it full time anymore. However, we have had some teams simulate `docker-compose run` with...
You'd implement this modifying the RPC between the CLI, and the cluster component that deploys containers into the Kubernetes cluster: https://github.com/kelda/blimp/blob/master/_proto/blimp/cluster/v0/manager.proto For example, the code for deploying pods when you...
Hi @MagicLegend I tried out your setup on my machine, and it seemed to work. Only difference was that I didn't set the `packet_size.cnf` config, and I obviously don't have...
Thanks for the info. That's right, `dksnap` adds a `dump.sql`. That `dump.sql` makes your original `sql_dump_file.sql` file redundant since it's been applied by the time `dksnap` takes the snapshot. So...
JOOC, how are you planning on doing authentication? Is it possible to piggy-back off of RBAC and have users authenticate with the user in their kubeconfig? Or will you need...
Ah, or are you planning on using this thing? https://kubernetes.io/docs/concepts/extend-kubernetes/api-extension/apiserver-aggregation/ There's so many concepts in Kubernetes..
Ah that looks really interesting, thanks. Looking forward to reading more. > On Jan 2, 2019, at 11:51 PM, Yeh-lei Wu wrote: > > To be honest, I am not...
We needed to do the same thing, here's an updated version of the code that uses Promises and the new pg interfaces. Thanks @benny-medflyt for the approach! ``` import pg,...
@brianc I assume you did 😄 I didn't have to do any monkey patching on the message parsing side, I just added the new Query with a custom `submit` and...