Skip to content

Commit 3951169

Browse files
committed
v1.12.7 and v1.12.6 schemas batch
1 parent 5376c96 commit 3951169

File tree

3,828 files changed

+295528
-74100
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

3,828 files changed

+295528
-74100
lines changed

v1.12.6-local/_definitions.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -15572,7 +15572,7 @@
1557215572
"type": "string"
1557315573
},
1557415574
{
15575-
"type": "integer"
15575+
"type": "number"
1557615576
}
1557715577
]
1557815578
},

v1.12.6-local/allowedhostpath-extensions-v1beta1.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,10 @@
1010
},
1111
"readOnly": {
1212
"description": "when set to true, will allow host volumes matching the pathPrefix only if all volume mounts are readOnly.",
13-
"type": "boolean"
13+
"type": [
14+
"boolean",
15+
"null"
16+
]
1417
}
1518
},
1619
"$schema": "http://json-schema.org/schema#",

v1.12.6-local/allowedhostpath-policy-v1beta1.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,10 @@
1010
},
1111
"readOnly": {
1212
"description": "when set to true, will allow host volumes matching the pathPrefix only if all volume mounts are readOnly.",
13-
"type": "boolean"
13+
"type": [
14+
"boolean",
15+
"null"
16+
]
1417
}
1518
},
1619
"$schema": "http://json-schema.org/schema#",

v1.12.6-local/allowedhostpath.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,10 @@
1010
},
1111
"readOnly": {
1212
"description": "when set to true, will allow host volumes matching the pathPrefix only if all volume mounts are readOnly.",
13-
"type": "boolean"
13+
"type": [
14+
"boolean",
15+
"null"
16+
]
1417
}
1518
},
1619
"$schema": "http://json-schema.org/schema#",

v1.12.6-local/apiresource-meta-v1.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,10 @@
4444
},
4545
"namespaced": {
4646
"description": "namespaced indicates if a resource is namespaced or not.",
47-
"type": "boolean"
47+
"type": [
48+
"boolean",
49+
"null"
50+
]
4851
},
4952
"shortNames": {
5053
"description": "shortNames is a list of suggested short names of the resource.",

v1.12.6-local/apiresource.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,10 @@
4444
},
4545
"namespaced": {
4646
"description": "namespaced indicates if a resource is namespaced or not.",
47-
"type": "boolean"
47+
"type": [
48+
"boolean",
49+
"null"
50+
]
4851
},
4952
"shortNames": {
5053
"description": "shortNames is a list of suggested short names of the resource.",

v1.12.6-local/apiservicespec-apiregistration-v1.json

+12-3
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,18 @@
2323
},
2424
"groupPriorityMinimum": {
2525
"description": "GroupPriorityMininum is the priority this group should have at least. Higher priority means that the group is preferred by clients over lower priority ones. Note that other versions of this group might specify even higher GroupPriorityMininum values such that the whole group gets a higher priority. The primary sort is based on GroupPriorityMinimum, ordered highest number to lowest (20 before 10). The secondary sort is based on the alphabetical comparison of the name of the object. (v1.bar before v1.foo) We'd recommend something like: *.k8s.io (except extensions) at 18000 and PaaSes (OpenShift, Deis) are recommended to be in the 2000s",
26-
"type": "integer",
26+
"type": [
27+
"integer",
28+
"null"
29+
],
2730
"format": "int32"
2831
},
2932
"insecureSkipTLSVerify": {
3033
"description": "InsecureSkipTLSVerify disables TLS certificate verification when communicating with this server. This is strongly discouraged. You should use the CABundle instead.",
31-
"type": "boolean"
34+
"type": [
35+
"boolean",
36+
"null"
37+
]
3238
},
3339
"service": {
3440
"description": "Service is a reference to the service for this API server. It must communicate on port 443 If the Service is nil, that means the handling for the API groupversion is handled locally on this server. The call will simply delegate to the normal handler chain to be fulfilled.",
@@ -43,7 +49,10 @@
4349
},
4450
"versionPriority": {
4551
"description": "VersionPriority controls the ordering of this API version inside of its group. Must be greater than zero. The primary sort is based on VersionPriority, ordered highest to lowest (20 before 10). Since it's inside of a group, the number can be small, probably in the 10s. In case of equal version priorities, the version string will be used to compute the order inside a group. If the version string is \"kube-like\", it will sort above non \"kube-like\" version strings, which are ordered lexicographically. \"Kube-like\" versions start with a \"v\", then are followed by a number (the major version), then optionally the string \"alpha\" or \"beta\" and another number (the minor version). These are sorted first by GA > beta > alpha (where GA is a version with no suffix such as beta or alpha), and then by comparing major version, then minor version. An example sorted list of versions: v10, v2, v1, v11beta2, v10beta3, v3beta1, v12alpha1, v11alpha2, foo1, foo10.",
46-
"type": "integer",
52+
"type": [
53+
"integer",
54+
"null"
55+
],
4756
"format": "int32"
4857
}
4958
},

v1.12.6-local/apiservicespec-apiregistration-v1beta1.json

+12-3
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,18 @@
2323
},
2424
"groupPriorityMinimum": {
2525
"description": "GroupPriorityMininum is the priority this group should have at least. Higher priority means that the group is preferred by clients over lower priority ones. Note that other versions of this group might specify even higher GroupPriorityMininum values such that the whole group gets a higher priority. The primary sort is based on GroupPriorityMinimum, ordered highest number to lowest (20 before 10). The secondary sort is based on the alphabetical comparison of the name of the object. (v1.bar before v1.foo) We'd recommend something like: *.k8s.io (except extensions) at 18000 and PaaSes (OpenShift, Deis) are recommended to be in the 2000s",
26-
"type": "integer",
26+
"type": [
27+
"integer",
28+
"null"
29+
],
2730
"format": "int32"
2831
},
2932
"insecureSkipTLSVerify": {
3033
"description": "InsecureSkipTLSVerify disables TLS certificate verification when communicating with this server. This is strongly discouraged. You should use the CABundle instead.",
31-
"type": "boolean"
34+
"type": [
35+
"boolean",
36+
"null"
37+
]
3238
},
3339
"service": {
3440
"description": "Service is a reference to the service for this API server. It must communicate on port 443 If the Service is nil, that means the handling for the API groupversion is handled locally on this server. The call will simply delegate to the normal handler chain to be fulfilled.",
@@ -43,7 +49,10 @@
4349
},
4450
"versionPriority": {
4551
"description": "VersionPriority controls the ordering of this API version inside of its group. Must be greater than zero. The primary sort is based on VersionPriority, ordered highest to lowest (20 before 10). Since it's inside of a group, the number can be small, probably in the 10s. In case of equal version priorities, the version string will be used to compute the order inside a group. If the version string is \"kube-like\", it will sort above non \"kube-like\" version strings, which are ordered lexicographically. \"Kube-like\" versions start with a \"v\", then are followed by a number (the major version), then optionally the string \"alpha\" or \"beta\" and another number (the minor version). These are sorted first by GA > beta > alpha (where GA is a version with no suffix such as beta or alpha), and then by comparing major version, then minor version. An example sorted list of versions: v10, v2, v1, v11beta2, v10beta3, v3beta1, v12alpha1, v11alpha2, foo1, foo10.",
46-
"type": "integer",
52+
"type": [
53+
"integer",
54+
"null"
55+
],
4756
"format": "int32"
4857
}
4958
},

v1.12.6-local/apiservicespec.json

+12-3
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,18 @@
2323
},
2424
"groupPriorityMinimum": {
2525
"description": "GroupPriorityMininum is the priority this group should have at least. Higher priority means that the group is preferred by clients over lower priority ones. Note that other versions of this group might specify even higher GroupPriorityMininum values such that the whole group gets a higher priority. The primary sort is based on GroupPriorityMinimum, ordered highest number to lowest (20 before 10). The secondary sort is based on the alphabetical comparison of the name of the object. (v1.bar before v1.foo) We'd recommend something like: *.k8s.io (except extensions) at 18000 and PaaSes (OpenShift, Deis) are recommended to be in the 2000s",
26-
"type": "integer",
26+
"type": [
27+
"integer",
28+
"null"
29+
],
2730
"format": "int32"
2831
},
2932
"insecureSkipTLSVerify": {
3033
"description": "InsecureSkipTLSVerify disables TLS certificate verification when communicating with this server. This is strongly discouraged. You should use the CABundle instead.",
31-
"type": "boolean"
34+
"type": [
35+
"boolean",
36+
"null"
37+
]
3238
},
3339
"service": {
3440
"description": "Service is a reference to the service for this API server. It must communicate on port 443 If the Service is nil, that means the handling for the API groupversion is handled locally on this server. The call will simply delegate to the normal handler chain to be fulfilled.",
@@ -43,7 +49,10 @@
4349
},
4450
"versionPriority": {
4551
"description": "VersionPriority controls the ordering of this API version inside of its group. Must be greater than zero. The primary sort is based on VersionPriority, ordered highest to lowest (20 before 10). Since it's inside of a group, the number can be small, probably in the 10s. In case of equal version priorities, the version string will be used to compute the order inside a group. If the version string is \"kube-like\", it will sort above non \"kube-like\" version strings, which are ordered lexicographically. \"Kube-like\" versions start with a \"v\", then are followed by a number (the major version), then optionally the string \"alpha\" or \"beta\" and another number (the minor version). These are sorted first by GA > beta > alpha (where GA is a version with no suffix such as beta or alpha), and then by comparing major version, then minor version. An example sorted list of versions: v10, v2, v1, v11beta2, v10beta3, v3beta1, v12alpha1, v11alpha2, foo1, foo10.",
46-
"type": "integer",
52+
"type": [
53+
"integer",
54+
"null"
55+
],
4756
"format": "int32"
4857
}
4958
},

v1.12.6-local/awselasticblockstorevolumesource-v1.json

+8-2
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,18 @@
1313
},
1414
"partition": {
1515
"description": "The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as \"1\". Similarly, the volume partition for /dev/sda is \"0\" (or you can leave the property empty).",
16-
"type": "integer",
16+
"type": [
17+
"integer",
18+
"null"
19+
],
1720
"format": "int32"
1821
},
1922
"readOnly": {
2023
"description": "Specify \"true\" to force and set the ReadOnly property in VolumeMounts to \"true\". If omitted, the default is \"false\". More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore",
21-
"type": "boolean"
24+
"type": [
25+
"boolean",
26+
"null"
27+
]
2228
},
2329
"volumeID": {
2430
"description": "Unique ID of the persistent disk resource in AWS (Amazon EBS volume). More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore",

v1.12.6-local/awselasticblockstorevolumesource.json

+8-2
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,18 @@
1313
},
1414
"partition": {
1515
"description": "The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as \"1\". Similarly, the volume partition for /dev/sda is \"0\" (or you can leave the property empty).",
16-
"type": "integer",
16+
"type": [
17+
"integer",
18+
"null"
19+
],
1720
"format": "int32"
1821
},
1922
"readOnly": {
2023
"description": "Specify \"true\" to force and set the ReadOnly property in VolumeMounts to \"true\". If omitted, the default is \"false\". More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore",
21-
"type": "boolean"
24+
"type": [
25+
"boolean",
26+
"null"
27+
]
2228
},
2329
"volumeID": {
2430
"description": "Unique ID of the persistent disk resource in AWS (Amazon EBS volume). More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore",

v1.12.6-local/azurediskvolumesource-v1.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,10 @@
4242
},
4343
"readOnly": {
4444
"description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
45-
"type": "boolean"
45+
"type": [
46+
"boolean",
47+
"null"
48+
]
4649
}
4750
},
4851
"$schema": "http://json-schema.org/schema#",

v1.12.6-local/azurediskvolumesource.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,10 @@
4242
},
4343
"readOnly": {
4444
"description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
45-
"type": "boolean"
45+
"type": [
46+
"boolean",
47+
"null"
48+
]
4649
}
4750
},
4851
"$schema": "http://json-schema.org/schema#",

v1.12.6-local/azurefilepersistentvolumesource-v1.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,10 @@
77
"properties": {
88
"readOnly": {
99
"description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
10-
"type": "boolean"
10+
"type": [
11+
"boolean",
12+
"null"
13+
]
1114
},
1215
"secretName": {
1316
"description": "the name of secret that contains Azure Storage Account Name and Key",

v1.12.6-local/azurefilepersistentvolumesource.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,10 @@
77
"properties": {
88
"readOnly": {
99
"description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
10-
"type": "boolean"
10+
"type": [
11+
"boolean",
12+
"null"
13+
]
1114
},
1215
"secretName": {
1316
"description": "the name of secret that contains Azure Storage Account Name and Key",

v1.12.6-local/azurefilevolumesource-v1.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,10 @@
77
"properties": {
88
"readOnly": {
99
"description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
10-
"type": "boolean"
10+
"type": [
11+
"boolean",
12+
"null"
13+
]
1114
},
1215
"secretName": {
1316
"description": "the name of secret that contains Azure Storage Account Name and Key",

v1.12.6-local/azurefilevolumesource.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,10 @@
77
"properties": {
88
"readOnly": {
99
"description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.",
10-
"type": "boolean"
10+
"type": [
11+
"boolean",
12+
"null"
13+
]
1114
},
1215
"secretName": {
1316
"description": "the name of secret that contains Azure Storage Account Name and Key",

v1.12.6-local/cephfspersistentvolumesource-v1.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,10 @@
2626
},
2727
"readOnly": {
2828
"description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it",
29-
"type": "boolean"
29+
"type": [
30+
"boolean",
31+
"null"
32+
]
3033
},
3134
"secretFile": {
3235
"description": "Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it",

v1.12.6-local/cephfspersistentvolumesource.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,10 @@
2626
},
2727
"readOnly": {
2828
"description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it",
29-
"type": "boolean"
29+
"type": [
30+
"boolean",
31+
"null"
32+
]
3033
},
3134
"secretFile": {
3235
"description": "Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it",

v1.12.6-local/cephfsvolumesource-v1.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,10 @@
2626
},
2727
"readOnly": {
2828
"description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it",
29-
"type": "boolean"
29+
"type": [
30+
"boolean",
31+
"null"
32+
]
3033
},
3134
"secretFile": {
3235
"description": "Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it",

v1.12.6-local/cephfsvolumesource.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,10 @@
2626
},
2727
"readOnly": {
2828
"description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it",
29-
"type": "boolean"
29+
"type": [
30+
"boolean",
31+
"null"
32+
]
3033
},
3134
"secretFile": {
3235
"description": "Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it",

v1.12.6-local/certificatesigningrequestspec-certificates-v1beta1.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,10 @@
66
"properties": {
77
"extra": {
88
"description": "Extra information about the requesting user. See user.Info interface for details.",
9-
"type": "object",
9+
"type": [
10+
"object",
11+
"null"
12+
],
1013
"additionalProperties": {
1114
"type": [
1215
"array",

v1.12.6-local/certificatesigningrequestspec.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,10 @@
66
"properties": {
77
"extra": {
88
"description": "Extra information about the requesting user. See user.Info interface for details.",
9-
"type": "object",
9+
"type": [
10+
"object",
11+
"null"
12+
],
1013
"additionalProperties": {
1114
"type": [
1215
"array",

v1.12.6-local/cinderpersistentvolumesource-v1.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,10 @@
1313
},
1414
"readOnly": {
1515
"description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md",
16-
"type": "boolean"
16+
"type": [
17+
"boolean",
18+
"null"
19+
]
1720
},
1821
"secretRef": {
1922
"description": "Optional: points to a secret object containing parameters used to connect to OpenStack.",

v1.12.6-local/cinderpersistentvolumesource.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,10 @@
1313
},
1414
"readOnly": {
1515
"description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md",
16-
"type": "boolean"
16+
"type": [
17+
"boolean",
18+
"null"
19+
]
1720
},
1821
"secretRef": {
1922
"description": "Optional: points to a secret object containing parameters used to connect to OpenStack.",

v1.12.6-local/cindervolumesource-v1.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,10 @@
1313
},
1414
"readOnly": {
1515
"description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md",
16-
"type": "boolean"
16+
"type": [
17+
"boolean",
18+
"null"
19+
]
1720
},
1821
"secretRef": {
1922
"description": "Optional: points to a secret object containing parameters used to connect to OpenStack.",

0 commit comments

Comments
 (0)