Configure Reverse Port-Forwarding
Reverse port-forwarding allows you to forward traffic from within your containers to your local machine. This can be useful when:
- using certain remote debuggers that connect to your IDE instead of the other way around
- developing a service on localhost which should be accessed from other services that run within the cluster, i.e. using the Telepresence development model but with DevSpace to get better performance and cross-platform support
With reverse port-forwarding, you can access localhost:[PORT]
inside the container and it will redirect to a program that runs on your local dev machine.
When starting the development mode, DevSpace starts reverse port-forwarding as configured in the dev.ports
section of the devspace.yaml
.
images:
backend:
image: john/devbackend
backend-debugger:
image: john/debugger
deployments:
- name: app-backend
helm:
componentChart: true
values:
containers:
- image: john/devbackend
- image: john/debugger
dev:
ports:
- imageSelector: john/devbackend
forward:
- port: 8080
remotePort: 80
reverseForward:
- port: 5678
remotePort: 5678
- port: 3303
The remotePort
option must be unique across your entire ports
section for all selectors that match the same pods, e.g. you can only use the value 8080
once for the remotePort
option in your ports
section unless multiple port mappings target different pods.
Every reverse port-forwarding configuration consists of two parts:
Configuration
name
The name
option is optional and expects a string stating the name of this reverse port-forwarding configuration. This can be used as a steady identifier when using profile patches or to override the log message prefix for this port configuration.
For example:
dev:
ports:
- name: devbackend
imageSelector: john/devbackend
reverseForward:
- port: 8080
remotePort: 80
profiles:
- name: production
patches:
- op: replace
path: dev.ports.name=devbackend.imageSelector
value: john/prodbackend
Pod Selection
The following config options are needed to determine the pod from which the traffic should be forwarded to localhost:
If you specify multiple of these config options, they will be jointly used to select the pod / container (think logical AND / &&
).
If DevSpace is unable to establish a reverse port-forwarding connection to the selected pod or loses it after starting the reverse port-forwarding, DevSpace will try to restart reverse port-forwarding several times.
imageSelector
The imageSelector
option expects a string that specifies an image (e.g. my-registry.com/lib/my-image:tag
) to select a target pod and container with. The newest running pod that has a container which matches this image will be selected by DevSpace.
In addition, you can also reference images from the images
section in the imageSelector
with:
- If the image in
imageSelector
matches aimages.*.image
, DevSpace will automatically append the latest built tag during runtime to theimageSelector
. - You can also let DevSpace resolve the target image and tag by using runtime variables
${runtime.images.IMAGE_NAME}
,${runtime.images.IMAGE_NAME.image}
or${runtime.images.IMAGE_NAME.tag}
For example:
images:
app:
image: my-registry.com/lib/my-image
dev:
...
# DevSpace will search for the newest pod with a container that
# uses my-registry.com/lib/other-image:latest
- imageSelector: my-registry.com/lib/other-image:latest
# DevSpace will search for the newest pod with a container that
# uses my-registry.com/lib/my-image:xxxxx (latest built tag by DevSpace)
- imageSelector: my-registry.com/lib/my-image
# DevSpace will search for the newest pod with a container that
# uses my-registry.com/lib/my-image:xxxxx (latest built tag by DevSpace)
- imageSelector: ${runtime.images.app}
# DevSpace will search for the newest pod with a container that
# uses my-registry.com/lib/my-image:custom-tag
- imageSelector: ${runtime.images.app.image}:custom-tag
# DevSpace will search for the newest pod with a container that
# uses my-registry.com/lib/my-image:xxxxx (latest built tag by DevSpace)
- imageSelector: ${runtime.images.app.image}:${runtime.images.app.tag}
# DevSpace will search for the newest pod with a container that
# uses the image of app of dependency dep1 with the latest built tag by DevSpace
- imageSelector: ${runtime.dependencies.dep1.images.app.image}:${runtime.dependencies.dep1.images.app.tag}
Example: Select Pod by Image
images:
backend:
image: john/devbackend
backend-debugger:
image: john/debugger
deployments:
- name: app-backend
helm:
componentChart: true
values:
containers:
- name: container-0
image: john/devbackend
- name: container-1
image: john/debugger
dev:
ports:
- imageSelector: john/devbackend
reverseForward:
- port: 8080
remotePort: 80
- imageSelector: john/debugger
reverseForward:
- port: 3000
Explanation:
- The above example defines two images that can be used as
imageSelector
:john/devbackend
andjohn/debugger
- The deployment starts two containers and each of them uses an image from the
images
section. - The
imageSelector
option of the first reverse port-forwarding configuration in thedev.ports
section referencesbackend
. That means DevSpace would select the first container for reverse port-forwarding, as this container uses theimage: john/devbackend
which belongs to thebackend
image as defined in theimages
section. - The
imageSelector
option of the second reverse port-forwarding configuration in thedev.ports
section referencesbackend-debugger
. That means DevSpace would select the second container for reverse port-forwarding, as this container uses theimage: john/debugger
which belongs to thebackend-debugger
image as defined in theimages
section.
In consequence, the following reverse port-forwarding processes would be started when using the above config example:
localhost:80
inside the container will forward tolocalhost:8080
on your local machinelocalhost:3000
inside the container will forward tolocalhost:3000
on your local machine
labelSelector
The labelSelector
option expects a key-value map of strings with Kubernetes labels. This can be used to select the correct target pod with labels instead of the image name like imageSelector
or imageName
. If the pod you want to select has multiple containers, make sure to use containerName
as well.
Example: Select Pod by Label
images:
backend:
image: john/devbackend
backend-debugger:
image: john/debugger
deployments:
- name: app-backend
helm:
componentChart: true
values:
containers:
- name: container-0
image: john/devbackend
- name: container-1
image: john/debugger
dev:
ports:
- labelSelector:
app.kubernetes.io/name: devspace-app
app.kubernetes.io/component: app-backend
custom-label: custom-label-value
reverseForward:
- port: 8080
remotePort: 80
Explanation:
- The
labelSelector
would select the pod created for the component deploymentapp-backend
. - Because containers in the same pod share the same network stack, we do not need to specify which container should be selected.
containerName
The containerName
option expects a string with the name of the container to use within the pod selected by labelSelector
. This option is not required if imageName
is used or there is only one container inside the selected pod.
namespace
The namespace
option expects a string with a Kubernetes namespace used to select the pod from.
It is generally not needed (nor recommended) to specify the namespace
option because, by default, DevSpace uses the default namespace of your current kube-context which is usually the one that has been used to deploy your containers to.
Port Mapping reverseForward
The reverseForward
section defines which remotePort
inside the selected container should be forwarded to the port
on your local machine.
By default, remotePort
will take the same value as port
if remotePort
is not explicitly defined.
port
The port
option is mandatory and expects an integer from the range of user ports [1024 - 49151].
Using a port
< 1024 is likely to cause problems as these ports are reserved as system ports.
Example
See "Example: Select Pod by Image Name"
remotePort
The remotePort
option expects an integer from the range of valid ports [0 - 65535].
By default, remotePort
has the same value as port
if remotePort
is not explictly defined.
Example
See "Example: Select Pod by Image Name"
bindAddress
The bindAddress
option expects a valid IP address that the local port should be bound to.
Default Value For bindAddress
bindAddress: "0.0.0.0" # listen on all network interfaces
Container Architecture
arch
Arch specifies which DevSpace helper architecture should be used for the container. Currently valid values are either no value, amd64
or arm64
. Depending on this value, DevSpace will inject the DevSpace helper binary with the corresponding architecture suffix.