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" + } + } + } + } } } }