Run testcontainers remotely in Rancher cluster

0

I have Spring boot test with testcontainers and I can run test locally from idea and in this case containers will run locally in Rancher desktop and test is work . Also we have Rancher cluster where running our microservices. I want that testcontainers running remotely in Rancher cluster.

I have found settings for testcontainers:

docker.client.strategy=org.testcontainers.dockerclient.EnvironmentAndSystemPropertyClientProviderStrategy

docker.host=tcp://dockerHost:1234
docker.tls.verify=1
docker.cert.path=/home/cert

But help me please Where I can found in Rancher web UI this parameters? Do I Need to do something additionally in Rancher? If I understand correctly I need IP running docker/rancher demon?

Thanks!