From 7cdab79098584a1a781893f820e32b3121e6d30b Mon Sep 17 00:00:00 2001 From: Lilly Kwasneske Date: Tue, 3 Dec 2024 17:36:10 -0600 Subject: [PATCH] Add serviceMonitor field to Helm values.schema.json --- charts/external-dns/values.schema.json | 46 ++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) diff --git a/charts/external-dns/values.schema.json b/charts/external-dns/values.schema.json index 80378c7247..91e7b27e34 100644 --- a/charts/external-dns/values.schema.json +++ b/charts/external-dns/values.schema.json @@ -89,6 +89,52 @@ "type": "integer" } } + }, + "serviceMonitor": { + "type": "object", + "properties": { + "enabled": { + "type": "boolean" + }, + "namespace": { + "type": "string" + }, + "labels": { + "type": "object", + "additionalProperties": { + "type": "string" + } + }, + "interval": { + "type": "string" + }, + "path": { + "type": "string" + }, + "port": { + "type": "string" + }, + "scheme": { + "type": "string" + }, + "tlsConfig": { + "type": "object", + "properties": { + "insecureSkipVerify": { + "type": "boolean" + }, + "caFile": { + "type": "string" + }, + "certFile": { + "type": "string" + }, + "keyFile": { + "type": "string" + } + } + } + } } } }