sinker syncs container images from one registry to another. This is useful in cases when you rely on images that exist in a public container registry, but need to pull from a private registry.
See the example folder for more details on the produced files.
GO111MODULE=on go get github.com/plexsystems/sinker
Releases are also provided in the releases tab on GitHub.
All commands either create, update, or read from the image manifest (.images.yaml).
While the create and update commands assist with managing the image manifest, the push command will not modify the image manifest. Allowing you to manually control the manifest if desired.
target:
registry: mycompany.com
repository: myteamThe target section is where all of the images will be synced to. The above yaml would sync all images to the mycompany registry in the myteam repository: mycompany.com/myteam/....
The repository field is optional.
target:
registry: mycompany.com
repository: myteam
images:
- repository: coreos/prometheus-operator
version: v0.40.0
source: quay.io
- repository: jimmidyson/configmap-reload
version: v0.3.1
source: docker.io
- repository: super/secret
version: v1.0.0
source: privatecompany.org
auth:
username: USER_ENVIRONMENT_VARIABLE_NAME
password: PASSWORD_ENVIRONMENT_VARIABLE_NAMEThe images section includes the source registry and the repository for the image. During a sync, an image push would result in mycompany.com/myteam/coreos/prometheus-operator:v0.40.0
All auth is handled by looking at the clients Docker auth. If the client can perform a docker push or docker pull, sinker will be able to as well.
In the event that an image that needs to be sync'd is in another registry, the auth section allows you to set the names of environment variables that will be used for creating basic auth to the registry. This is useful in CI pipelines.
All examples are taken from running commands in the examples/ folder.
Create an image manifest that will sync images to the given target registry.
$ sinker create <file|directory> --target mycompany.com/myteamSpecifies the target registry (and optionally a repository) to sync the images to.
Find all image references in the file or directory that was passed in.
While this tool is not Kubernetes specific, currently the create and update commands can take a file or directory to find all Kubernetes manifests and extract the image references from them. This includes images specified in container arguments as well as CRDs such as Prometheus and Alertmanager.
The intent is that this can be expanded to support other workloads (e.g docker compose).
$ sinker create example/bundle.yaml --target mycompany.com/myteamtarget:
registry: mycompany.com
repository: myteam
images:
- repository: coreos/prometheus-operator
version: v0.40.0
source: quay.io
- repository: jimmidyson/configmap-reload
version: v0.3.1
source: docker.io
- repository: coreos/prometheus-config-reloader
version: v0.40.0
source: quay.ioPush all of the images inside of the image manifest to the target registry.
$ sinker pushThe --dryrun flag will print out a summary of the images that do not exist at the target registry and the fully qualified names of the images that will be pushed.
Updates the current image manifest to reflect new changes found in the Kubernetes manifest(s).
$ sinker update <file|directory>NOTE: The update command will ONLY update image versions. This allows for pinning of certain fields you want to manage yourself (source registry, auth).
If desired, you can set a new target in the image manifest by using --target during an update.
Pulls the source images found in the image manifest. This is useful if you want to perform additional actions on the image(s) before performing a push operation (e.g. scanning for vulnerabilities).
$ sinker pullPrints a list of either the source or target images that exist in the image manifest. This can be useful for piping into additional tooling that acts on image urls.
$ sinker list <source|target>Outputs the list to a file (e.g. source-images.txt).
Checks if any of the source images found in the image manifest have new updates. Currently only works for the source images that are hosted on Docker Hub.
$ sinker check