├── .gitignore ├── LICENSE ├── README.md ├── kubespray └── job.yaml └── registry ├── Dockerfile ├── build.sh ├── registry_gc.sh ├── registry_to_skopeo.sh ├── select_registry_images.sh └── skopeo_to_registry.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muzi502/scripts/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muzi502/scripts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # scripts 2 | 一些常用的弱智脚本 3 | -------------------------------------------------------------------------------- /kubespray/job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muzi502/scripts/HEAD/kubespray/job.yaml -------------------------------------------------------------------------------- /registry/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muzi502/scripts/HEAD/registry/Dockerfile -------------------------------------------------------------------------------- /registry/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muzi502/scripts/HEAD/registry/build.sh -------------------------------------------------------------------------------- /registry/registry_gc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muzi502/scripts/HEAD/registry/registry_gc.sh -------------------------------------------------------------------------------- /registry/registry_to_skopeo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muzi502/scripts/HEAD/registry/registry_to_skopeo.sh -------------------------------------------------------------------------------- /registry/select_registry_images.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muzi502/scripts/HEAD/registry/select_registry_images.sh -------------------------------------------------------------------------------- /registry/skopeo_to_registry.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muzi502/scripts/HEAD/registry/skopeo_to_registry.sh --------------------------------------------------------------------------------