Hi, I'm trying to build a CD pipeline with Dagger.
I have created a Helm chart to deploy everything (frontend, backend and database). I create a Kind cluster (configured to use ingress) inside a Dagger container to deploy de charts in it. I have an ingress per service (frontend and backend). Locally, in my machine, I can configure the /etc/hosts file to resolve the custom urls as local, but inside de container I can't because it says that the filesystem is read-only.
Even if I could config the /etc/hosts I don't know if I would be able to access it. I found that there is a Host type, but I can't make it work. It's like it doesn't exist. I do dag.Host() or dagger.Connect().Host() and it says that this function doesn't exist.
I tried port-fordwarding the frontend and backend services, but the problem is that, when I access the frontend service in my browser, this is the one who makes the call to the backend, looking for the url specified by its ingress, so it does not find it.
My repository is private because is part of my Bachelor's Thesis. If there is any need of specification about the code, I would have no problem to share it through this chat.
Is there any workaround for this?
