I have 2 services that I deploy in a single pod with 2 containers. One is in go, the other is in node. They communicate with each other inside the pod via localhost http calls. One of them has an exposed port and api routes used for outside communication.
I would like to use okteto for development, but I can’t see in the documentation if a multi-container manifest is supported.
I do not really want to do a build step at all. I want to:
deploy my base image for go in one container, my base image for node in the other container,
sync up a configmap for them both to use,
sync one directory for my go source into my go service container
sync the directory for my node source int my node service container
then run go run cmd/main.go
in the go containter and npm start
in the other container.
Is this a use case that okteto is lacking right now? From what I’m seeing, it looks like okteto runs on the concept of one service per pod.
Thank you.