A sidecar app which clones a git repo and keeps it in sync with the upstream.
Go to file
Michael Grosser cb9851e1b5 Revert "Update copyright notice"
This reverts commit b647219b69.
2017-03-22 04:25:39 +00:00
Godeps Clean up logging using glogr 2016-09-16 08:35:27 -07:00
build Revert "Update copyright notice" 2017-03-22 04:25:39 +00:00
cmd/git-sync Revert "Update copyright notice" 2017-03-22 04:25:39 +00:00
demo update pod config 2017-03-05 20:41:25 -08:00
docs Update ssh.md 2017-02-17 11:08:25 -05:00
pkg/version Use the go-build-template 2016-10-30 17:09:06 -07:00
vendor/github.com Clean up logging using glogr 2016-09-16 08:35:27 -07:00
.gitignore Use the go-build-template 2016-10-30 17:09:06 -07:00
CONTRIBUTING.md Create CONTRIBUTING.md 2016-08-22 16:18:11 -07:00
Dockerfile.in Revert "Update copyright notice" 2017-03-22 04:25:39 +00:00
LICENSE Initial commit 2016-08-20 14:09:57 -07:00
Makefile Revert "Update copyright notice" 2017-03-22 04:25:39 +00:00
OWNERS Add files from github.com/kubernetes/contrib/git-sync 2016-08-20 14:14:27 -07:00
README.md Fix typo 2017-02-06 20:30:35 +00:00
code-of-conduct.md Create code-of-conduct.md 2016-08-22 16:18:58 -07:00
test_e2e.sh bump e2e timeouts 2017-01-26 22:21:54 -08:00

README.md

git-sync

git-sync is a simple command that pulls a git repository into a local directory. It is a perfect "sidecar" container in Kubernetes - it can periodically pull files down from a repository so that an application can consume them.

git-sync can pull one time, or on a regular interval. It can pull from the HEAD of a branch, or from a git tag, or from a specific git hash. It will only re-pull if the target of the run has changed in the upstream repository. When it re-pulls, it updates the destination directory atomically. In order to do this, it uses a git worktree in a subdirectory of the --root and flips a symlink.

Usage

# build the container
make container REGISTRY=registry TAG=tag

# run the container
docker run -d \
    -v /tmp/git-data:/git \
    registry/git-sync:tag \
        --repo=https://github.com/kubernetes/git-sync
        --branch=master
        --wait=30

# run an nginx container to serve the content
docker run -d \
    -p 8080:80 \
    -v /tmp/git-data:/usr/share/nginx/html \
    nginx

Analytics