File sync

Skaffold supports copying changed files to a deployed container so as to avoid the need to rebuild, redeploy, and restart the corresponding pod. The file copying is enabled by adding a sync section with sync rules to the artifact in the skaffold.yaml. Under the hood, Skaffold creates a tar file with changed files that match the sync rules. This tar file is sent to and extracted on the corresponding containers.

Inferred sync mode

For docker artifacts, Skaffold knows how to infer the desired destination from the artifact’s Dockerfile. To enable syncing, you only need to specify which files are eligible for syncing in the sync rules. The sync rules for inferred sync mode is just a list of glob patterns. The following example showcases this filesync mode:

Given a Dockerfile such as

FROM hugo

ADD .filebaserc /etc/
ADD assets assets/
COPY static-html static/
COPY content/en content/

And a skaffold.yaml with the following sync configuration:

build:
  artifacts:
    - image: gcr.io/k8s-skaffold/node-example
      context: node
      sync:
        infer:
        - '.filebaserc'
        - 'static-html/*.html'
        - '**/*.png'
        - 'content/en/**/*.md'
  • The first rule synchronizes the file .filebaserc to /etc/.filebaserc in the container.
  • The second rule synchronizes all html files in the static-html folder into the <WORKDIR>/static folder in the container. Note that this pattern does not match files in sub-folders below static-html (e.g. static-html/a.html but not static-html/sub/a.html).
  • The third rule synchronizes any png. For example if assest/img.pngassets/img.png or static-html/imgs/demo.pngstatic/imgs/demo.png.
  • The last rule enables synchronization for all md files below the content/en. For example, content/en/sub/index.mdcontent/sub/index.md but not content/en_GB/index.md.

Inferred sync mode only applies to modified and added files. File deletion will always cause a complete rebuild.

Manual sync mode

A manual sync rule must specify the src and dest field. The src field is a glob pattern to match files relative to the artifact context directory, which may contain ** to match nested files. The dest field is the absolute or relative destination path in the container. If the destination is a relative path, an absolute path will be inferred by prepending the path with the container’s WORKDIR. By default, matched files are transplanted with their whole directory hierarchy below the artifact context directory onto the destination. The optional strip field can cut off some levels from the directory hierarchy. The following example showcases manual filesync:

build:
  artifacts:
    - image: gcr.io/k8s-skaffold/node-example
      context: node
      sync:
        manual:
          # sync a single file into the `/etc` folder
          - src: '.filebaserc'
            dest: /etc

          # sync files directly below `static-html` into `static/`
          - src: 'static-html/*.html'
            dest: static

          # sync any `png` file into the assets folder
          - src: '**/*.png'
            dest: assets

          # sync all `md` files from `content/en` into `content`
          - src: 'content/en/**/*.md'
            dest: content
            strip: 'content/en/'
  • The first rule synchronizes the file .filebaserc to the /etc folder in the container.
  • The second rule synchronizes all html files in the static-html folder into the <WORKDIR>/static folder in the container. Note that this pattern does not match files in sub-folders below static-html (e.g. static-html/a.html but not static-html/sub/a.html).
  • The third rule synchronizes all png files from any sub-folder into the assets folder on the container. For example, img.pngassets/img.png or sub/img.pngassets/sub/img.png.
  • The last rule synchronizes all md files below the content/en directory into the content folder on the container. The strip directive ensures that only the directory hierarchy below content/en is re-created at the destination. For example, content/en/index.mdcontent/index.md or content/en/sub/index.mdcontent/sub/index.md.

Limitations

File sync has some limitations:

  • File sync can only update files that can be modified by the container’s configured User ID.
  • File sync requires the tar command to be available in the container.
  • Only local source files can be synchronized: files created by the builder will not be copied.
  • It is currently not allowed to mix manual and infer sync modes. If you have a use-case for this, please let us know!
Last modified October 7, 2019: Rework skaffold.dev splash page (ee3710b)