memorycassandracpukubernetes-servicekind

What is the equivalent command of "minikube start --memory 5120 --cpus=4" for "Kind"?


Here in Cassandra deployment instruction, it says:

Caution:

Minikube defaults to 2048MB of memory and 2 CPU. Running Minikube with the default resource configuration results in insufficient resource errors during this tutorial. To avoid these errors, start Minikube with the following settings:

minikube start --memory 5120 --cpus=4

But I don't know what is the equivalent command if I use Kind instead of minikube?

I also like to know if I want to set these settings permanently for my Kind cluster, how should I do that?


Solution

  • kind does not work like minikube, it inherit the resources from the host. If you want to limit the resources then create an vm with specified limit and create kind cluster in it. You can check similar discussion on this thread