Emmanuel Gomez

Results 19 issues of Emmanuel Gomez

Need a method for `kubelet` to find `kube-apiserver`, in a way that allows the `kube-apiserver` to move among hosts.

Ideally the `kube-apiserver` will have some sort of watch-dog/babysitter that keeps it running. I see a few options:

There are two parts to unifying around EC2 instance IDs: `systemd` machine ID and `etcd` peer/member IDs. Switching `etcd` should be as simple as [setting the `ETCD_NAME` environment variable in...

Adds new `contArr` and `intersectsArr` query operators, with the `intersectsArr` operator generating SQL queries like: ``` select ... where tags::text[] && ARRAY[$1,$2]; ``` This selects rows where the `tags` column,...

In the README.md, under "More complex usage", there is mention of skipping the Google Sheet: > or you can also insert all your data straight into the code. Please provide...

This is in violation of the RFC itself, but allows syslogparser to parse output from Golang’s own log/syslog package.

I want to have a variant of `Resource` that accepts middleware (`authenticate` & `persistence` keys) and validates incoming JSON according to a schema (`schema` key), in order to emulate some...

We use [Gin](https://github.com/gin-gonic/gin), and we're looking at using this library. Gin provides [a `BindQuery` method](https://github.com/gin-gonic/gin/blob/08b52e5394099db4c2399357e060619c1545083e/context.go#L575), which decodes query params from a request into a struct, so long as the incoming...

From a logical standpoint, I believe it is clearer and better aligned with Kubernetes' security primitives to associate IAM credentials with a service account, rather than directly with a Pod....