File sync
Note
File sync is alpha and may change between releases.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 thestatic-html
folder into the<WORKDIR>/static
folder in the container. Note that this pattern does not match files in sub-folders belowstatic-html
(e.g.static-html/a.html
but notstatic-html/sub/a.html
). - The third rule synchronizes any
png
. For example ifassest/img.png
↷assets/img.png
orstatic-html/imgs/demo.png
↷static/imgs/demo.png
. - The last rule enables synchronization for all
md
files below thecontent/en
. For example,content/en/sub/index.md
↷content/sub/index.md
but notcontent/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 thestatic-html
folder into the<WORKDIR>/static
folder in the container. Note that this pattern does not match files in sub-folders belowstatic-html
(e.g.static-html/a.html
but notstatic-html/sub/a.html
). - The third rule synchronizes all
png
files from any sub-folder into theassets
folder on the container. For example,img.png
↷assets/img.png
orsub/img.png
↷assets/sub/img.png
. - The last rule synchronizes all
md
files below thecontent/en
directory into thecontent
folder on the container. Thestrip
directive ensures that only the directory hierarchy belowcontent/en
is re-created at the destination. For example,content/en/index.md
↷content/index.md
orcontent/en/sub/index.md
↷content/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
andinfer
sync modes. If you have a use-case for this, please let us know!