From cc445461e023ac6fa7bc1d873297ee2ddb3b5b52 Mon Sep 17 00:00:00 2001 From: Chris Farhood Date: Sat, 25 Apr 2026 20:32:00 +0000 Subject: [PATCH] fix: remove duplicate serviceAccountName field in config schema Prior commit from remote + this branch both added the field; deduplicate, keeping the entry at the top of the Kubernetes group. Co-Authored-By: Claude Sonnet 4.6 --- src/server/config-schema.ts | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/server/config-schema.ts b/src/server/config-schema.ts index dd54f73..5de12ad 100644 --- a/src/server/config-schema.ts +++ b/src/server/config-schema.ts @@ -167,13 +167,6 @@ export function getConfigSchema(): AdapterConfigSchema { hint: "When a running Job for the same task is found after a server restart, reattach (stream logs and await completion) instead of blocking", group: "Kubernetes", }, - { - key: "serviceAccountName", - label: "Service Account", - type: "text", - hint: "Kubernetes ServiceAccount name for the Job pod; defaults to the namespace 'default' SA. Use a dedicated SA (e.g. paperclip-developer) when the Job needs API access.", - group: "Kubernetes", - }, // Operational fields (timeoutSec and graceSec are provided by the platform) ],