From 4f5fc4401393ada43e76ddef1c35d462714c7452 Mon Sep 17 00:00:00 2001 From: jenkins Date: Tue, 25 Aug 2026 14:18:35 -0300 Subject: [PATCH] fix(harbor): push the mirror over Harbor's HTTP port 80 harbor-core serves http on :80 only; the skopeo dest omitted the port so it dialed :443 and timed out. Pin the dest to :80 (with --dest-tls-verify=false). --- services/harbor/hermes-agent-base-mirror-job.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/harbor/hermes-agent-base-mirror-job.yaml b/services/harbor/hermes-agent-base-mirror-job.yaml index a04b5ad5..fc7995c8 100644 --- a/services/harbor/hermes-agent-base-mirror-job.yaml +++ b/services/harbor/hermes-agent-base-mirror-job.yaml @@ -106,7 +106,7 @@ spec: - | set -eu src="docker://nousresearch/hermes-agent@sha256:9c841866021c54c4596849f6135717e8a4d52ba510b7f52c50aef1de1a283973" - dst="docker://harbor-core.harbor.svc.cluster.local/mirror/hermes-agent@sha256:9c841866021c54c4596849f6135717e8a4d52ba510b7f52c50aef1de1a283973" + dst="docker://harbor-core.harbor.svc.cluster.local:80/mirror/hermes-agent@sha256:9c841866021c54c4596849f6135717e8a4d52ba510b7f52c50aef1de1a283973" pw="$(cat /vault/secrets/harbor-admin-password)" exec skopeo copy --all \ --src-tls-verify=true \