From 7f52624b9fba85bcf0580cfe0033b462697e58fa Mon Sep 17 00:00:00 2001 From: Marcell Nagy Date: Thu, 17 Oct 2024 08:38:01 +0100 Subject: [PATCH] Add missing globals dictionary to schema --- Schemas/ioc-instance.schema.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/Schemas/ioc-instance.schema.json b/Schemas/ioc-instance.schema.json index a981594..cdfc77d 100644 --- a/Schemas/ioc-instance.schema.json +++ b/Schemas/ioc-instance.schema.json @@ -121,6 +121,23 @@ }, "tolerations": { "$ref": "https://kubernetesjsonschema.dev/v1.18.1/_definitions.json#/definitions/io.k8s.api.core.v1.PodSpec/properties/tolerations" + }, + "global": { + "type": "object", + "description": "Shared values for all services. Globals are passed to all subcharts", + "properties": { + "location": { + "$ref": "#/$defs/base/properties/location" + }, + "ioc_group": { + "$ref": "#/$defs/base/properties/ioc_group" + }, + "enabled": { + "type": "boolean", + "description": "Set to true to start a service", + "default": "true" + } + } } }, "additionalProperties": false