fix(schema): Fix serviceMonitor schema

This commit is contained in:
Bernd Schorgers 2024-04-09 15:21:01 +02:00
parent 0a42b82a82
commit 2a8fad9001
No known key found for this signature in database
GPG key ID: BC5E2BD907F9A8EC

View file

@ -27,6 +27,12 @@
"additionalProperties": false,
"properties": {
"matchLabels": {
"type": "object",
"additionalProperties": {
"type": "string"
}
},
"matchExpressions": {
"type": "array",
"items": {
"type": "object",
@ -40,9 +46,6 @@
}
}
}
},
"matchExpressions": {
"type": "object"
}
}
},