Skip to content

Commit 4d96251

Browse files
committed
Add OpenShift 4.14 APIs
1 parent 24c7d3d commit 4d96251

File tree

232 files changed

+22526
-4914
lines changed

Some content is hidden

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

232 files changed

+22526
-4914
lines changed

_topic_maps/_topic_map.yml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3077,6 +3077,10 @@ Topics:
30773077
File: alertmanager-monitoring-coreos-com-v1
30783078
- Name: 'AlertmanagerConfig [monitoring.coreos.com/v1beta1]'
30793079
File: alertmanagerconfig-monitoring-coreos-com-v1beta1
3080+
- Name: 'AlertRelabelConfig [monitoring.openshift.io/v1]'
3081+
File: alertrelabelconfig-monitoring-openshift-io-v1
3082+
- Name: 'AlertingRule [monitoring.openshift.io/v1]'
3083+
File: alertingrule-monitoring-openshift-io-v1
30803084
- Name: 'PodMonitor [monitoring.coreos.com/v1]'
30813085
File: podmonitor-monitoring-coreos-com-v1
30823086
- Name: 'Probe [monitoring.coreos.com/v1]'
@@ -3094,6 +3098,8 @@ Topics:
30943098
Topics:
30953099
- Name: About Network APIs
30963100
File: network-apis-index
3101+
- Name: 'AdminPolicyBasedExternalRoute [k8s.ovn.org/v1]'
3102+
File: adminpolicybasedexternalroute-k8s-ovn-org-v1
30973103
- Name: 'CloudPrivateIPConfig [cloud.network.openshift.io/v1]'
30983104
File: cloudprivateipconfig-cloud-network-openshift-io-v1
30993105
- Name: 'EgressFirewall [k8s.ovn.org/v1]'
@@ -3312,14 +3318,14 @@ Topics:
33123318
File: appliedclusterresourcequota-quota-openshift-io-v1
33133319
- Name: 'ClusterResourceQuota [quota.openshift.io/v1]'
33143320
File: clusterresourcequota-quota-openshift-io-v1
3315-
- Name: 'FlowSchema [flowcontrol.apiserver.k8s.io/v1beta1]'
3316-
File: flowschema-flowcontrol-apiserver-k8s-io-v1beta1
3321+
- Name: 'FlowSchema [flowcontrol.apiserver.k8s.io/v1beta3]'
3322+
File: flowschema-flowcontrol-apiserver-k8s-io-v1beta3
33173323
- Name: 'LimitRange [undefined/v1]'
33183324
File: limitrange-v1
33193325
- Name: 'PriorityClass [scheduling.k8s.io/v1]'
33203326
File: priorityclass-scheduling-k8s-io-v1
3321-
- Name: 'PriorityLevelConfiguration [flowcontrol.apiserver.k8s.io/v1beta1]'
3322-
File: prioritylevelconfiguration-flowcontrol-apiserver-k8s-io-v1beta1
3327+
- Name: 'PriorityLevelConfiguration [flowcontrol.apiserver.k8s.io/v1beta3]'
3328+
File: prioritylevelconfiguration-flowcontrol-apiserver-k8s-io-v1beta3
33233329
- Name: 'ResourceQuota [undefined/v1]'
33243330
File: resourcequota-v1
33253331
- Name: Security APIs

api-config.yaml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -255,6 +255,12 @@ apiMap:
255255
- kind: AlertmanagerConfig
256256
group: monitoring.coreos.com
257257
version: v1beta1
258+
- kind: AlertRelabelConfig
259+
group: monitoring.openshift.io
260+
version: v1
261+
- kind: AlertingRule
262+
group: monitoring.openshift.io
263+
version: v1
258264
- kind: PodMonitor
259265
group: monitoring.coreos.com
260266
version: v1
@@ -279,6 +285,9 @@ apiMap:
279285
# - kind: ClusterNetwork
280286
# group: network.openshift.io
281287
# version: v1
288+
- kind: AdminPolicyBasedExternalRoute
289+
group: k8s.ovn.org
290+
version: v1
282291
- kind: CloudPrivateIPConfig
283292
group: cloud.network.openshift.io
284293
version: v1
@@ -574,15 +583,15 @@ apiMap:
574583
version: v1
575584
- kind: FlowSchema
576585
group: flowcontrol.apiserver.k8s.io
577-
version: v1beta1
586+
version: v1beta3
578587
- kind: LimitRange
579588
version: v1
580589
- kind: PriorityClass
581590
group: scheduling.k8s.io
582591
version: v1
583592
- kind: PriorityLevelConfiguration
584593
group: flowcontrol.apiserver.k8s.io
585-
version: v1beta1
594+
version: v1beta3
586595
- kind: ResourceQuota
587596
version: v1
588597
- name: Security APIs

rest_api/authorization_apis/localresourceaccessreview-authorization-openshift-io-v1.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,10 +113,10 @@ The following API endpoints are available:
113113
| fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
114114
| `fieldValidation`
115115
| `string`
116-
| fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default when the `ServerSideFieldValidation` feature gate is enabled. - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.
116+
| fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.
117117
| `pretty`
118118
| `string`
119-
| If 'true', then the output is pretty printed.
119+
| If 'true', then the output is pretty printed.
120120
|===
121121

122122
HTTP method::

rest_api/authorization_apis/localsubjectaccessreview-authorization-k8s-io-v1.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -247,10 +247,10 @@ The following API endpoints are available:
247247
| fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
248248
| `fieldValidation`
249249
| `string`
250-
| fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default when the `ServerSideFieldValidation` feature gate is enabled. - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.
250+
| fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.
251251
| `pretty`
252252
| `string`
253-
| If 'true', then the output is pretty printed.
253+
| If 'true', then the output is pretty printed.
254254
|===
255255

256256
HTTP method::

rest_api/authorization_apis/localsubjectaccessreview-authorization-openshift-io-v1.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -128,10 +128,10 @@ The following API endpoints are available:
128128
| fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
129129
| `fieldValidation`
130130
| `string`
131-
| fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default when the `ServerSideFieldValidation` feature gate is enabled. - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.
131+
| fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.
132132
| `pretty`
133133
| `string`
134-
| If 'true', then the output is pretty printed.
134+
| If 'true', then the output is pretty printed.
135135
|===
136136

137137
HTTP method::

rest_api/authorization_apis/resourceaccessreview-authorization-openshift-io-v1.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,10 +105,10 @@ The following API endpoints are available:
105105
| fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
106106
| `fieldValidation`
107107
| `string`
108-
| fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default when the `ServerSideFieldValidation` feature gate is enabled. - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.
108+
| fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.
109109
| `pretty`
110110
| `string`
111-
| If 'true', then the output is pretty printed.
111+
| If 'true', then the output is pretty printed.
112112
|===
113113

114114
HTTP method::

rest_api/authorization_apis/selfsubjectaccessreview-authorization-k8s-io-v1.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -206,10 +206,10 @@ The following API endpoints are available:
206206
| fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
207207
| `fieldValidation`
208208
| `string`
209-
| fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default when the `ServerSideFieldValidation` feature gate is enabled. - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.
209+
| fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.
210210
| `pretty`
211211
| `string`
212-
| If 'true', then the output is pretty printed.
212+
| If 'true', then the output is pretty printed.
213213
|===
214214

215215
HTTP method::

rest_api/authorization_apis/selfsubjectrulesreview-authorization-k8s-io-v1.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -231,10 +231,10 @@ The following API endpoints are available:
231231
| fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
232232
| `fieldValidation`
233233
| `string`
234-
| fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default when the `ServerSideFieldValidation` feature gate is enabled. - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.
234+
| fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.
235235
| `pretty`
236236
| `string`
237-
| If 'true', then the output is pretty printed.
237+
| If 'true', then the output is pretty printed.
238238
|===
239239

240240
HTTP method::

0 commit comments

Comments
 (0)