From 942e61a90fb0ab6411fc77063658670d014fd974 Mon Sep 17 00:00:00 2001 From: Zadkiel Aharonian Date: Wed, 10 Jan 2024 21:18:56 +0100 Subject: [PATCH] fix: add missing shellpod config in schema (#2451) Signed-off-by: GitHub --- internal/config/json/schemas/k9s.json | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/internal/config/json/schemas/k9s.json b/internal/config/json/schemas/k9s.json index 6b17e24f..7830fdfd 100644 --- a/internal/config/json/schemas/k9s.json +++ b/internal/config/json/schemas/k9s.json @@ -55,7 +55,17 @@ "additionalProperties": { "type": "string" }, "required": [] }, - "tty": { "type": "boolean" } + "tty": { "type": "boolean" }, + "imagePullPolicy": { "type": "string" }, + "imagePullSecrets": { + "type": "array", + "items": { + "type": "object", + "properties": { + "name": { "type": "string" } + } + } + } }, "required": ["image", "namespace", "limits"] }, @@ -120,4 +130,4 @@ } }, "required": ["k9s"] -} \ No newline at end of file +}