fix: align JD01 dsflash provider deployment

This commit is contained in:
Codex
2026-06-29 10:49:43 +00:00
parent dfb3cfe22f
commit 7d981a9785
4 changed files with 30 additions and 2 deletions
+27
View File
@@ -804,6 +804,33 @@ controlPlane:
key: config.toml
providerCredential:
profile: codex
- id: provider-dsflash-go-auth-json
sourceMode: file
sourceRef: /root/.codex-opencode-go-all/auth.json
targetRef:
namespace: agentrun-v02
name: agentrun-v01-provider-dsflash-go
key: auth.json
providerCredential:
profile: dsflash-go
- id: provider-dsflash-go-config
sourceMode: file
sourceRef: agentrun/provider-dsflash-go-config.toml
targetRef:
namespace: agentrun-v02
name: agentrun-v01-provider-dsflash-go
key: config.toml
providerCredential:
profile: dsflash-go
- id: provider-dsflash-go-model-catalog
sourceMode: file
sourceRef: /root/.codex-opencode-go-all/model-catalog.json
targetRef:
namespace: agentrun-v02
name: agentrun-v01-provider-dsflash-go
key: model-catalog.json
providerCredential:
profile: dsflash-go
- id: tool-github-pr-token
sourceRef: /root/.config/unidesk/github.env
sourceKey: GH_TOKEN
+1 -1
View File
@@ -985,7 +985,7 @@ lanes:
secretNamespace: agentrun-v02
repoUrlFrom: runtimeGitReadUrl
providerIdFrom: runtimeNodeId
defaultProviderProfile: codex
defaultProviderProfile: dsflash-go
codexStdioSupervisor: repo-owned
publicExposure:
mode: pk01-caddy-frp
+1 -1
View File
@@ -2611,7 +2611,7 @@ export function stringAt(value: unknown, path: string): string {
return found;
}
function nonEmptyString(value: unknown): string | null {
export function nonEmptyString(value: unknown): string | null {
return typeof value === "string" && value.length > 0 ? value : null;
}
@@ -21,6 +21,7 @@ import {
quickVerifyAccountEnv,
record,
recordTarget,
nonEmptyString,
secretSourcePaths,
sentinelCliSuffix,
shellQuote,