Julian Taylor

Results 47 comments of Julian Taylor

you can use the `sys/internal/ui/mounts/$realpath` to determine the type of secret engine used for a key-value type path (does not work for e.g. auth/ paths). You automatically have rights to...

Some code example I have been using for autodetection so it works the same way as `vault kv get $path` does: ``` MOUNT_INFO_PATH = sys/internal/ui/mounts" def _get_kv_path(self, path): """ adapt...

In addition to changing `docker_command` to `dockerd`, you also need to override `daemon_subcommand` to an empty string to get a correct service file override. See https://github.com/garethr/garethr-docker/blob/master/templates/etc/systemd/system/docker.service.d/service-overrides-debian.conf.erb

we are seeing the same thing with version `0.12.3` and `max_send_limit_bytes` far below kafkas limit. the `kafka_buffered` type works fine

thanks setting the chunk_limit_size does work, this should probably be added to the README documentation, `MessageSizeTooLarge` is only mentioned together with `max_send_limit_bytes` but with: ``` max_send_limit_bytes 100000 chunk_limit_size 1000000 ```...

when the issues marked the pull request are fixed it compiles. Although one still needs an explicit link against libboost_system on debian/ubuntu as boost::system::system_category is added by some header. But...

I do think so, the annotations provide no value and there are lot of them. You have two for every single pod and replicaset in the cluster. In our clusters...

As for it being breaking, technically true, but you are requesting the metric to not be produced by not allowing any annotations or label metrics. I doubt someone would then...

Alternatively a new dumping command similar to `hook snapshot` which would dump the required binding context json of a hook so one can run the hook manually from it without...

Correct, -mavx2 allows the compiler to place avx2 code into whatever place it likes. This piece of code looks like it compiles in avx2 unconditionally, though I am not familiar...