Hi i have a question when it comes to k8s and handling branches
my namespaces have the following :
- an API deployment
- a
NodePort
service mapping the port3000
of the deployment to port80
- a
postgres
instance to serve as a DB (Not important for this problem) - an
Ingress
exposing all
I would like to find a way that would make it able to :
- When creating a new Branch, it makes my backend accessible to api.BRANCH_NAME.domain.com
I'm not able to find any documentation helping, I've tried a lot of things so far but cannot make it work
Here's a repo to see what I have so far : https://github.com/girards/tracks
Thanks in advance