Browse Source
containerd: allow to configure fallback server (#10988)
Also nerdctl limitation is now removed as we use /etc/containerd/certs.d/
pull/11140/head
Mathieu Parent
6 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
13 additions and
6 deletions
-
docs/containerd.md
-
roles/container-engine/containerd/templates/hosts.toml.j2
|
|
@ -35,13 +35,20 @@ containerd_registries_mirrors: |
|
|
|
skip_verify: false |
|
|
|
``` |
|
|
|
|
|
|
|
`containerd_registries_mirrors` is ignored for pulling images when `image_command_tool=nerdctl` |
|
|
|
(the default for `container_manager=containerd`). Use `crictl` instead, it supports |
|
|
|
`containerd_registries_mirrors` but lacks proper multi-arch support (see |
|
|
|
[#8375](https://github.com/kubernetes-sigs/kubespray/issues/8375)): |
|
|
|
containerd falls back to `https://{{ prefix }}` when none of the mirrors have the image. |
|
|
|
This can be changed with the [`server` field](https://github.com/containerd/containerd/blob/main/docs/hosts.md#server-field): |
|
|
|
|
|
|
|
```yaml |
|
|
|
image_command_tool: crictl |
|
|
|
containerd_registries_mirrors: |
|
|
|
- prefix: docker.io |
|
|
|
mirrors: |
|
|
|
- host: https://mirror.gcr.io |
|
|
|
capabilities: ["pull", "resolve"] |
|
|
|
skip_verify: false |
|
|
|
- host: https://registry-1.docker.io |
|
|
|
capabilities: ["pull", "resolve"] |
|
|
|
skip_verify: false |
|
|
|
server: https://mirror.example.org |
|
|
|
``` |
|
|
|
|
|
|
|
The `containerd_registries` and `containerd_insecure_registries` configs are deprecated. |
|
|
|
|
|
@ -1,4 +1,4 @@ |
|
|
|
server = "https://{{ item.prefix }}" |
|
|
|
server = "{{ item.server | default("https://" + item.prefix) }}" |
|
|
|
{% for mirror in item.mirrors %} |
|
|
|
[host."{{ mirror.host }}"] |
|
|
|
capabilities = ["{{ ([ mirror.capabilities ] | flatten ) | join('","') }}"] |
|
|
|