From 391fae775a2d1058240717416972643c09716306 Mon Sep 17 00:00:00 2001 From: Misha Merkushin Date: Tue, 26 Nov 2024 16:42:16 +0300 Subject: [PATCH] fix: Update schema.json --- schema.json | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/schema.json b/schema.json index d47c6b2..6db99f0 100644 --- a/schema.json +++ b/schema.json @@ -9,7 +9,7 @@ "type": "object", "description": "Defines environment variables", "additionalProperties": { - "type": "string" + "type": ["string", "boolean", "number"] }, "examples": [ { "RAILS_ENV": "development" }, @@ -68,6 +68,14 @@ "description": "Options to pass to the 'docker-compose run' command", "examples": [["service-ports", "rm"]] }, + "compose_run_options": { + "type": "array", + "items": { + "type": "string" + }, + "description": "DEPRECATED: Options to pass to the 'docker-compose run' command", + "examples": [["service-ports", "rm"]] + }, "profiles": { "type": "array", "items": { @@ -90,6 +98,10 @@ "type": "string", "description": "Specifies the runner (e.g., docker_compose, kubectl)" }, + "pod": { + "type": "string", + "description": "Specifies the pod for the kubectl runner" + }, "subcommands": { "type": "object", "description": "Contains subcommands with the same structure as main commands", @@ -213,7 +225,7 @@ } }, "oneOf": [ - { "required": ["git", "ref"] }, + { "required": ["git"] }, { "required": ["path"] } ] }