From e61f4b3a1f3505a67f04b0525b222f1bc536da2e Mon Sep 17 00:00:00 2001 From: ihaardik Date: Wed, 15 Apr 2026 16:53:54 +0530 Subject: [PATCH] fix: allow countly image tag or digest overrides --- charts/countly/values.schema.json | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/charts/countly/values.schema.json b/charts/countly/values.schema.json index a959976..5d2595e 100644 --- a/charts/countly/values.schema.json +++ b/charts/countly/values.schema.json @@ -101,8 +101,18 @@ "string", "null" ], - "pattern": "^sha256:[a-f0-9]{64}$", - "description": "Image digest (takes precedence over tag when set)" + "anyOf": [ + { + "pattern": "^sha256:[a-f0-9]{64}$" + }, + { + "const": "" + }, + { + "type": "null" + } + ], + "description": "Image digest (takes precedence over tag when set). Leave empty or null to use the tag." }, "tag": { "type": "string",