Rancher desktop custom podCIDR

Hi all,

I am using rancher desktop 1.9.0

Is it possible to change the IP of the node and the IP range of the pods for the created cluster? The current 10.x range conflicts with other servers, so I would like to use something in the 192.168.0.0 range.

In case someone stumbles upon this, I managed to get it to work on windows with the use of Provisioning Scripts | Rancher Desktop Docs.

What I have done is add a file named k3s.start in the following location %appdata%\rancher-desktop\provisioning with the contents below

#!/bin/sh
echo 'K3S_EXEC="--cluster-cidr=192.168.111.0/24 --service-cidr=192.168.112.0/24 --cluster-dns=192.168.112.10"' > /etc/environment