Vladislav Shub
Vladislav Shub
currenly the extension is added to the end of the path string but results in: `http://example.com/1?a=b.json` this fix sets the extension in it's correct path `http://example.com/1.json?a=b`
If we would take for example a kube object [Pod](https://github.com/kubernetes/api/blob/master/core/v1/types.go#L3939) it has `ObjectMeta` as an embedded field but if we render it via `json.Marshal` we would get a nice `metadata`...
A way to manage message de-duplication in grabbit. Implementation details: * Each instance would set its own policy, it can be the default - None, reject duplicates - Reject and...
Solve issue #158 Disconnects rabbitmq and allows the addition of kafka or any other transport.
Support plays framework play.http.context which allows use of different base path for example `tools.example.com/broccoli` as base path and the api requests should go to `/broccoli/api/v1` fixes #368
This is a rebased PR #20
Added `git config --global --add safe.directory $CLONE_DIR`
It seems that absolute path validation in this section is a little redundant. As long as there is a check that the directory exists.
Fixing issue with `parseHelmChart`. Example: ```jsonnet local kubecfg = import "kubecfg.libsonnet"; local data = { "25.27.0": importbin "./prometheus-25.27.0.tgz", }; { _config:: { version: "25.27.0", }, values:: { alertmanager: { enabled:...