Ilya Dmitrichenko

Results 119 issues of Ilya Dmitrichenko

It'd be nice to be able to validate certain file types, e.g. shared objects, dynamically linked executables, static executables, and executables for different architectures. It's currently possible to do with...

enhancement
help wanted

The nature of some of the functionality that `cilium` program implements, is often very procedural, however that shouldn't imply that all of the logic around API interactions is also procedural....

First follow-up to https://github.com/docker/swarmkit/pull/3046#issuecomment-989982399

We could make good use of events API to provide information to the user, especially in cases of errors, but also inform/remind that services of type `NodePort` or `LoadBalancer` are...

The following file works fine with Docker: ```YAML version: '2' services: front-end: image: weaveworksdemos/front-end hostname: front-end restart: always edge-router: image: weaveworksdemos/edge-router ports: - '80:80' hostname: edge-router restart: always catalogue: image:...

I just started getting this repeatedly on macOS: ``` FATA[0026] could not watch local filesystem for changes: open /Users/ilya/Code/nodejs-prometheus-demo/.git/objects/15: too many open files ``` Perhaps we can limit files to...

bug
area/client
os/linux
os/macos

here is an interesting example to consider for inspirations – https://openap.is/

It would be convenient to take an object (e.g. one read from an imported file), and use only a part of it. ```yaml kubegen.Object.Select([0]["something"]): kubegen.Array.ImportFromFile: "stuff.json" ```

Consider the following snippet: ```YAML kubegen.String.Join: - kubegen.String.Lookup: images/ide-basename - '@sha256:' - kubegen.String.Lookup: images/ide-digest ``` This could be much shorter and still readable, e.g.: ```YAML kubegen.String.Join: [{.Lookup: images/ide-basename}, '@sha256:' {.Lookup:...

Right now we have something like: ```YAML Kind: kubegen.k8s.io/Module.v1alpha2 Parameters: - Name: images/ide-basename Type: String Default: errordeveloper/k9c - Name: images/ide-digest Type: String Default: ad69086ac28b91c745ecd8be2d21e1f1630d81c9eeb6967338c9f73794780475 - Name: namespaces/ide Type: String Default:...