From da010ab09334b10ac8762c39232ce47d9a05a02b Mon Sep 17 00:00:00 2001 From: Codex Date: Fri, 10 Jul 2026 09:45:15 +0200 Subject: [PATCH] fix: declare AgentRun resource mirror base URL --- config/agentrun.yaml | 1 + scripts/src/agentrun-lanes.ts | 3 +++ scripts/src/agentrun-manifests.ts | 2 +- 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/config/agentrun.yaml b/config/agentrun.yaml index 6ff45205..ef7aeea5 100644 --- a/config/agentrun.yaml +++ b/config/agentrun.yaml @@ -228,6 +228,7 @@ controlPlane: readDeployment: git-mirror-http writeService: git-mirror-write writeDeployment: git-mirror-write + resourceBundleBaseUrl: http://git-mirror-http.devops-infra.svc.cluster.local:8080 readUrl: http://git-mirror-http.devops-infra.svc.cluster.local:8080/pikasTech/agentrun.git writeUrl: http://git-mirror-write.devops-infra.svc.cluster.local:8080/pikasTech/agentrun.git cachePvc: hwlab-git-mirror-cache diff --git a/scripts/src/agentrun-lanes.ts b/scripts/src/agentrun-lanes.ts index 0c772f5f..1fc29043 100644 --- a/scripts/src/agentrun-lanes.ts +++ b/scripts/src/agentrun-lanes.ts @@ -184,6 +184,7 @@ export interface AgentRunLaneSpec { readonly readDeployment: string; readonly writeService: string; readonly writeDeployment: string; + readonly resourceBundleBaseUrl: string; readonly readUrl: string; readonly writeUrl: string; readonly cachePvc: string; @@ -408,6 +409,7 @@ export function agentRunLaneSummary(spec: AgentRunLaneSpec): Record