Cyrill Troxler

Results 32 comments of Cyrill Troxler

One workaround I have found that works with 0.10.1 is the following in `.skhdrc`: ``` # instead of just `alacritty` or `/opt/homebrew/bin/alacritty` cmd - return : /Applications/Alacritty.app/Contents/MacOS/alacritty ```

Hard to say what the initial intention was, but my best guess is that it was being reused to inherit the `IdleConnTimeout` timeout set [here](https://github.com/nytimes/gcp-vault/blob/master/account_gcp.go#L64). But in general I think...

No worries! Yes exactly, the change in #23 makes sure the whole `http.Client` is not reused but still reused the base transport (`Base: hc.Transport,`), which contains the cert store and...

Thanks a lot for the PR! Looking good as far as I can see, I'm guessing `attrib` contains the storageclass parameters? https://github.com/ctrox/csi-s3/blob/b54578fc3ea647226d9338a87e2c4f41a8faef5f/pkg/s3/nodeserver.go#L73 This was not used before and just logged...

Just adding another use case here, in [csi-s3](https://github.com/ctrox/csi-s3) you might setup a `StorageClass` that mounts a bucket from AWS S3 and another one which uses DigitalOcean. As they both have...

I don't think the cause here is the docker MountFlags, that would result in a different error. Even though your DNS resolution seems to work in the provisioner pod, I...

Really hard to say, the driver should not be messing with DNS. Can you exec into one of the `csi-s3` daemonset pods and `cat /etc/resolv.conf`? Also, which mounter are you...

I do not have any experience with DigitalOcean myself but it should just depend on what [Kubernetes/CSI version](https://kubernetes-csi.github.io/docs/introduction.html#kubernetes-releases) is supported. If they already support Kubernetes 1.13 I can recommend you...

Ah right, their storage should be interoperable with the S3 API so it should "just work". Have you tried just setting access/secret keys and the endpoint to e.g. `nyc3.digitaloceanspaces.com` while...