What I want:
Build Docker images with a Node JS app that runs on a kubernetes cluster
What I have so far:
I have created a dagger engine DaemonSet with this command:
helm upgrade --create-namespace --install --namespace dagger dagger oci://registry.dagger.io/dagger-helm
In a different namespace I have a deployment of my Node JS app that automatically builds images with dagger.
I would like the Node JS app to communicate with the separate dagger engine. (does this even make sense?) so the builds are executed in the separated pod.
I think I would have to use the _EXPERIMENTAL_DAGGER_RUNNER_HOST variable but Im not sure how.
Thx for your thoughts and help!
Feel free to ask me any questions about my setup if you need more details.