Skip to main content
Version: 5.x

Configure File Synchronization

The code synchronization feature of DevSpace allows you to use hot reloading during development. Especially when using programming languages and frameworks that support hot reloading with tools like nodemon, re-building and re-deploying containers is very annoying and time consuming. Therefore, DevSpace uses a smart syncing mechanism that is able to sync local file changes to remote containers directly without the need of rebuilding or restarting the container.

When starting the development mode, DevSpace starts the file sync as configured in the dev.sync 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:
sync:
- imageSelector: john/devbackend
localSubPath: ./
containerPath: /app
excludePaths:
- node_modules/
- logs/
Start Sync Only

To only start the file sync without the other functions of the development mode, use devspace sync or devspace sync --config=devspace.yaml (to load the config).

Every sync configuration consists of two essential parts:

Configuration

name

The name option is optional and expects a string stating the name of this sync configuration. This can be used as a:

  • Steady identifier when using profile patches
  • When targeting this sync configuration with the before or after initial sync hook
  • To override the log message prefix for this sync configuration.

For example:

dev:
sync:
- name: devbackend
imageSelector: john/devbackend
localSubPath: ./
containerPath: /app
excludePaths:
- node_modules/
- logs/
hooks:
- events: ["after:initialSync:devbackend"]
command: |-
/app/rebuild.sh
container:
imageSelector: john/devbackend

Pod/Container Selection

The following config options are needed to determine the container which the file synchronization should be established to:

Auto Reconnect

If the sync is unable to establish a connection to the selected container or loses it after starting the sync, DevSpace will try to restart the sync 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 a images.*.image, DevSpace will automatically append the latest built tag during runtime to the imageSelector.
  • 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 Container by Image

vars:
- name: backend-image
value: john/devbackend
- name: backend-debugger-image
value: john/debugger
images:
backend:
image: ${backend-image}
backend-debugger:
image: ${backend-debugger-image}
deployments:
- name: app-backend
helm:
componentChart: true
values:
containers:
- name: container-0
image: ${backend-image}
- name: container-1
image: ${backend-debugger-image}
dev:
sync:
- imageSelector: ${backend-image}
excludePaths:
- node_modules/
- logs/
- imageSelector: ${backend-debugger-image}
localSubPath: ./debug-logs
containerPath: /logs

Explanation:

  • The above example defines two images that can be used as imageSelector: john/devbackend or john/debugger
  • The deployment starts two containers and each of them uses an image from the images section.
  • The imageSelector option of the first sync configuration in the dev.sync section references the same image as images.backend. That means DevSpace would select the first container for file synchronization, that would match john/devbackend:tag(backend), where tag(backend) is the last built tag of images.backend
  • The first sync configuration does not define localSubPath, so it defaults to the project's root directory (location of devspace.yaml).
  • The first sync configuration does not define containerPath, so it defaults to the container's working directory (i.e. WORKDIR).
  • The imageSelector option of the second sync configuration in the dev.sync section references the same image as images.backend-debugger. That means DevSpace would select the second container for file synchronization, as this container uses the image: john/debugger which belongs to the backend-debugger image as defined in the images section.

In consequence, the following sync processes would be started when using the above config example assuming the local project root directoy /my/project/:

  1. localhost:/my/project/ forwards to container-0:$WORKDIR *
  2. localhost:/my/project/debug-logs/ forwards to container-1:/logs

* Changes on either side (local and container filesystem) that occur within the sub-folders node_modules/ and logs/ would be ingored.

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 Container 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:
sync:
- labelSelector:
app.kubernetes.io/name: devspace-app
app.kubernetes.io/component: app-backend
custom-label: custom-label-value
containerName: container-0
localSubPath: ./src
containerPath: /app/src

Explanation:

  • The labelSelector would select the pod created for the component deployment app-backend.
  • Because the selected pod has two containers, we also need to specify the containerName option which defines the container that should be used for the file synchronization.

containerName

The containerName option expects a string with a container name. This option is used to decide which container should be selected when using the labelSelector option because labelSelector selects a pod and a pod can have multiple containers.

info

The containerName option is not required if the pod you are selecting using imageName or labelSelector has only one container.

Example

See "Example: Select Container by Label"

namespace

The namespace option expects a string with a Kubernetes namespace used to select the container from.

danger

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.


Sync Path Mapping

localSubPath

The localSubPath option expects a string with a path that is relative to the location of devspace.yaml.

Default Value For localSubPath

localSubPath: ./ # Project root directory (folder containing devspace.yaml)

Example

See "Example: Select Container by Image Name"

containerPath

The containerPath option expects a string with an absolute path on the container filesystem.

Default Value For containerPath

containerPath: $WORKDIR # working directory, set as WORKDIR in the Dockerfile

Example

See "Example: Select Container by Image Name"


Exclude Paths

The config options for excluding paths use the same syntax as .gitignore.

note

An exclude path that matches a folder recursively excludes all files and sub-folders within this folder.

excludePaths

The excludePaths option expects an array of strings with paths that should not be synchronized between the local filesystem and the remote container filesystem.

Default Value For excludePaths

excludePaths: [] # Do not exclude anything from file synchronization

Example: Exclude Paths from Synchronization

images:
backend:
image: john/devbackend
deployments:
- name: app-backend
helm:
componentChart: true
values:
containers:
- image: john/devbackend
dev:
sync:
- imageSelector: john/devbackend
excludePaths:
- logs/
- more/logs/
uploadExcludePaths:
- node_modules/
downloadExcludePaths:
- tmp/

Explanation:

  • Files in logs/ and in more/logs/ would not be synchronized at all.
  • Files in node_modules/ would only be synchronized from the container to the local filesystem but not the other way around.
  • Files in tmp/ would only be synchroniyed from the local to the container filesystem but not the other way around.

Example: Only Sync Specific Folders

images:
backend:
image: john/devbackend
deployments:
- name: app-backend
helm:
componentChart: true
values:
containers:
- image: john/devbackend
dev:
sync:
- imageSelector: john/devbackend
excludePaths:
- '**'
- '!/my-folder-1/'
- '!/my-folder-2/'

Explanation:

  • All files will be excluded except those in folders ./my-folder-1/ and ./my-folder-2/

excludeFile

The excludeFile option expects a path to a file from which the exclude paths can be loaded. Once loaded, the behavior is identical to the excludePaths option. This is useful for sharing a common list of exclude paths between many components. The earlier example, Exclude Paths from Synchronization, can be converted to files as follows:

Example: Exclude Paths from Synchronization using files

images:
backend:
image: john/devbackend
deployments:
- name: app-backend
helm:
componentChart: true
values:
containers:
- image: john/devbackend
dev:
sync:
- imageSelector: john/devbackend
excludeFile: .gitignore
uploadExcludeFile: upload.gitignore
downloadExcludeFile: download.gitignore

Example: .gitignore

log/
more/logs/

Example: upload.gitignore

node_modules/

Example: download.gitignore

tmp/

downloadExcludePaths

The downloadExcludePaths option expects an array of strings with paths that should not be synchronized from the remote container filesystem to the local filesystem.

Default Value For downloadExcludePaths

downloadExcludePaths: [] # Do not exclude anything from file synchronization

Example

See "Example: Exclude Paths from Synchronization"

downloadExcludeFile

The downloadExcludeFile option expects a path to a file from which the exclude paths can be loaded. These paths should not be synchronized from the remote container filesystem to the local filesystem.

Default Value For downloadExcludeFile

downloadExcludeFile: "" # Do not load exclude paths from a file

Example

See "Example: Exclude Paths from Synchronization using files"

uploadExcludePaths

The uploadExcludePaths option expects an array of strings with paths that should not be synchronized from the local filesystem to the remote container filesystem.

info

This option is often useful if you want to download a dependency folder (e.g. node_modules/) for code completion but you never want to upload anything from there because of compiled binaries that are not portable between local filesystem and container filesystem (e.g. when your local system is Windows but your containers run Linux).

Default Value For uploadExcludePaths

uploadExcludePaths: [] # Do not exclude anything from file synchronization

Example

See "Example: Exclude Paths from Synchronization"

uploadExcludeFile

The uploadExcludeFile option expects a path to a file from which the exclude paths can be loaded. These paths should not be synchronized from the local filesystem to the remote container filesystem.

Default Value For uploadExcludeFile

uploadExcludeFile: "" # Do not load exclude paths from a file

Example

See "Example: Exclude Paths from Synchronization using files"


Post-Sync Commands

Sometimes it is useful to execute commands after the sync uploads files/directories between the local filesystem and the container.

danger

Make sure that post-sync commands will not trigger a new sync process which could lead to an endless loop.

onUpload.restartContainer

The restartContainer option expects a boolean which defines if DevSpace should restart the container every time either a single file or even a batch of files have been uploaded to the container using file sync.

Restart Helper Required

Setting restartContainer: true requires to set injectRestartHelper: true for the image that is used to run the affected container. Otherwise, this option does not have any effect.

When not to use this option

Using restartContainer: true is most useful if your application runs based on a compiled language and you are not using a framework or language specific tool which provides hot reloading capabilities. If you are using tools like nodemon or frameworks like React, Rails or Flask, they allow you to enable hot reloading which may be much faster than restarting the entire container. In this case you should disable restartContainer.

Example: Enable Container Restart

images:
backend:
image: john/devbackend
injectRestartHelper: true
deployments:
- name: app-backend
helm:
componentChart: true
values:
containers:
- image: john/devbackend
dev:
sync:
- imageSelector: john/devbackend
onUpload:
restartContainer: true

onUpload.exec

The onUpload.exec option defines command(s) that should be executed after DevSpace uploaded files and folder to the container. DevSpace will make sure that those commands are not executed while initially syncing the state and command execution will also halt any syncing activities.

If this is defined together with onUpload.restartContainer, DevSpace will make sure that the commands are always executed before the container is restarted.

Example: Post-Upload Commands

images:
backend:
image: john/devbackend
deployments:
- name: app-backend
helm:
componentChart: true
values:
containers:
- image: john/devbackend
dev:
sync:
- imageSelector: john/devbackend
onUpload:
# These post-sync commands will be executed after DevSpace synced changes to the container in the given order
exec:
- name: npm-install
command: |-
npm install
onChange: ["./package.json"]
- command: |-
echo 123 > local.txt
local: true # Execute this command locally instead of in the container
- command: "touch abc.txt" # string | Command that should be executed after DevSpace made changes
args: [] # string[] | Optional args that will force DevSpace to not execute the command in a shell
failOnError: false # bool | If true, DevSpace will restart the sync if the command fails (default: false)
local: false # bool | If true, DevSpace will run the command locally instead of in the container (default: false)
onChange: ["package.json"] # string[] | Optional array of file patterns that will trigger this command

One-Directional Sync

These flags allow for local or remote container file systems to be ignored during synchronization.

disableDownload

The disableDownload option expects a boolean which enables/disables all synchronization from the remote container filesystem to the local filesystem.

Default Value For disableDownload

disableDownload: false # Do not ignore remote container files during synchronization

Example: Synchronize Local Filesystem Only

images:
backend:
image: john/devbackend
deployments:
- name: app-backend
helm:
componentChart: true
values:
containers:
- image: john/devbackend
dev:
sync:
- imageSelector: john/devbackend
disableDownload: true
excludePaths:
- logs/
- more/logs/
uploadExcludePaths:
- node_modules/

disableUpload

The disableUpload option expects a boolean which enables/disables all synchronization from the local filesystem to the remote container filesystem.

Default Value For disableUpload

disableUpload: false # Do not ignore local files during synchronization

Example: Synchronize Remote Container Filesystem Only

images:
backend:
image: john/devbackend
deployments:
- name: app-backend
helm:
componentChart: true
values:
containers:
- image: john/devbackend
dev:
sync:
- imageSelector: john/devbackend
disableUpload: true
excludePaths:
- logs/
- more/logs/
downloadExcludePaths:
- tmp/

Initial Sync

initialSync

The initialSync option expects a string with an initial sync strategy. The following strategies are available:

mirrorLocal mirrors the local filesystem inside the container (default)

  1. deletes all files inside the conainer that are not existing on the local filesystem
  2. uploads all files which are existing on the local filesystem but are missing within the container
  3. resolves all file conflicts (different content on local filesystem than in inside the container) by preferring the file on the local filesystem (i.e. all files in the container will be replaced if they are different from on the local filesystem)

preferLocal is like mirrorLocal but skips step 1.

mirrorRemote mirrors the container files to the local filesystem:

  1. deletes all files on the local filesystem that are not existing inside the container
  2. downloads all files which are existing inside the container but are missing on the local filesystem
  3. resolves all file conflicts (different content on local filesystem than inside the container) by preferring the file within the container (i.e. all files on the local filesystem will be replaced if they are different than inside the container)

preferRemote is like mirrorRemote but skips step 1.

preferNewest merges local and remote filesystem while resolving all conflicts

  1. uploads all files which are existing on the local filesystem but are missing within the container
  2. downloads all files which are existing inside the container but are missing on the local filesystem
  3. resolves all file conflicts (different content on local filesystem than inside the container) by preferring the newest file (i.e. compares last modified timestamps and replaces all outdated files)

keepAll merges local and remote filesystem without resolving any conflicts

  1. uploads all files which are existing on the local filesystem but are missing within the container
  2. downloads all files which are existing inside the container but are missing on the local filesystem

Default Value For initialSync

initialSync: mirrorLocal

Example: Configuring Initial Sync

images:
backend:
image: john/devbackend
deployments:
- name: app-backend
helm:
componentChart: true
values:
containers:
- image: john/devbackend
dev:
sync:
- imageSelector: john/devbackend
excludePaths:
- node_modules/*
- imageSelector: john/devbackend
localSubPath: ./node_modules/
containerPath: /app/node_modules/
initialSync: preferRemote

Explanation:
With this configuration, devspace dev would do the following:

  • DevSpace would start port-forwarding and file synchronzation.
  • Initial sync would be started automatically.
  • The first sync config section would synchronize all files except files within node_modules/. This means that during initial sync, all remote files that are not existing locally would be deleted and other files would be updated to the most recent version.
  • The second sync config section would only synchronize files within node_modules/ and because of initialSync: preferRemote, DevSpace would download all remote files which are not present on the local filesystem and override all local files which are different than the files within the container.

waitInitialSync

The waitInitialSync option expects a boolean which defines if DevSpace should wait until the initial sync process has terminated before opening the container terminal or the multi-container log streaming.

Default Value For waitInitialSync

waitInitialSync: false # Start container terminal or log streaming before initial sync is completed

Example: Wait For Initial Sync To Complete

images:
backend:
image: john/devbackend
deployments:
- name: app-backend
helm:
componentChart: true
values:
containers:
- image: john/devbackend
dev:
sync:
- imageSelector: john/devbackend
waitInitialSync: true

Explanation:
With the configuration devspace dev would do the following:

  • DevSpace would start port-forwarding and file synchronzation.
  • Initial sync would be started automatically.
  • After the initial sync process is finished, DevSpace starts the multi-container log streaming.

Network Bandwidth Limits

Sometimes it is useful to throttle the file synchronization, especially when large files or a large number of files are expected to change during development. The following config options provide these capabilities:

bandwidthLimits.download

The bandwidthLimits.download option expects an integer representing the max file download speed in KB/s, e.g. download: 100 would limit the file sync to a download speed of 100 KB/s.

note

By default, the file synchronization algorithm uses the maximum bandwidth possible to make the sync process as fast as possible.

Example: Limiting Network Bandwidth

images:
backend:
image: john/devbackend
deployments:
- name: app-backend
helm:
componentChart: true
values:
containers:
- image: john/devbackend
dev:
sync:
- imageSelector: john/devbackend
bandwidthLimits:
download: 200
upload: 100

Explanation:

  • Downloading files from the container to the local filesystem would be limited to a transfer speed of 200 KB/s.
  • Upload files from the local filesystem to the container would be limited to a transfer speed of 100 KB/s.

bandwidthLimits.upload

The bandwidthLimits.upload option expects an integer representing the max file upload speed in KB/s, e.g. upload: 100 would limit the file sync to a upload speed of 100 KB/s.

note

By default, the file synchronization algorithm uses the maximum bandwidth possible to make the sync process as fast as possible.

Example

See "Example: Limiting Network Bandwidth"

Advanced Options

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.

polling

Polling specifies if the DevSpace helper should traverse over all watched files and folders periodically in the container to identify file changes. By default, DevSpace will use inotify to detect changes which is more efficient, however sometimes it might be unsupported or not feasible in certain situations, in which polling might be preferred.

images:
backend:
image: john/devbackend
deployments:
- name: app-backend
helm:
componentChart: true
values:
containers:
- image: john/devbackend
dev:
sync:
- imageSelector: john/devbackend
polling: true
info

Polling might increase CPU consumption of the container drastically, depending on the amount of files and folders watched

info

If you are using a DevSpace config version below v1beta10, polling will be enabled by default, as it was the default syncing method in older DevSpace versions

Useful Commands

devspace sync

If you want to start file synchronzation on-demand without having to configure it in devspace.yaml and without starting port-forwarding or log streaming etc, you can use the devspace sync command as shown in the examples below:

# Select pod with a picker
devspace sync --local-path=subfolder --container-path=/app

# Select pod and container by name and use current working directory as local-path
devspace sync --pod=my-pod --container=my-container --container-path=/app

FAQ

How does the sync work?

DevSpace establishes a bi-directional code synchronization between the specified local folders and the remote container folders. It automatically recognizes any changes within the specified folders during the session and will update the corresponding files locally and remotely in the background. It uses a small helper binary that is injected into the target container to accomplish this.

The algorithm roughly works like this:

  1. Inject a small helper binary via kubectl cp into the target container
  2. Run initial sync accoring to the initialSync config option
  3. Watch for file changes on both sides (local and remote) and sync them according to the sync path mappings
  4. After every sync process, restart the container or run other custom post-sync commands (optional)

Are there any requirements for the sync to work?

The tar command has to be present in the container otherwise kubectl cp does not work and the helper binary cannot be injected into the container.

Other than that, no server-side component or special container privileges for code synchronization are required, as the sync algorithm runs completely client-only within DevSpace. The synchronization mechanism works with any container filesystem and no special binaries have to be installed into the containers. File watchers running within the containers like nodemon will also recognize changes made by the synchronization mechanism.


What is the performance impact on using the file sync?

The sync mechanism is normally very reliable and fast. Syncing several thousand files is usually not a problem. Changes are packed together and compressed during synchronization, which improves performance especially for transferring text files. Transferring large compressed binary files is possible, but can affect performance negatively. Remote changes can sometimes have a delay of 1-2 seconds till they are downloaded, depending on how big the synchronized folder is. It should be generally avoided to sync the complete container filesystem.