81 lines
1.9 KiB
Markdown
81 lines
1.9 KiB
Markdown
# public-image-mirror
|
|
|
|
[](https://gist.github.com/wzshiming/6e1f67a5184f93cefc5b2c670a5813e5/raw/daocloud-sync.log)
|
|
[](https://gist.github.com/wzshiming/6e1f67a5184f93cefc5b2c670a5813e5/raw/daocloud-deep-sync.log)
|
|
|
|
## 背景
|
|
很多镜像都在国外。比如 gcr 。国内下载很慢,需要加速。
|
|
|
|
## 目标
|
|
|
|
* 一个简洁有效的方法能够加速这些包。简洁的名称映射
|
|
* 易于添加,添加新的包,不需要去修改代码。
|
|
* 稳定可靠。每天检查同步情况。
|
|
|
|
## 快速开始
|
|
|
|
```
|
|
docker run -d -P docker.m.daocloud.io/nginx
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
## 使用方法
|
|
|
|
支持的镜像仓库 的 *前缀替换* 就可以使用。比如:
|
|
|
|
k8s.gcr.io/coredns/coredns => k8s-gcr.m.daocloud.io/coredns/coredns
|
|
|
|
## 替换规则
|
|
|
|
| 源站 | 替换为 |
|
|
| ---------- | --------------------- |
|
|
| gcr.io | gcr.m.daocloud.io |
|
|
| k8s.gcr.io | k8s-gcr.m.daocloud.io |
|
|
| docker.io | docker.m.daocloud.io |
|
|
| quay.io | quay.m.daocloud.io |
|
|
| ghcr.io | ghcr.m.daocloud.io |
|
|
|
|
## 支持的仓库
|
|
|
|
[mirror.txt](mirror.txt)
|
|
|
|
## 增加新的仓库
|
|
|
|
提 PR , 修改 mirror.txt 即可。例如 [PR#1](https://github.com/DaoCloud/public-image-mirror/pull/1/)
|
|
|
|
|
|
## 安装运行
|
|
|
|
安装 skopeo.
|
|
```
|
|
yum install skopeo --nobest
|
|
```
|
|
|
|
|
|
运行同步程序
|
|
|
|
```
|
|
export REGISTRY_PASSWORD=password #镜像仓库密码
|
|
python scripts/sync-to-jp.py
|
|
```
|
|
|
|
|
|
## 最佳实践
|
|
* 通过 加速 安装 kubeadm
|
|
``` bash
|
|
# 使用 kubeadm 安装的时候指定 --image-repository 参数, 指定安装的镜像前缀
|
|
REPOS=k8s-gcr.m.daocloud.io
|
|
kubeadm config images pull --image-repository "${REPOS}"
|
|
```
|
|
|
|
* 通过 加速 安装 kind
|
|
|
|
|
|
``` bash
|
|
kind create cluster --name kind --image m.daocloud.io/kindest/node:v1.21.1
|
|
```
|
|
|