-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
16b5eb5
commit d0bc386
Showing
1,256 changed files
with
113,063 additions
and
0 deletions.
There are no files selected for viewing
27,242 changes: 27,242 additions & 0 deletions
27,242
src/kubernetes_validate/kubernetes-json-schema/v1.30.0-local-strict/_definitions.json
Large diffs are not rendered by default.
Oops, something went wrong.
21 changes: 21 additions & 0 deletions
21
src/kubernetes_validate/kubernetes-json-schema/v1.30.0-local-strict/affinity-v1.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{ | ||
"description": "Affinity is a group of affinity scheduling rules.", | ||
"properties": { | ||
"nodeAffinity": { | ||
"$ref": "/api/_definitions.json#/$defs/io.k8s.api.core.v1.NodeAffinity", | ||
"description": "Describes node affinity scheduling rules for the pod." | ||
}, | ||
"podAffinity": { | ||
"$ref": "/api/_definitions.json#/$defs/io.k8s.api.core.v1.PodAffinity", | ||
"description": "Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s))." | ||
}, | ||
"podAntiAffinity": { | ||
"$ref": "/api/_definitions.json#/$defs/io.k8s.api.core.v1.PodAntiAffinity", | ||
"description": "Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s))." | ||
} | ||
}, | ||
"type": "object", | ||
"$schema": "https://json-schema.org/draft/2020-12/schema", | ||
"additionalProperties": false, | ||
"$id": "https://kubernetes.io/api/affinity/v1" | ||
} |
20 changes: 20 additions & 0 deletions
20
...ernetes_validate/kubernetes-json-schema/v1.30.0-local-strict/aggregationrule-rbac-v1.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{ | ||
"description": "AggregationRule describes how to locate ClusterRoles to aggregate into the ClusterRole", | ||
"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", | ||
"items": { | ||
"$ref": "/api/_definitions.json#/$defs/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" | ||
}, | ||
"type": [ | ||
"array", | ||
"null" | ||
], | ||
"x-kubernetes-list-type": "atomic" | ||
} | ||
}, | ||
"type": "object", | ||
"$schema": "https://json-schema.org/draft/2020-12/schema", | ||
"additionalProperties": false, | ||
"$id": "https://kubernetes.io/api/aggregationrule/rbac/v1" | ||
} |
Oops, something went wrong.