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