cztk
cztk
My goal is to improve lifetime for ssd/nvme based systems with lots of data beeing written to. Sure there may be some 3rd party software to work around this, however...
Maybe I'm just too stoopid but $hetznerClient->loadBalancers()->getByName(); also ByID both throw PHP Fatal error: Uncaught TypeError: LKDev\HetznerCloud\Models\LoadBalancerTypes\LoadBalancerType::__construct(): Argument #3 ($deprecated) must be of type string, null given
This can't be meant how it's to be used is it? ```php $lb = $hetznerClient->loadBalancers()->getByName('...'); foreach($lb->targets as $target) { $ip = new LoadBalancerTargetIp($target->ip->ip); $lb->removeTarget('ip', $ip); } ``` Same for addTarget...