Vito Botta

Results 140 comments of Vito Botta

Weird, I have never added my SSH key to keychain and I have never been able to reproduce these issues. So annoying.... Tomorrow (time permitting) I will try to produce...

I actually did a release already, 0.6.4, which allows you to enable debug logging for SSH connections by setting the environment variable to true ```bash export SSH_DEBUG=true ``` Run this...

@Privatecoder @codeagencybe are you using keys with a passphrase?

I don't know, but the weird thing is that if I use the Ruby gem instead of the standalone binary, I don't get the error about dependencies.

Can you please try with the Ruby gem instead of the binaries, and without that workaround you found? I want to see if you get the same problem with the...

Thanks, looking forward to an update!

On M1 it's in /opt/homebrew/bin/hetzner-k3s - on Intel it's somewhere in /usr/local/

I got it working by 1. commenting out the line ```ruby fail "Resource #{api_resource.name} is not namespaced" unless api_resource.namespaced || !namespace ``` 2. making this small change to the `path`...

Hi @jakolehm I'm doing this: ```ruby manifest = HTTP.follow.get("https://raw.githubusercontent.com/hetznercloud/csi-driver/v1.5.3/deploy/kubernetes/hcloud-csi.yml").body File.write("/tmp/csi-driver.yaml", manifest) resources = K8s::Resource.from_files("/tmp/csi-driver.yaml") begin kubernetes_client.api("apps/v1").resource("daemonsets").get("hcloud-csi-node", namespace: "kube-system") resources.each do |resource| begin kubernetes_client.update_resource(resource) rescue K8s::Error::Invalid => e raise e unless...

Hi! I just switched to this version of the gem while also updating Ruby to 2.7.1 (I know I should avoid multiple changes at the same time..). I am seeing...