From 147519643786cc38ad71483247d8367c13d71a02 Mon Sep 17 00:00:00 2001 From: Isaiah Olson Date: Sat, 13 Sep 2025 20:38:31 -0500 Subject: [PATCH] Update values schema for FoundationDB app chart Signed-off-by: Isaiah Olson --- packages/apps/foundationdb/values.schema.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/packages/apps/foundationdb/values.schema.json b/packages/apps/foundationdb/values.schema.json index d12a605f..039ed241 100644 --- a/packages/apps/foundationdb/values.schema.json +++ b/packages/apps/foundationdb/values.schema.json @@ -196,6 +196,23 @@ "default": true, "title": "Automatic replacements", "description": "Enable automatic pod replacements" + }, + "securityContext": { + "type": "object", + "title": "Security context", + "description": "Security context for containers", + "properties": { + "runAsUser": { + "type": "integer", + "title": "Run as user", + "description": "User ID to run the container" + }, + "runAsGroup": { + "type": "integer", + "title": "Run as group", + "description": "Group ID to run the container" + } + } } } }