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 +}