From 53ffabfb8b9768db6fb0772cf798232528d4d8ba Mon Sep 17 00:00:00 2001 From: jimid27 Date: Wed, 18 Oct 2023 15:20:59 -0400 Subject: [PATCH] Add global param --- charts/prefect-server/values.schema.json | 6 ++++++ charts/prefect-worker/values.schema.json | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/charts/prefect-server/values.schema.json b/charts/prefect-server/values.schema.json index 19ffafa4..c0cf6856 100644 --- a/charts/prefect-server/values.schema.json +++ b/charts/prefect-server/values.schema.json @@ -797,6 +797,12 @@ "title": "Common", "description": "common configuration. Not set by user but required as common vars are passed to all manifests.", "form": true + }, + "global": { + "type": "object", + "title": "Global", + "description": "global configuration. Not set by user but required when prefect is referenced as a downstream Chart", + "form": true } } } diff --git a/charts/prefect-worker/values.schema.json b/charts/prefect-worker/values.schema.json index 97e50844..83d66535 100644 --- a/charts/prefect-worker/values.schema.json +++ b/charts/prefect-worker/values.schema.json @@ -573,6 +573,12 @@ "title": "Common", "description": "common configuration. Not set by user but required as common vars are passed to all manifests.", "form": true + }, + "global": { + "type": "object", + "title": "Global", + "description": "global configuration. Not set by user but required when prefect is referenced as a downstream Chart", + "form": true } } }