OPC # 0009: Fix Worker gitea token
controlplane/build ✔ Build succeeded.

Co-authored-by: Copilot <copilot@github.com>
This commit is contained in:
amadzarak
2026-04-26 16:16:53 -04:00
parent ff7fa8e812
commit c78bcf3360
2 changed files with 11 additions and 0 deletions
+3
View File
@@ -87,6 +87,9 @@ builder.AddProject<Projects.ControlPlane_Worker>("controlplane-worker")
.WithEnvironment("ConnectionStrings__platformdb", .WithEnvironment("ConnectionStrings__platformdb",
"Host=localhost;Port=5432;Username=postgres;Password=postgres") "Host=localhost;Port=5432;Username=postgres;Password=postgres")
.WithEnvironment("Build__WorkDir", buildWorkDir) .WithEnvironment("Build__WorkDir", buildWorkDir)
.WithEnvironment("Gitea__BaseUrl", "https://opc.clarity.test")
.WithEnvironment("Gitea__Owner", "ClarityStack")
.WithEnvironment("Gitea__Token", "fcf9f66415754fb639a8343e3904e06b1d78c646")
.WithReference(controlPlaneDb) .WithReference(controlPlaneDb)
.WaitFor(controlPlaneDb); .WaitFor(controlPlaneDb);
#endregion #endregion
+8
View File
@@ -26,6 +26,14 @@
"ContainerAddress": "http://vault:8200" "ContainerAddress": "http://vault:8200"
}, },
// ── Gitea ─────────────────────────────────────────────────────────────────────
// Used by BuildConsumer to post commit statuses and clone repos.
"Gitea": {
"BaseUrl": "https://opc.clarity.test",
"Owner": "ClarityStack",
"Token": "fcf9f66415754fb639a8343e3904e06b1d78c646"
},
// ── ClarityInfraOptions (Clarity section) ───────────────────────────────────── // ── ClarityInfraOptions (Clarity section) ─────────────────────────────────────
// These values describe what gets injected INTO tenant containers at docker run time. // These values describe what gets injected INTO tenant containers at docker run time.
// Containers live on clarity-net → use Docker DNS names (keycloak, vault, postgres). // Containers live on clarity-net → use Docker DNS names (keycloak, vault, postgres).