From 10249192b16cd82edb59c8fc38c4286054ec08e6 Mon Sep 17 00:00:00 2001 From: UniDesk AgentRun Ops Date: Sat, 13 Jun 2026 14:16:54 +0800 Subject: [PATCH] chore: remove service deploy json truth --- deploy/deploy.json | 101 --------------------------------------------- 1 file changed, 101 deletions(-) delete mode 100644 deploy/deploy.json diff --git a/deploy/deploy.json b/deploy/deploy.json deleted file mode 100644 index cdb93b3..0000000 --- a/deploy/deploy.json +++ /dev/null @@ -1,101 +0,0 @@ -{ - "lane": "v0.1", - "runtimeNamespace": "agentrun-v01", - "gitopsBranch": "v0.1-gitops", - "runtimePath": "deploy/gitops/g14/runtime-v01", - "unideskSshEndpointEnv": { "name": "UNIDESK_MAIN_SERVER_IP", "value": "74.48.78.17" }, - "managerApiKeyEnv": { "name": "AGENTRUN_API_KEY", "secretRef": { "name": "agentrun-v01-api-key", "key": "HWLAB_API_KEY" } }, - "managerPublicExposure": { - "enabled": true, - "kind": "frp-tcp", - "name": "agentrun-v01-frpc", - "serverAddr": "74.48.78.17", - "serverPort": 7000, - "localIP": "agentrun-mgr.agentrun-v01.svc.cluster.local", - "localPort": 8080, - "remotePort": 22880, - "publicBaseUrl": "https://agentrun.74-48-78-17.nip.io/", - "masterBaseUrl": "http://127.0.0.1:22880" - }, - "services": [ - { - "id": "agentrun-mgr", - "component": "manager", - "enabled": true, - "replicas": 1, - "ports": [{ "name": "http", "containerPort": 8080 }], - "health": { - "livePath": "/health/live", - "readinessPath": "/health/readiness" - }, - "env": [ - { "name": "AGENTRUN_LANE", "value": "v0.1" }, - { "name": "AGENTRUN_RUNTIME_NAMESPACE", "value": "agentrun-v01" }, - { "name": "DATABASE_URL", "secretRef": { "name": "agentrun-v01-mgr-db", "key": "DATABASE_URL" } } - ], - "resources": { - "requests": { "cpu": "100m", "memory": "256Mi" }, - "limits": { "cpu": "800m", "memory": "1Gi" } - } - }, - { - "id": "agentrun-runner", - "component": "runner-job-template", - "enabled": true, - "serviceAccount": "agentrun-v01-runner", - "secretMounts": [ - { - "name": "codex-secret-projection", - "secretRef": { "name": "agentrun-v01-provider-codex", "keys": ["auth.json", "config.toml"] }, - "projectionPath": "/var/run/agentrun/secrets/codex-0", - "runtimeCopyPath": "/home/agentrun/.codex-codex", - "profile": "codex", - "readOnly": true, - "writableCopy": true - }, - { - "name": "deepseek-secret-projection", - "secretRef": { "name": "agentrun-v01-provider-deepseek", "keys": ["auth.json", "config.toml"] }, - "projectionPath": "/var/run/agentrun/secrets/deepseek-0", - "runtimeCopyPath": "/home/agentrun/.codex-deepseek", - "profile": "deepseek", - "readOnly": true, - "writableCopy": true - }, - { - "name": "minimax-m3-secret-projection", - "secretRef": { "name": "agentrun-v01-provider-minimax-m3", "keys": ["auth.json", "config.toml"] }, - "projectionPath": "/var/run/agentrun/secrets/minimax-m3-0", - "runtimeCopyPath": "/home/agentrun/.codex-minimax-m3", - "profile": "minimax-m3", - "readOnly": true, - "writableCopy": true - }, - { - "name": "dsflash-go-secret-projection", - "secretRef": { "name": "agentrun-v01-provider-dsflash-go", "keys": ["auth.json", "config.toml", "model-catalog.json"] }, - "projectionPath": "/var/run/agentrun/secrets/dsflash-go-0", - "runtimeCopyPath": "/home/agentrun/.codex-dsflash-go", - "profile": "dsflash-go", - "readOnly": true, - "writableCopy": true - } - ], - "env": [ - { "name": "HOME", "value": "/home/agentrun" }, - { "name": "AGENTRUN_LANE", "value": "v0.1" } - ], - "resources": { - "requests": { "cpu": "250m", "memory": "512Mi" }, - "limits": { "cpu": "2", "memory": "4Gi" } - } - } - ], - "postgres": { - "statefulSet": "agentrun-v01-postgres", - "service": "agentrun-v01-postgres", - "database": "agentrun_v01", - "secretRef": { "name": "agentrun-v01-postgres" }, - "dataPvc": "agentrun-v01-postgres-data" - } -}