Refresh k8s docker versions and references

This commit is contained in:
yeasy
2026-04-21 20:57:33 -07:00
parent 4b93651989
commit c9c72618c3
26 changed files with 379 additions and 98 deletions
+6 -4
View File
@@ -67,13 +67,15 @@ $ docker push username/myapp:v1
#### 镜像拉取限制
2020 11 月起Docker Hub 对匿名和免费用户实施了拉取速率限制
Docker Hub 对不同类型用户实施拉取速率限制2025 4 月起更新
| 用户类型 | 限制 |
|---------|------|
| **匿名用户** (未登录) | 6 小时 100 次请求 |
| **免费账户** (已登录) | 6 小时 200 次请求 |
| **Pro/Team 账户** | 无限制 |
| **匿名用户** (未登录) | 每小时 10 次请求 |
| **免费账户** (已登录) | 每小时 100 次请求 |
| **Pro/Team/Business 账户** | 无限制公平使用政策 |
> **注意**2025 4 月前的旧限制为匿名用户每 6 小时 100 免费账户每 6 小时 200 新政策大幅收紧了匿名拉取额度建议在 CI/CD 环境中始终配置 `docker login`
#### 滥用限流
+2 -3
View File
@@ -104,15 +104,14 @@ REPOSITORY TAG IMAGE ID CREAT
```json
{
"registry-mirrors": [
"https://hub-mirror.c.163.com",
"https://mirror.baidubce.com"
"https://docker.your-mirror.example.com"
],
"insecure-registries": [
"192.168.199.100:5000"
]
}
```
> 注意该文件必须符合 `json` 规范否则 Docker 将不能启动
> 注意该文件必须符合 `json` 规范否则 Docker 将不能启动镜像加速器地址请替换为实际可用的源具体配置参见 [3.9 镜像加速器](../03_install/3.9_mirror.md)
### 6.2.4 其他