Container image distribution for edge and air-gapped Kubernetes environments.
| Component | Description |
|---|---|
| Container Registry | OCI-compliant registry server with standalone and pull-through cache modes |
Standalone mode — a local registry that accepts push and pull. Configure a port, start it, push images.
Pull-through cache mode — set an upstream registry host (e.g., registry-1.docker.io). When a pod pulls an image, the registry fetches it from upstream and caches it locally. Subsequent pulls are served from cache. No deployment changes needed — just configure containerd to mirror through this registry.
helm repo add tinysystems https://tiny-systems.github.io/module/
helm install distribution-module tinysystems/tinysystems-operator \
--set controllerManager.manager.image.repository=ghcr.io/tiny-systems/distribution-module \
--set storage.enabled=true \
--set storage.size=10Gigo run cmd/main.go run --name=distribution-module --namespace=tinysystems --version=1.0.0This module is part of the Tiny Systems platform -- a visual flow-based automation engine running on Kubernetes.
This module's source code is MIT-licensed. It depends on the Tiny Systems Module SDK (BSL 1.1). See LICENSE for details.