Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docker, containerd: image registry mirrors #1629

Merged
merged 3 commits into from
Aug 2, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -408,6 +408,21 @@ These settings can be changed at any time.
Supported values are `debug`, `info`, `warn`, `error`, and `crit`, and the default is `info`.
* `settings.ecs.enable-spot-instance-draining`: If the instance receives a spot termination notice, the agent will set the instance's state to `DRAINING`, so the workload can be moved gracefully before the instance is removed. Defaults to `false`.

#### Container image registry settings

The following setting is optional and allows you to configure image registry mirrors and pull-through caches for your containers.
* `settings.container-registry.mirrors`: A mapping of container image registry to a list of image registry URL endpoints. When pulling an image from a registry, the container runtime will try the endpoints one by one and use the first working one.
(Docker and containerd will still try the default registry URL if the mirrors fail.)
* Example user data for setting up image registry mirrors:
```
[settings.container-registry.mirrors]
"docker.io" = ["https://<my-docker-hub-mirror-host>"]
"gcr.io" = ["https://<my-gcr-mirror-host>","http://<my-gcr-mirror-host-2>"]
```
If you use a Bottlerocket variant that uses Docker as the container runtime, like `aws-ecs-1`, you should be aware that Docker only supports pull-through caches for images from Docker Hub (docker.io). Mirrors for other registries are ignored in this case.

For [host-container](#host-containers-settings) and [bootstrap-container](#bootstrap-containers-settings) images from Amazon ECR private repositories, registry mirrors are currently unsupported.

#### Updates settings

* `settings.updates.metadata-base-url`: The common portion of all URIs used to download update metadata.
Expand Down
2 changes: 2 additions & 0 deletions Release.toml
Original file line number Diff line number Diff line change
Expand Up @@ -64,4 +64,6 @@ version = "1.1.4"
"migrate_v1.2.0_hostname-setting-metadata.lz4",
"migrate_v1.2.0_add-custom-certificates.lz4",
"migrate_v1.2.0_kubelet-topology-manager.lz4",
"migrate_v1.2.0_container-registry-mirrors.lz4",
"migrate_v1.2.0_container-registry-config-restarts.lz4",
]
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Are we planning to fix up migrations in a different commit? If not then these migrations should be with the hostname ones.

7 changes: 7 additions & 0 deletions packages/containerd/containerd-config-toml_k8s
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,10 @@ SystemdCgroup = true
[plugins."io.containerd.grpc.v1.cri".cni]
bin_dir = "/opt/cni/bin"
conf_dir = "/etc/cni/net.d"

{{~#if settings.container-registry.mirrors}}
{{~#each settings.container-registry.mirrors}}
[plugins."io.containerd.grpc.v1.cri".registry.mirrors."{{@key}}"]
endpoint = [{{join_array ", " this }}]
{{~/each}}
{{~/if}}
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,7 @@
"data-root": "/var/lib/docker",
"selinux-enabled": true,
"default-ulimits": { "nofile": { "Name": "nofile", "Soft": 1024, "Hard": 4096 } }
{{~#if settings.container-registry.mirrors.[docker.io]}},
"registry-mirrors": [{{join_array ", " settings.container-registry.mirrors.[docker.io]}}]
{{~/if}}
}
13 changes: 4 additions & 9 deletions packages/docker-engine/docker-engine.spec
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,7 @@ Source0: https://%{repo}/archive/v%{gover}/%{project}-%{gover}.tar.gz
Source1: docker.service
Source2: docker.socket
Source3: docker-sysusers.conf
Source4: daemon.json
Source5: docker-tmpfiles.conf
Source4: daemon-json
Source1000: clarify.toml

BuildRequires: git
Expand Down Expand Up @@ -68,11 +67,8 @@ install -p -m 0644 %{S:2} %{buildroot}%{_cross_unitdir}/docker.socket
install -d %{buildroot}%{_cross_sysusersdir}
install -p -m 0644 %{S:3} %{buildroot}%{_cross_sysusersdir}/docker.conf

install -d %{buildroot}%{_cross_factorydir}%{_cross_sysconfdir}/docker
install -p -m 0644 %{S:4} %{buildroot}%{_cross_factorydir}%{_cross_sysconfdir}/docker/daemon.json

install -d %{buildroot}%{_cross_tmpfilesdir}
install -p -m 0644 %{S:5} %{buildroot}%{_cross_tmpfilesdir}/docker.conf
install -d %{buildroot}%{_cross_templatedir}
install -p -m 0644 %{S:4} %{buildroot}%{_cross_templatedir}/docker-daemon-json

%cross_scan_attribution --clarify %{S:1000} go-vendor vendor

Expand All @@ -83,7 +79,6 @@ install -p -m 0644 %{S:5} %{buildroot}%{_cross_tmpfilesdir}/docker.conf
%{_cross_unitdir}/docker.service
%{_cross_unitdir}/docker.socket
%{_cross_sysusersdir}/docker.conf
%{_cross_factorydir}%{_cross_sysconfdir}/docker
%{_cross_tmpfilesdir}/docker.conf
%{_cross_templatedir}/docker-daemon-json

%changelog
1 change: 0 additions & 1 deletion packages/docker-engine/docker-tmpfiles.conf

This file was deleted.

3 changes: 2 additions & 1 deletion packages/kubernetes-1.17/kubelet.service
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ ExecStartPre=/usr/bin/host-ctr \
--containerd-socket=/run/dockershim.sock \
--namespace=k8s.io \
pull-image \
--source=${POD_INFRA_CONTAINER_IMAGE}
--source=${POD_INFRA_CONTAINER_IMAGE} \
--registry-config=/etc/host-containers/host-ctr.toml
# Must be overridden by a drop-in file or `kubelet` won't start
ExecStart=/usr/bin/false

Expand Down
3 changes: 2 additions & 1 deletion packages/kubernetes-1.18/kubelet.service
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ ExecStartPre=/usr/bin/host-ctr \
--containerd-socket=/run/dockershim.sock \
--namespace=k8s.io \
pull-image \
--source=${POD_INFRA_CONTAINER_IMAGE}
--source=${POD_INFRA_CONTAINER_IMAGE} \
--registry-config=/etc/host-containers/host-ctr.toml
# Must be overridden by a drop-in file or `kubelet` won't start
ExecStart=/usr/bin/false

Expand Down
3 changes: 2 additions & 1 deletion packages/kubernetes-1.19/kubelet.service
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ ExecStartPre=/usr/bin/host-ctr \
--containerd-socket=/run/dockershim.sock \
--namespace=k8s.io \
pull-image \
--source=${POD_INFRA_CONTAINER_IMAGE}
--source=${POD_INFRA_CONTAINER_IMAGE} \
--registry-config=/etc/host-containers/host-ctr.toml
# Must be overridden by a drop-in file or `kubelet` won't start
ExecStart=/usr/bin/false

Expand Down
3 changes: 2 additions & 1 deletion packages/kubernetes-1.20/kubelet.service
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ ExecStartPre=/usr/bin/host-ctr \
--containerd-socket=/run/dockershim.sock \
--namespace=k8s.io \
pull-image \
--source=${POD_INFRA_CONTAINER_IMAGE}
--source=${POD_INFRA_CONTAINER_IMAGE} \
--registry-config=/etc/host-containers/host-ctr.toml
# Must be overridden by a drop-in file or `kubelet` won't start
ExecStart=/usr/bin/false

Expand Down
3 changes: 2 additions & 1 deletion packages/kubernetes-1.21/kubelet.service
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ ExecStartPre=/usr/bin/host-ctr \
--containerd-socket=/run/dockershim.sock \
--namespace=k8s.io \
pull-image \
--source=${POD_INFRA_CONTAINER_IMAGE}
--source=${POD_INFRA_CONTAINER_IMAGE} \
--registry-config=/etc/host-containers/host-ctr.toml
# Must be overridden by a drop-in file or `kubelet` won't start
ExecStart=/usr/bin/false

Expand Down
3 changes: 2 additions & 1 deletion packages/os/[email protected]
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ ExecStart=/usr/bin/touch /run/bootstrap-containers/%i.ran
ExecStart=/usr/bin/host-ctr run \
--container-id='%i' \
--source='${CTR_SOURCE}' \
--container-type='bootstrap'
--container-type='bootstrap' \
--registry-config=/etc/host-containers/host-ctr.toml
ExecStartPost=/usr/bin/bootstrap-containers mark-bootstrap \
--container-id '%i' \
--mode '${CTR_MODE}'
Expand Down
3 changes: 2 additions & 1 deletion packages/os/[email protected]
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ Environment=LOCAL_DIR=/local
ExecStart=/usr/bin/host-ctr run \
--container-id='%i' \
--source='${CTR_SOURCE}' \
--superpowered='${CTR_SUPERPOWERED}'
--superpowered='${CTR_SUPERPOWERED}' \
--registry-config=/etc/host-containers/host-ctr.toml
Restart=always
RestartSec=45
TimeoutStopSec=60
Expand Down
6 changes: 6 additions & 0 deletions packages/os/host-ctr-toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{{~#if settings.container-registry.mirrors}}
{{~#each settings.container-registry.mirrors}}
[mirrors."{{@key}}"]
endpoints = [{{join_array ", " this }}]
{{~/each}}
{{~/if}}
5 changes: 4 additions & 1 deletion packages/os/os.spec
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ Source3: eni-max-pods

Source5: updog-toml
Source6: metricdog-toml
Source7: host-ctr-toml

# 1xx sources: systemd units
Source100: apiserver.service
Expand Down Expand Up @@ -394,7 +395,7 @@ install -d %{buildroot}%{_cross_datadir}/updog
install -p -m 0644 %{_cross_repo_root_json} %{buildroot}%{_cross_datadir}/updog

install -d %{buildroot}%{_cross_templatedir}
install -p -m 0644 %{S:5} %{S:6} %{buildroot}%{_cross_templatedir}
install -p -m 0644 %{S:5} %{S:6} %{S:7} %{buildroot}%{_cross_templatedir}

install -d %{buildroot}%{_cross_unitdir}
install -p -m 0644 \
Expand Down Expand Up @@ -464,6 +465,8 @@ install -p -m 0644 %{S:300} %{buildroot}%{_cross_udevrulesdir}/80-ephemeral-stor
%{_cross_bindir}/host-containers
%{_cross_unitdir}/[email protected]
%{_cross_tmpfilesdir}/host-containers.conf
%dir %{_cross_templatedir}
%{_cross_templatedir}/host-ctr-toml

%files -n %{_cross_os}storewolf
%{_cross_bindir}/storewolf
Expand Down
14 changes: 14 additions & 0 deletions sources/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions sources/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@ members = [
"api/migration/migrations/v1.2.0/hostname-setting-metadata",
"api/migration/migrations/v1.2.0/add-custom-certificates",
"api/migration/migrations/v1.2.0/kubelet-topology-manager",
"api/migration/migrations/v1.2.0/container-registry-mirrors",
"api/migration/migrations/v1.2.0/container-registry-config-restarts",

"bottlerocket-release",

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
[package]
name = "container-registry-config-restarts"
version = "0.1.0"
authors = ["Erikson Tung <[email protected]>"]
license = "Apache-2.0 OR MIT"
edition = "2018"
publish = false

[dependencies]
migration-helpers = { path = "../../../migration-helpers" }
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
#![deny(rust_2018_idioms)]

use migration_helpers::common_migrations::{ListReplacement, ReplaceListsMigration};
use migration_helpers::{migrate, Result};
use std::process;

/// We templatized the configuration file for the Docker daemon.
/// We also added a new configuration file for host-containers and bootstrap-containers
fn run() -> Result<()> {
migrate(ReplaceListsMigration(vec![
ListReplacement {
setting: "services.docker.configuration-files",
old_vals: &["proxy-env"],
new_vals: &["docker-daemon-config", "proxy-env"],
},
ListReplacement {
setting: "services.bootstrap-containers.configuration-files",
old_vals: &[],
new_vals: &["host-ctr-toml"],
},
ListReplacement {
setting: "services.host-containers.configuration-files",
old_vals: &[],
new_vals: &["host-ctr-toml"],
},
]))
}

// Returning a Result from main makes it print a Debug representation of the error, but with Snafu
// we have nice Display representations of the error, so we wrap "main" (run) and print any error.
// https://github.com/shepmaster/snafu/issues/110
fn main() {
if let Err(e) = run() {
eprintln!("{}", e);
process::exit(1);
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
[package]
name = "container-registry-mirrors"
version = "0.1.0"
authors = ["Erikson Tung <[email protected]>"]
license = "Apache-2.0 OR MIT"
edition = "2018"
publish = false

[dependencies]
migration-helpers = { path = "../../../migration-helpers" }
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
#![deny(rust_2018_idioms)]

use migration_helpers::common_migrations::AddPrefixesMigration;
use migration_helpers::{migrate, Result};
use std::process;

/// We added a new setting for configuring image registries, `settings.container-registry`
/// We also added a new configuration template file for the Docker daemon
fn run() -> Result<()> {
migrate(AddPrefixesMigration(vec![
"settings.container-registry",
"configuration-files.docker-daemon-config",
"configuration-files.host-ctr-toml",
]))
}

// Returning a Result from main makes it print a Debug representation of the error, but with Snafu
// we have nice Display representations of the error, so we wrap "main" (run) and print any error.
// https://github.com/shepmaster/snafu/issues/110
fn main() {
if let Err(e) = run() {
eprintln!("{}", e);
process::exit(1);
}
}
Loading