From a7ce59547e9a08f7c51a0fda53e9e848640f74b8 Mon Sep 17 00:00:00 2001 From: Marco van Zijl Date: Wed, 29 Oct 2025 14:56:58 +0100 Subject: [PATCH] Add docker-proxy configuration for registry mirrors --- talos/patches/docker-proxy.yaml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 talos/patches/docker-proxy.yaml diff --git a/talos/patches/docker-proxy.yaml b/talos/patches/docker-proxy.yaml new file mode 100644 index 0000000..3a68e13 --- /dev/null +++ b/talos/patches/docker-proxy.yaml @@ -0,0 +1,20 @@ +machine: + registries: + mirrors: + docker.io: + endpoints: + - http://harbor.noxxos.nl/v2/proxy-docker.io + - https://registry-1.docker.io + overridePath: true + ghcr.io: + endpoints: + - http://harbor.noxxos.nl/v2/proxy-ghcr.io + overridePath: true + gcr.io: + endpoints: + - http://harbor.noxxos.nl/v2/proxy-gcr.io + overridePath: true + registry.k8s.io: + endpoints: + - http://harbor.noxxos.nl/v2/proxy-registry.k8s.io + overridePath: true \ No newline at end of file