Rohit Agarwal

Results 16 comments of Rohit Agarwal

Can you verify that https://github.com/GoogleCloudPlatform/k8s-node-termination-handler/blob/master/deploy/rbac.yaml#L35 is correctly applied on your cluster?

Yes, that's why it's marked as a Gauge and not as a Counter. Unfortunately, the NVML API doesn't provide counter like values.

You can potentially use https://github.com/mindprince/gonvml/blob/b364b296c7320f5d3dc084aa536a3dba33b68f90/bindings.go#L250-L266 but that would make the exporter more complicated.

Hey @rbarham, Please feel free to send a PR. Otherwise we also get someone to look into it. cc - @vrajat

Should https://github.com/aws/aws-sdk-go-v2/blob/e4f0cba14e534e673c643841b1cd140c9470d85b/service/ec2/api_op_DescribeInstances.go?rgh-link-date=2022-09-29T17%3A48%3A57Z#L1299 which is used in https://github.com/aws/aws-sdk-go-v2/blob/e4f0cba14e534e673c643841b1cd140c9470d85b/service/ec2/api_op_DescribeInstances.go?rgh-link-date=2022-09-29T17%3A48%3A57Z#L1318 use `maxWaitDur` as the context timeout for a particular request? I wonder if it would be better if the per request timeout is...

I encountered that same issue. I found a workaround for it: copying `/usr/lib/libtidy.dylib` to the directory from where I am running the python program. ``` cp /usr/lib/libtidy.dylib . ```

The error in VSCode also goes away when I do: - Command Shift P and then - Search for `Developer: Reload Window` and press Enter

> You can inspect the `gopackagesdriver` payload by running this command > `echo {} | ./tools/gopackagesdriver.sh file=platform/pkg/myfile.go` I had checked that and it had generated some valid json (that `jq`...

Perhaps. Though this is not an issue with regular non-bazel go tooling.

There's definitely a lot of chatter in the `gopls (server)` logs after I set the following in my settings.json file: ``` "go.languageServerFlags": [ "-rpc.trace" ], ``` Including messages like: ```...