From 2853506a72b228e3902d2f7a68267a2162f477b3 Mon Sep 17 00:00:00 2001 From: Chris Farhood Date: Thu, 16 Apr 2026 20:04:18 -0400 Subject: [PATCH] feat: add serviceAccountName field to config schema Surface SA assignment in the Kubernetes section of the adapter UI. Co-Authored-By: Claude Opus 4.6 --- src/server/config-schema.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/server/config-schema.ts b/src/server/config-schema.ts index 98265bf..7c97a0f 100644 --- a/src/server/config-schema.ts +++ b/src/server/config-schema.ts @@ -42,6 +42,12 @@ export function getConfigSchema(): AdapterConfigSchema { default: true, }, // Kubernetes + { + type: "text", + key: "serviceAccountName", + label: "Service Account", + hint: "Service Account name for Job pods. Defaults to the cluster default.", + }, { type: "text", key: "namespace",