fix: add missing shellpod config in schema (#2451)

Signed-off-by: GitHub <noreply@github.com>
mine
Zadkiel Aharonian 2024-01-10 21:18:56 +01:00 committed by GitHub
parent 268def2834
commit 942e61a90f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 12 additions and 2 deletions

View File

@ -55,7 +55,17 @@
"additionalProperties": { "type": "string" }, "additionalProperties": { "type": "string" },
"required": [] "required": []
}, },
"tty": { "type": "boolean" } "tty": { "type": "boolean" },
"imagePullPolicy": { "type": "string" },
"imagePullSecrets": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": { "type": "string" }
}
}
}
}, },
"required": ["image", "namespace", "limits"] "required": ["image", "namespace", "limits"]
}, },
@ -120,4 +130,4 @@
} }
}, },
"required": ["k9s"] "required": ["k9s"]
} }