Ensure estimated cost limit is exceeded.

This commit is contained in:
Kermit Alexander 2022-06-08 17:40:50 +00:00
parent 6f66ed06f2
commit c58c02fcf9

View File

@ -196,14 +196,17 @@ var _ = SIGDescribe("CustomResourceValidationRules [Privileged:ClusterAdmin][Alp
"properties": {
"spec": {
"type": "object",
"x-kubernetes-validations": [{
"rule": "self.x.all(s, s == \"string constant\")"
}],
"properties": {
"x": {
"type": "array",
"items": {
"type": "string"
"type": "array",
"items": {
"type": "string"
},
"x-kubernetes-validations": [{
"rule": "self.all(s, s == \"string constant\")"
}]
}
}
}