Skip to content

Commit

Permalink
adding extended schemas for 1.8.11, 1.8.10, 1.8.9 and 1.8.8
Browse files Browse the repository at this point in the history
  • Loading branch information
garethr committed Apr 6, 2019
1 parent 1426f2e commit 89dfc93
Show file tree
Hide file tree
Showing 12,368 changed files with 4,353,313 additions and 1,400,284 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
24,843 changes: 12,627 additions & 12,216 deletions v1.8.10-local/_definitions.json

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"description": "AdmissionHookClientConfig contains the information to make a TLS connection with the webhook",
"required": [
"service",
"caBundle"
],
"properties": {
"caBundle": {
"description": "CABundle is a PEM encoded CA bundle which will be used to validate webhook's server certificate. Required",
"type": [
"string",
"null"
],
"format": "byte"
},
"service": {
"description": "Service is a reference to the service for this webhook. If there is only one port open for the service, that port will be used. If there are multiple ports open, port 443 will be used if it is open, otherwise it is an error. Required",
"$ref": "_definitions.json#/definitions/io.k8s.api.admissionregistration.v1alpha1.ServiceReference"
}
},
"$schema": "http://json-schema.org/schema#",
"type": "object"
}
22 changes: 11 additions & 11 deletions v1.8.10-local/admissionhookclientconfig.json
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
{
"$schema": "http://json-schema.org/schema#",
"description": "AdmissionHookClientConfig contains the information to make a TLS connection with the webhook",
"required": [
"service",
"service",
"caBundle"
],
"type": "object",
"description": "AdmissionHookClientConfig contains the information to make a TLS connection with the webhook",
],
"properties": {
"caBundle": {
"description": "CABundle is a PEM encoded CA bundle which will be used to validate webhook's server certificate. Required",
"type": [
"string",
"string",
"null"
],
"description": "CABundle is a PEM encoded CA bundle which will be used to validate webhook's server certificate. Required",
],
"format": "byte"
},
},
"service": {
"description": "Service is a reference to the service for this webhook. If there is only one port open for the service, that port will be used. If there are multiple ports open, port 443 will be used if it is open, otherwise it is an error. Required",
"description": "Service is a reference to the service for this webhook. If there is only one port open for the service, that port will be used. If there are multiple ports open, port 443 will be used if it is open, otherwise it is an error. Required",
"$ref": "_definitions.json#/definitions/io.k8s.api.admissionregistration.v1alpha1.ServiceReference"
}
}
},
"$schema": "http://json-schema.org/schema#",
"type": "object"
}
19 changes: 19 additions & 0 deletions v1.8.10-local/affinity-v1.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"description": "Affinity is a group of affinity scheduling rules.",
"properties": {
"nodeAffinity": {
"description": "Describes node affinity scheduling rules for the pod.",
"$ref": "_definitions.json#/definitions/io.k8s.api.core.v1.NodeAffinity"
},
"podAffinity": {
"description": "Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s)).",
"$ref": "_definitions.json#/definitions/io.k8s.api.core.v1.PodAffinity"
},
"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)).",
"$ref": "_definitions.json#/definitions/io.k8s.api.core.v1.PodAntiAffinity"
}
},
"$schema": "http://json-schema.org/schema#",
"type": "object"
}
21 changes: 17 additions & 4 deletions v1.8.10-local/affinity.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,19 @@
{
"$schema": "http://json-schema.org/schema#",
"type": "object",
"description": "Deprecated. Please use io.k8s.api.core.v1.Affinity instead.",
"$ref": "_definitions.json#/definitions/io.k8s.api.core.v1.Affinity"
"description": "Affinity is a group of affinity scheduling rules.",
"properties": {
"nodeAffinity": {
"description": "Describes node affinity scheduling rules for the pod.",
"$ref": "_definitions.json#/definitions/io.k8s.api.core.v1.NodeAffinity"
},
"podAffinity": {
"description": "Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s)).",
"$ref": "_definitions.json#/definitions/io.k8s.api.core.v1.PodAffinity"
},
"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)).",
"$ref": "_definitions.json#/definitions/io.k8s.api.core.v1.PodAntiAffinity"
}
},
"$schema": "http://json-schema.org/schema#",
"type": "object"
}
Loading

0 comments on commit 89dfc93

Please sign in to comment.