Norbert Csibra

Results 18 comments of Norbert Csibra

Hi, I have the same issue, using AWS EKS. EKS version: 1.21 Vault version: 1.5.4 Cert manager version: 1.5.3 First, here's the relevant configs/tokens: Vault: ``` / $ vault read...

@maelvls In our case, we're using an OIDC provider to connect IAM users with serviceAccounts, so we can give specific permissions to every pod if necessary, [described here](https://docs.aws.amazon.com/eks/latest/userguide/iam-roles-for-service-accounts-technical-overview.html). I assume...

I'm facing the same problem, using this lib to make changes on multiple git repo and it sometimes using the gitignore file in the root and sometimes not and pushing...

@pospielov Do you have any ETA for 1.0.0?

I agree with this issue, we had a goroutine/memory leak, because the TCP connections were kept alive, but the client was not reused, so the resources weren't freed on the...

Hi, I know it's an old issue, but I think my question is related. :) What is the correct approach to set an stdlib context to the gentleman request without...

No, that just helped to compile without Makefile hack. I figured out one thing since, if I copy the 'leveldb.dll' to ruby bin dir and run the sample script from...

There is no ldd in mingw, but I used this: `objdump.exe -p leveldb_native.so | grep 'DLL Name:'` Output: ``` DLL Name: leveldb.dll DLL Name: kernel32.dll DLL Name: msvcrt.dll DLL Name:...

Sorry, copy-paste error, `libgcc_s_dw2-1.dll` missed too, corrected previous post. I'm checking other alternatives too, but there is not too much embedded nosql db, which has a windows binary and a...

It's basically says that running native extensions in windows is sucks, use linux, if not then add the devkit to your path, which is a solution if the machine has...