2b

Results 10 comments of 2b

Workaround - change $TMPDIR variable to something shorter. It's not necessary to change it globally, just change it for current shell session: ```shell TMPDIR=/tmp; open /Applications/scap-workbench.app ```

As a workaround you can add wrapper for RestClient::Request class into `lib/vagrant-proxmox/proxmox/connection.rb`: ```ruby module RestClient class Request orig_initialize = instance_method(:initialize) define_method(:initialize) do |args| args[:verify_ssl] = false orig_initialize.bind(self).(args) end end end...

Hi, I had exactly the same goal, and generating daemonset without the `--taint` flag lets achieve that. Tested with the latest version 0.6.2 - no kube-vip pods on control plane...

I would like to add that this future is crucial for running eBPF programs relying on Linux kernel tracepoints, like kubeshark, due to the need to mount tracefs on /sys/kernel/tracing...

I can confirm, version 4.0.2 (375) doesn't tolerate ssh hosts from "Include" directives.

Version 4.3.0 (391) still has this bug. @huyphams any plans on fixing this?

Hi! Thank you for the fix! Maybe this should be fixed at the `package.nix` level, if it's NixOS-specific. What do you think? In the meantime, here is a Nix overlay...

I've found workaround for such issue by setting `--render-driver=opengl`

@SoumyaRaikwar , thanks a lot for handling this bug fix. @achrefbensaad , I hope I'm not being too pushy, but I wanted to check if there have been any updates...