├── .gitignore ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── helm_image_mirror.sh ├── sample-config.yaml ├── src └── helm_image_mirror.py └── test ├── test_charts.py ├── test_registries.py └── test_repos.py /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode/ 2 | __pycache__ 3 | *.tgz 4 | tmp/* -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shashankv02/helm-image-mirror/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shashankv02/helm-image-mirror/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shashankv02/helm-image-mirror/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shashankv02/helm-image-mirror/HEAD/README.md -------------------------------------------------------------------------------- /helm_image_mirror.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shashankv02/helm-image-mirror/HEAD/helm_image_mirror.sh -------------------------------------------------------------------------------- /sample-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shashankv02/helm-image-mirror/HEAD/sample-config.yaml -------------------------------------------------------------------------------- /src/helm_image_mirror.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shashankv02/helm-image-mirror/HEAD/src/helm_image_mirror.py -------------------------------------------------------------------------------- /test/test_charts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shashankv02/helm-image-mirror/HEAD/test/test_charts.py -------------------------------------------------------------------------------- /test/test_registries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shashankv02/helm-image-mirror/HEAD/test/test_registries.py -------------------------------------------------------------------------------- /test/test_repos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shashankv02/helm-image-mirror/HEAD/test/test_repos.py --------------------------------------------------------------------------------