fix(katenaryfile): Schema is broken without json annotation

We need to add json annotation. The yaml annoation is not enought when
generating the schema.
This commit is contained in:
2025-07-15 21:24:17 +02:00
parent afbd6fc1ac
commit f2b5c16e71
2 changed files with 18 additions and 18 deletions

View File

@@ -1,7 +1,7 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$defs": {
"ConfigMapFile": {
"ConfigMapFiles": {
"items": {
"type": "string"
},
@@ -318,7 +318,7 @@
"description": "Services that should be injected in the Chart.yaml file"
},
"configmap-files": {
"$ref": "#/$defs/ConfigMapFile",
"$ref": "#/$defs/ConfigMapFiles",
"title": "ConfigMap Files",
"description": "Files that should be injected as ConfigMap"
},