Julian Tölle
Julian Tölle
> root cause: I remember seeing some code in the driver along the lines of "if this is already attached then exit". Yea, this is the behaviour defined by the...
DO also returns the [`codes.FailedPrecondition`](https://github.com/digitalocean/csi-digitalocean/blob/d13815c14ae8be24f980d14777a56c89cebd5bdc/driver/controller.go#L341-L359) if the volume is already mounted: ```go attachedID := 0 for _, id := range vol.DropletIDs { attachedID = id if id == dropletID {...
Hey, this was changed in #269, so we can remove access to the Hetzner Cloud API from the daemon set. We would prefer to keep the daemon set ("node" binary)...
Oh, forgot to mention. The Server ID and Location, which are the two fields retrieved from the Metadata Service are used in the response to `NodeGetInfo`: https://github.com/hetznercloud/csi-driver/blob/cbb7750af17224e256fcb62da5358a9743080a9f/driver/node.go#L194-L205
> One other somewhat hacky idea: we could do the metadata API lookup in a small initContainer that uses hostNetwork: true and then pass that information along to the main...
Hey @mrclrchtr, no specific reason, we usually try to publish new releases if anyone asks for it or if there is a bunch of unreleased PRs. This one fell through...
The release job failed: #611
Setting the group ownership is part of the [`csi-spec`](https://github.com/container-storage-interface/spec/blob/master/spec.md) through the capability `VOLUME_MOUNT_GROUP`. We do not yet support this capability.
What do you mean by life-cycle? This is unrelated to Docker Swarm support, and can be implemented in parallel. I do not know whether the docker swarm CSI implementation supports...
No problem ;) The csi-spec describes this, you can search for `VOLUME_MOUNT_GROUP` to find the docs for it. Another source that describes this is the `kubernetes-csi` book, and while it...