Skip to content

Commit

Permalink
fix: schemas gen (#259)
Browse files Browse the repository at this point in the history
* fix: schemas gen

Signed-off-by: Charles-Edouard Brétéché <[email protected]>

* schemas

Signed-off-by: Charles-Edouard Brétéché <[email protected]>

---------

Signed-off-by: Charles-Edouard Brétéché <[email protected]>
  • Loading branch information
eddycharly authored Jan 8, 2024
1 parent c42cc9b commit 6cced06
Show file tree
Hide file tree
Showing 493 changed files with 406,956 additions and 7 deletions.
16,682 changes: 16,682 additions & 0 deletions .schemas/json/_definitions.json

Large diffs are not rendered by default.

975 changes: 975 additions & 0 deletions .schemas/json/affinity-v1.json

Large diffs are not rendered by default.

78 changes: 78 additions & 0 deletions .schemas/json/aggregationrule-rbac-v1.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
{
"description": "AggregationRule describes how to locate ClusterRoles to aggregate into the ClusterRole",
"type": "object",
"properties": {
"clusterRoleSelectors": {
"description": "ClusterRoleSelectors holds a list of selectors which will be used to find ClusterRoles and create the rules. If any of the selectors match, then the ClusterRole's permissions will be added",
"type": [
"array",
"null"
],
"items": {
"description": "A label selector is a label query over a set of resources. The result of matchLabels and matchExpressions are ANDed. An empty label selector matches all objects. A null label selector matches no objects.",
"type": [
"object",
"null"
],
"properties": {
"matchExpressions": {
"description": "matchExpressions is a list of label selector requirements. The requirements are ANDed.",
"type": [
"array",
"null"
],
"items": {
"description": "A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.",
"type": [
"object",
"null"
],
"required": [
"key",
"operator"
],
"properties": {
"key": {
"description": "key is the label key that the selector applies to.",
"type": "string"
},
"operator": {
"description": "operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.",
"type": "string"
},
"values": {
"description": "values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.",
"type": [
"array",
"null"
],
"items": {
"type": [
"string",
"null"
]
}
}
}
}
},
"matchLabels": {
"description": "matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \"key\", the operator is \"In\", and the values array contains only \"value\". The requirements are ANDed.",
"type": [
"object",
"null"
],
"additionalProperties": {
"type": [
"string",
"null"
]
}
}
},
"x-kubernetes-map-type": "atomic"
}
}
},
"$schema": "http://json-schema.org/schema#"
}
Loading

0 comments on commit 6cced06

Please sign in to comment.