From 9fa045e337ca6871efd4123d7f2dfb7f84d8e30c Mon Sep 17 00:00:00 2001 From: Bernd Schorgers Date: Mon, 11 Mar 2024 11:01:23 +0100 Subject: [PATCH] fix(common): Fix persistence schema --- .../library/common/schemas/persistence.json | 44 +++++++++++++++++++ 1 file changed, 44 insertions(+) diff --git a/charts/library/common/schemas/persistence.json b/charts/library/common/schemas/persistence.json index 3a7748b3..240c8e89 100644 --- a/charts/library/common/schemas/persistence.json +++ b/charts/library/common/schemas/persistence.json @@ -96,6 +96,28 @@ "identifier": { "type": "string" }, + "defaultMode": { + "type": "integer", + "format": "int32" + }, + "items": { + "type": "array", + "items": { + "type": "object", + "properties": { + "key": { + "type": "string" + }, + "mode": { + "format": "int32", + "type": "integer" + }, + "path": { + "type": "string" + } + } + } + }, "advancedMounts": {"$ref": "#/advancedMounts"}, "globalMounts": {"$ref": "#/globalMounts"} }, @@ -128,6 +150,28 @@ "identifier": { "type": "string" }, + "defaultMode": { + "type": "integer", + "format": "int32" + }, + "items": { + "type": "array", + "items": { + "type": "object", + "properties": { + "key": { + "type": "string" + }, + "mode": { + "format": "int32", + "type": "integer" + }, + "path": { + "type": "string" + } + } + } + }, "advancedMounts": {"$ref": "#/advancedMounts"}, "globalMounts": {"$ref": "#/globalMounts"} },