Merge pull request #41208 from windsonsea/crdy

[zh] sync custom-resource-definition-v1.md
This commit is contained in:
Kubernetes Prow Robot 2023-05-19 08:32:30 -07:00 committed by GitHub
commit 64c635c626
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 106 additions and 81 deletions

View File

@ -1,8 +1,9 @@
---
title: "扩展资源"
weight: 7
auto_generated: true
---
<!--
title: "Extend Resources"
weight: 7
auto_generated: true
-->

View File

@ -33,9 +33,9 @@ CustomResourceDefinition 表示应在 API 服务器上公开的资源。其名
<hr>
- **apiVersion**: apiextensions.k8s.io/v1
- **apiVersion**apiextensions.k8s.io/v1
- **kind**: CustomResourceDefinition
- **kind**CustomResourceDefinition
- **metadata** (<a href="{{< ref "../common-definitions/object-meta#ObjectMeta" >}}">ObjectMeta</a>)
<!--
@ -416,7 +416,7 @@ CustomResourceDefinitionSpec 描述了用户希望资源的呈现方式。
- **conversion.strategy** (string), required
strategy specifies how custom resources are converted between versions. Allowed values are: - `None`: The converter only change the apiVersion and would not touch any other field in the custom resource. - `Webhook`: API Server will call to an external webhook to do the conversion. Additional information
strategy specifies how custom resources are converted between versions. Allowed values are: - `"None"`: The converter only change the apiVersion and would not touch any other field in the custom resource. - `"Webhook"`: API Server will call to an external webhook to do the conversion. Additional information
is needed for this option. This requires spec.preserveUnknownFields to be false, and spec.conversion.webhook to be set.
-->
@ -426,17 +426,17 @@ CustomResourceDefinitionSpec 描述了用户希望资源的呈现方式。
strategy 指定如何在版本之间转换自定义资源。允许的值为:
- `None`:转换器仅更改 apiVersion 并且不会触及自定义资源中的任何其他字段。
- `Webhook`API 服务器将调用外部 Webhook 进行转换。此选项需要其他信息。这要求
spec.preserveUnknownFields 为 false并且设置 spec.conversion.webhook。
- `"None"`:转换器仅更改 apiVersion 并且不会触及自定义资源中的任何其他字段。
- `"Webhook"`API 服务器将调用外部 Webhook 进行转换。此选项需要其他信息。这要求
spec.preserveUnknownFields 为 false并且设置 spec.conversion.webhook。
- **conversion.webhook** (WebhookConversion)
<!--
webhook describes how to call the conversion webhook. Required when `strategy` is set to `Webhook`.
webhook describes how to call the conversion webhook. Required when `strategy` is set to `"Webhook"`.
-->
webhook 描述了如何调用转换 Webhook。当 `strategy` 设置为 `Webhook` 时有效。
webhook 描述了如何调用转换 Webhook。当 `strategy` 设置为 `"Webhook"` 时有效。
<a name="WebhookConversion"></a>
<!--
@ -922,7 +922,7 @@ JSONSchemaProps 是JSON 模式JSON-Schema遵循其规范草案第 4 版
The `apiVersion`, `kind`, `metadata.name` and `metadata.generateName` are always accessible from the root of the object and from any x-kubernetes-embedded-resource annotated objects. No other metadata properties are accessible.
-->
`apiVersion`, `kind`, `metadata.name``metadata.generateName` 总是可以从对象的根和任何带
`apiVersion`、`kind`、`metadata.name``metadata.generateName` 总是可以从对象的根和任何带
x-kubernetes-embedded-resource 注解的对象访问。其他元数据属性都无法访问。
<!--
@ -993,7 +993,23 @@ JSONSchemaProps 是JSON 模式JSON-Schema遵循其规范草案第 4 版
message 表示验证失败时显示的消息。如果规则包含换行符,则需要该消息。消息不能包含换行符。
如果未设置,则消息为 "failed rule: {Rule}",如:"must be a URL with the host matching spec.host"
- **x-kubernetes-validations.messageExpression** (string)
<!--
MessageExpression declares a CEL expression that evaluates to the validation failure message that is returned when this rule fails. Since messageExpression is used as a failure message, it must evaluate to a string. If both message and messageExpression are present on a rule, then messageExpression will be used if validation fails. If messageExpression results in a runtime error, the runtime error is logged, and the validation failure message is produced as if the messageExpression field were unset. If messageExpression evaluates to an empty string, a string with only spaces, or a string that contains line breaks, then the validation failure message will also be produced as if the messageExpression field were unset, and the fact that messageExpression produced an empty string/string with only spaces/string with line breaks will be logged. messageExpression has access to all the same variables as the rule; the only difference is the return type. Example: "x must be less than max ("+string(self.max)+")"
-->
messageExpression 声明一个 CEL 表达式,其计算结果是此规则失败时返回的验证失败消息。
由于 messageExpression 用作失败消息,因此它的值必须是一个字符串。
如果在规则中同时存在 message 和 messageExpression则在验证失败时使用 messageExpression。
如果是 messageExpression 出现运行时错误,则会记录运行时错误,并生成验证失败消息,
就好像未设置 messageExpression 字段一样。如果 messageExpression 求值为空字符串、
只包含空格的字符串或包含换行符的字符串,则验证失败消息也将像未设置 messageExpression 字段一样生成,
并记录 messageExpression 生成空字符串/只包含空格的字符串/包含换行符的字符串的事实。
messageExpression 可以访问的变量与规则相同;唯一的区别是返回类型。
例如:"x must be less than max ("+string(self.max)+")"。
## CustomResourceDefinitionStatus {#CustomResourceDefinitionStatus}
<!--
CustomResourceDefinitionStatus indicates the state of the CustomResourceDefinition
-->
@ -1030,7 +1046,7 @@ CustomResourceDefinitionStatus 表示 CustomResourceDefinition 的状态。
plural is the plural name of the resource to serve. The custom resources are served under `/apis/\<group>/\<version>/.../\<plural>`. Must match the name of the CustomResourceDefinition (in the form `\<names.plural>.\<group>`). Must be all lowercase.
-->
- **acceptedNames.plural** (string), required
- **acceptedNames.plural** (string),必需
plural 是所提供的资源的复数名称,自定义资源在 `/apis/<group>/<version>/.../<plural>` 下提供。
必须与 CustomResourceDefinition 的名称匹配(格式为 `<names.plural>.<group>`)。必须全部小写。
@ -1162,7 +1178,7 @@ CustomResourceDefinitionList 是 CustomResourceDefinition 对象的列表。
- **items** ([]<a href="{{< ref "../extend-resources/custom-resource-definition-v1#CustomResourceDefinition" >}}">CustomResourceDefinition</a>),必需
items 列出单个 CustomResourceDefinition 对象
items 列出单个 CustomResourceDefinition 对象
- **apiVersion** (string)
@ -1179,8 +1195,9 @@ CustomResourceDefinitionList 是 CustomResourceDefinition 对象的列表。
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
-->
kind 是一个字符串值,表示该对象所表示的 REST 资源。服务器可以从客户端提交请求的端点推断出 REST 资源。不能被更新。驼峰命名。
更多信息: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
kind 是一个字符串值,表示该对象所表示的 REST 资源。服务器可以从客户端提交请求的端点推断出 REST 资源。
不能被更新。驼峰命名。更多信息:
https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
- **metadata** (<a href="{{< ref "../common-definitions/list-meta#ListMeta" >}}">ListMeta</a>)
@ -1216,7 +1233,7 @@ GET /apis/apiextensions.k8s.io/v1/customresourcedefinitions/{name}
- **name** **路径参数**string必需
CustomResourceDefinition 的名称
CustomResourceDefinition 的名称
- **pretty** <!--(*in query*):-->**查询参数**string
@ -1253,7 +1270,7 @@ GET /apis/apiextensions.k8s.io/v1/customresourcedefinitions/{name}/status
- **name** **路径参数**string必需
CustomResourceDefinition 的名称
CustomResourceDefinition 的名称
- **pretty** <!--(*in query*):-->**查询参数**string
@ -1316,6 +1333,10 @@ GET /apis/apiextensions.k8s.io/v1/customresourcedefinitions
<a href="{{< ref "../common-parameters/common-parameters#resourceVersionMatch" >}}">resourceVersionMatch</a>
- **sendInitialEvents** <!--(*in query*):-->**查询参数**: boolean
<a href="{{< ref "../common-parameters/common-parameters#sendInitialEvents" >}}">sendInitialEvents</a>
- **timeoutSeconds** <!--(*in query*):-->**查询参数**integer
<a href="{{< ref "../common-parameters/common-parameters#timeoutSeconds" >}}">timeoutSeconds</a>
@ -1406,7 +1427,7 @@ PUT /apis/apiextensions.k8s.io/v1/customresourcedefinitions/{name}
- **name** **路径参数**string必需
CustomResourceDefinition 的名称
CustomResourceDefinition 的名称
- **body**: <a href="{{< ref "../extend-resources/custom-resource-definition-v1#CustomResourceDefinition" >}}">CustomResourceDefinition</a>,必需
@ -1461,7 +1482,7 @@ PUT /apis/apiextensions.k8s.io/v1/customresourcedefinitions/{name}/status
- **name** **路径参数**string必需
CustomResourceDefinition 的名称
CustomResourceDefinition 的名称
- **body**: <a href="{{< ref "../extend-resources/custom-resource-definition-v1#CustomResourceDefinition" >}}">CustomResourceDefinition</a>,必需
@ -1516,7 +1537,7 @@ PATCH /apis/apiextensions.k8s.io/v1/customresourcedefinitions/{name}
- **name** **路径参数**string必需
CustomResourceDefinition 的名称
CustomResourceDefinition 的名称
- **body**: <a href="{{< ref "../common-definitions/patch#Patch" >}}">Patch</a>,必需
@ -1575,7 +1596,7 @@ PATCH /apis/apiextensions.k8s.io/v1/customresourcedefinitions/{name}/status
- **name** **路径参数**string必需
CustomResourceDefinition 的名称
CustomResourceDefinition 的名称
- **body**: <a href="{{< ref "../common-definitions/patch#Patch" >}}">Patch</a>,必需
@ -1632,7 +1653,7 @@ DELETE /apis/apiextensions.k8s.io/v1/customresourcedefinitions/{name}
- **name** **路径参数**string必需
CustomResourceDefinition 的名称
CustomResourceDefinition 的名称
- **body**: <a href="{{< ref "../common-definitions/delete-options#DeleteOptions" >}}">DeleteOptions</a>
@ -1721,6 +1742,10 @@ DELETE /apis/apiextensions.k8s.io/v1/customresourcedefinitions
<a href="{{< ref "../common-parameters/common-parameters#resourceVersionMatch" >}}">resourceVersionMatch</a>
- **sendInitialEvents** <!--(*in query*):-->**查询参数**: boolean
<a href="{{< ref "../common-parameters/common-parameters#sendInitialEvents" >}}">sendInitialEvents</a>
- **timeoutSeconds** <!--(*in query*):-->**查询参数**integer
<a href="{{< ref "../common-parameters/common-parameters#timeoutSeconds" >}}">timeoutSeconds</a>
@ -1733,4 +1758,3 @@ DELETE /apis/apiextensions.k8s.io/v1/customresourcedefinitions
200 (<a href="{{< ref "../common-definitions/status#Status" >}}">Status</a>): OK
401: Unauthorized

View File

@ -29,15 +29,13 @@ weight: 3
<!--
MutatingWebhookConfiguration describes the configuration of and admission webhook that accept or reject and may change the object.
-->
MutatingWebhookConfiguration 描述准入 Webhook 的配置,该 Webhook 可接受或拒绝对象请求,并且可能变更对象。
<hr>
- **apiVersion**: admissionregistration.k8s.io/v1
- **kind**: MutatingWebhookConfiguration
- **apiVersion**admissionregistration.k8s.io/v1
- **kind**MutatingWebhookConfiguration
<!--
- **metadata** (<a href="{{< ref "../common-definitions/object-meta#ObjectMeta" >}}">ObjectMeta</a>)
@ -220,7 +218,8 @@ MutatingWebhookConfiguration 描述准入 Webhook 的配置,该 Webhook 可接
- **webhooks.sideEffects** (string), 必需
sideEffects 说明此 Webhook 是否有副作用。可接受的值为None、NoneOnDryRun通过 v1beta1 创建的 Webhook 也可以指定 Some 或 Unknown
sideEffects 说明此 Webhook 是否有副作用。可接受的值为None、NoneOnDryRun
(通过 v1beta1 创建的 Webhook 也可以指定 Some 或 Unknown
具有副作用的 Webhook 必须实现协调系统,因为请求可能会被准入链中的未来步骤拒绝,因此需要能够撤消副作用。
如果请求与带有 sideEffects == Unknown 或 Some 的 Webhook 匹配,则带有 dryRun 属性的请求将被自动拒绝。
@ -302,7 +301,7 @@ MutatingWebhookConfiguration 描述准入 Webhook 的配置,该 Webhook 可接
- 'object' - 来自传入请求的对象。对于 DELETE 请求,该值为 null。
- 'oldObject' - 现有对象。对于 CREATE 请求,该值为 null。
- 'request' - 准入请求的属性(/pkg/apis/admission/types.go#AdmissionRequest)。
- 'authorizer' - CEL 授权者。可用于对请求的主体(用户或服务帐户)执行授权检查。
- 'authorizer' - CEL 授权者。可用于对请求的主体(用户或服务账号)执行授权检查。
<!--
See https://pkg.go.dev/k8s.io/apiserver/pkg/cel/library#Authz
@ -500,7 +499,7 @@ MutatingWebhookConfiguration 描述准入 Webhook 的配置,该 Webhook 可接
- **webhooks.rules.apiGroups** ([]string)
*Atomic: 将在合并期间被替换*
**Atomic: 将在合并期间被替换**
apiGroups 是资源所属的 API 组列表。`*` 是所有组。
如果存在 `*`,则列表的长度必须为 1。必需。
@ -515,7 +514,7 @@ MutatingWebhookConfiguration 描述准入 Webhook 的配置,该 Webhook 可接
- **webhooks.rules.apiVersions** ([]string)
*Atomic: 将在合并期间被替换*
**Atomic: 将在合并期间被替换**
apiVersions 是资源所属的 API 版本列表。`*` 是所有版本。
如果存在 `*`,则列表的长度必须为 1。必需。
@ -530,7 +529,7 @@ MutatingWebhookConfiguration 描述准入 Webhook 的配置,该 Webhook 可接
- **webhooks.rules.operations** ([]string)
*Atomic: 将在合并期间被替换*
**Atomic: 将在合并期间被替换**
operations 是准入 Webhook 所关心的操作 —— CREATE、UPDATE、DELETE、CONNECT
或用来指代所有已知操作以及将来可能添加的准入操作的 `*`
@ -552,7 +551,7 @@ MutatingWebhookConfiguration 描述准入 Webhook 的配置,该 Webhook 可接
- **webhooks.rules.resources** ([]string)
*Atomic: 将在合并期间被替换*
**Atomic: 将在合并期间被替换**
resources 是此规则适用的资源列表。
@ -613,7 +612,8 @@ MutatingWebhookConfigurationList 是 MutatingWebhookConfiguration 的列表。
- **metadata** (<a href="{{< ref "../common-definitions/list-meta#ListMeta" >}}">ListMeta</a>)
标准的对象元数据,更多信息: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds。
标准的对象元数据,更多信息:
https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
<!--
- **items** ([]<a href="{{< ref "../extend-resources/mutating-webhook-configuration-v1#MutatingWebhookConfiguration" >}}">MutatingWebhookConfiguration</a>), required
@ -652,7 +652,7 @@ GET /apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations/{name}
-->
#### 参数
- **name** (**路径参数**): string, 必需
- **name****路径参数**string, 必需
MutatingWebhookConfiguration 的名称。
@ -663,7 +663,7 @@ GET /apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations/{name}
-->
- **pretty** (**查询参数**): string
- **pretty****查询参数**string
<a href="{{< ref "../common-parameters/common-parameters#pretty" >}}">pretty</a>
@ -696,7 +696,7 @@ GET /apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations
-->
#### 参数
- **allowWatchBookmarks** (**查询参数**): boolean
- **allowWatchBookmarks****查询参数**boolean
<a href="{{< ref "../common-parameters/common-parameters#allowWatchBookmarks" >}}">allowWatchBookmarks</a>
@ -706,7 +706,7 @@ GET /apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations
<a href="{{< ref "../common-parameters/common-parameters#continue" >}}">continue</a>
-->
- **continue** (**查询参数**): string
- **continue****查询参数**string
<a href="{{< ref "../common-parameters/common-parameters#continue" >}}">continue</a>
@ -716,7 +716,7 @@ GET /apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations
<a href="{{< ref "../common-parameters/common-parameters#fieldSelector" >}}">fieldSelector</a>
-->
- **fieldSelector** (**查询参数**): string
- **fieldSelector****查询参数**string
<a href="{{< ref "../common-parameters/common-parameters#fieldSelector" >}}">fieldSelector</a>
@ -726,7 +726,7 @@ GET /apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations
<a href="{{< ref "../common-parameters/common-parameters#labelSelector" >}}">labelSelector</a>
-->
- **fieldSelector** (**查询参数**): string
- **fieldSelector****查询参数**string
<a href="{{< ref "../common-parameters/common-parameters#fieldSelector" >}}">fieldSelector</a>
@ -736,7 +736,7 @@ GET /apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations
<a href="{{< ref "../common-parameters/common-parameters#limit" >}}">limit</a>
-->
- **limit** (**查询参数**): integer
- **limit****查询参数**integer
<a href="{{< ref "../common-parameters/common-parameters#limit" >}}">limit</a>
@ -746,7 +746,7 @@ GET /apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations
<a href="{{< ref "../common-parameters/common-parameters#pretty" >}}">pretty</a>
-->
- **pretty** (**查询参数**): string
- **pretty****查询参数**string
<a href="{{< ref "../common-parameters/common-parameters#pretty" >}}">pretty</a>
@ -756,7 +756,7 @@ GET /apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations
<a href="{{< ref "../common-parameters/common-parameters#resourceVersion" >}}">resourceVersion</a>
-->
- **resourceVersion** (**查询参数**): string
- **resourceVersion****查询参数**string
<a href="{{< ref "../common-parameters/common-parameters#resourceVersion" >}}">resourceVersion</a>
@ -766,7 +766,7 @@ GET /apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations
<a href="{{< ref "../common-parameters/common-parameters#resourceVersionMatch" >}}">resourceVersionMatch</a>
-->
- **resourceVersionMatch** (**查询参数**): string
- **resourceVersionMatch****查询参数**string
<a href="{{< ref "../common-parameters/common-parameters#resourceVersionMatch" >}}">resourceVersionMatch</a>
@ -775,7 +775,7 @@ GET /apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations
<a href="{{< ref "../common-parameters/common-parameters#sendInitialEvents" >}}">sendInitialEvents</a>
-->
- **sendInitialEvents** (**查询参数**): boolean
- **sendInitialEvents****查询参数**boolean
<a href="{{< ref "../common-parameters/common-parameters#sendInitialEvents" >}}">sendInitialEvents</a>
@ -785,7 +785,7 @@ GET /apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations
<a href="{{< ref "../common-parameters/common-parameters#timeoutSeconds" >}}">timeoutSeconds</a>
-->
- **timeoutSeconds** (**查询参数**): integer
- **timeoutSeconds****查询参数**integer
<a href="{{< ref "../common-parameters/common-parameters#timeoutSeconds" >}}">timeoutSeconds</a>
@ -795,7 +795,7 @@ GET /apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations
<a href="{{< ref "../common-parameters/common-parameters#watch" >}}">watch</a>
-->
- **watch** (**查询参数**): boolean
- **watch****查询参数**boolean
<a href="{{< ref "../common-parameters/common-parameters#watch" >}}">watch</a>
@ -835,7 +835,7 @@ POST /apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations
<a href="{{< ref "../common-parameters/common-parameters#dryRun" >}}">dryRun</a>
-->
- **dryRun** (**查询参数**): string
- **dryRun****查询参数**string
<a href="{{< ref "../common-parameters/common-parameters#dryRun" >}}">dryRun</a>
@ -845,7 +845,7 @@ POST /apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations
<a href="{{< ref "../common-parameters/common-parameters#fieldManager" >}}">fieldManager</a>
-->
- **fieldManager** (**查询参数**): string
- **fieldManager****查询参数**string
<a href="{{< ref "../common-parameters/common-parameters#fieldManager" >}}">fieldManager</a>
@ -855,7 +855,7 @@ POST /apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations
<a href="{{< ref "../common-parameters/common-parameters#fieldValidation" >}}">fieldValidation</a>
-->
- **fieldValidation** (**查询参数**): string
- **fieldValidation****查询参数**string
<a href="{{< ref "../common-parameters/common-parameters#fieldValidation" >}}">fieldValidation</a>
@ -865,7 +865,7 @@ POST /apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations
<a href="{{< ref "../common-parameters/common-parameters#pretty" >}}">pretty</a>
-->
- **pretty** (**查询参数**): string
- **pretty****查询参数**string
<a href="{{< ref "../common-parameters/common-parameters#pretty" >}}">pretty</a>
@ -902,7 +902,7 @@ PUT /apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations/{name}
-->
#### 参数
- **name** (**路径参数**): string, 必需
- **name****路径参数**string, 必需
MutatingWebhookConfiguration 的名称。
@ -918,7 +918,7 @@ PUT /apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations/{name}
<a href="{{< ref "../common-parameters/common-parameters#dryRun" >}}">dryRun</a>
-->
- **dryRun** (**查询参数**): string
- **dryRun****查询参数**string
<a href="{{< ref "../common-parameters/common-parameters#dryRun" >}}">dryRun</a>
@ -928,7 +928,7 @@ PUT /apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations/{name}
<a href="{{< ref "../common-parameters/common-parameters#fieldManager" >}}">fieldManager</a>
-->
- **fieldManager** (**查询参数**): string
- **fieldManager****查询参数**string
<a href="{{< ref "../common-parameters/common-parameters#fieldManager" >}}">fieldManager</a>
@ -938,7 +938,7 @@ PUT /apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations/{name}
<a href="{{< ref "../common-parameters/common-parameters#fieldValidation" >}}">fieldValidation</a>
-->
- **fieldValidation** (**查询参数**): string
- **fieldValidation****查询参数**string
<a href="{{< ref "../common-parameters/common-parameters#fieldValidation" >}}">fieldValidation</a>
@ -948,7 +948,7 @@ PUT /apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations/{name}
<a href="{{< ref "../common-parameters/common-parameters#pretty" >}}">pretty</a>
-->
- **pretty** (**查询参数**): string
- **pretty****查询参数**string
<a href="{{< ref "../common-parameters/common-parameters#pretty" >}}">pretty</a>
@ -983,7 +983,7 @@ PATCH /apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations/{name}
-->
#### 参数
- **name** (**路径参数**): string, 必需
- **name****路径参数**string, 必需
MutatingWebhookConfiguration 的名称。
@ -999,7 +999,7 @@ PATCH /apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations/{name}
<a href="{{< ref "../common-parameters/common-parameters#dryRun" >}}">dryRun</a>
-->
- **dryRun** (**查询参数**): string
- **dryRun****查询参数**string
<a href="{{< ref "../common-parameters/common-parameters#dryRun" >}}">dryRun</a>
@ -1009,7 +1009,7 @@ PATCH /apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations/{name}
<a href="{{< ref "../common-parameters/common-parameters#fieldManager" >}}">fieldManager</a>
-->
- **fieldManager** (**查询参数**): string
- **fieldManager****查询参数**string
<a href="{{< ref "../common-parameters/common-parameters#fieldManager" >}}">fieldManager</a>
@ -1019,7 +1019,7 @@ PATCH /apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations/{name}
<a href="{{< ref "../common-parameters/common-parameters#fieldValidation" >}}">fieldValidation</a>
-->
- **fieldValidation** (**查询参数**): string
- **fieldValidation****查询参数**string
<a href="{{< ref "../common-parameters/common-parameters#fieldValidation" >}}">fieldValidation</a>
@ -1029,7 +1029,7 @@ PATCH /apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations/{name}
<a href="{{< ref "../common-parameters/common-parameters#force" >}}">force</a>
-->
- **force** (**查询参数**): boolean
- **force****查询参数**boolean
<a href="{{< ref "../common-parameters/common-parameters#force" >}}">force</a>
@ -1039,7 +1039,7 @@ PATCH /apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations/{name}
<a href="{{< ref "../common-parameters/common-parameters#pretty" >}}">pretty</a>
-->
- **pretty** (**查询参数**): string
- **pretty****查询参数**string
<a href="{{< ref "../common-parameters/common-parameters#pretty" >}}">pretty</a>
@ -1074,7 +1074,7 @@ DELETE /apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations/{name
-->
#### 参数
- **name** (**路径参数**): string, 必需
- **name****路径参数**string, 必需
MutatingWebhookConfiguration 的名称。
@ -1086,7 +1086,7 @@ DELETE /apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations/{name
<a href="{{< ref "../common-parameters/common-parameters#dryRun" >}}">dryRun</a>
-->
- **dryRun** (**查询参数**): string
- **dryRun****查询参数**string
<a href="{{< ref "../common-parameters/common-parameters#dryRun" >}}">dryRun</a>
@ -1096,7 +1096,7 @@ DELETE /apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations/{name
<a href="{{< ref "../common-parameters/common-parameters#gracePeriodSeconds" >}}">gracePeriodSeconds</a>
-->
- **gracePeriodSeconds** (**查询参数**): integer
- **gracePeriodSeconds****查询参数**integer
<a href="{{< ref "../common-parameters/common-parameters#gracePeriodSeconds" >}}">gracePeriodSeconds</a>
@ -1106,7 +1106,7 @@ DELETE /apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations/{name
<a href="{{< ref "../common-parameters/common-parameters#pretty" >}}">pretty</a>
-->
- **pretty** (**查询参数**): string
- **pretty****查询参数**string
<a href="{{< ref "../common-parameters/common-parameters#pretty" >}}">pretty</a>
@ -1116,7 +1116,7 @@ DELETE /apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations/{name
<a href="{{< ref "../common-parameters/common-parameters#propagationPolicy" >}}">propagationPolicy</a>
-->
- **propagationPolicy** (**查询参数**): string
- **propagationPolicy****查询参数**string
<a href="{{< ref "../common-parameters/common-parameters#propagationPolicy" >}}">propagationPolicy</a>
@ -1155,7 +1155,7 @@ DELETE /apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations
<a href="{{< ref "../common-parameters/common-parameters#continue" >}}">continue</a>
-->
- **continue** (**查询参数**): string
- **continue****查询参数**string
<a href="{{< ref "../common-parameters/common-parameters#continue" >}}">continue</a>
@ -1165,7 +1165,7 @@ DELETE /apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations
<a href="{{< ref "../common-parameters/common-parameters#dryRun" >}}">dryRun</a>
-->
- **dryRun** (**查询参数**): string
- **dryRun****查询参数**string
<a href="{{< ref "../common-parameters/common-parameters#dryRun" >}}">dryRun</a>
@ -1175,7 +1175,7 @@ DELETE /apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations
<a href="{{< ref "../common-parameters/common-parameters#fieldSelector" >}}">fieldSelector</a>
-->
- **fieldSelector** (**查询参数**): string
- **fieldSelector****查询参数**string
<a href="{{< ref "../common-parameters/common-parameters#fieldSelector" >}}">fieldSelector</a>
@ -1185,7 +1185,7 @@ DELETE /apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations
<a href="{{< ref "../common-parameters/common-parameters#gracePeriodSeconds" >}}">gracePeriodSeconds</a>
-->
- **gracePeriodSeconds** (**查询参数**): integer
- **gracePeriodSeconds****查询参数**integer
<a href="{{< ref "../common-parameters/common-parameters#gracePeriodSeconds" >}}">gracePeriodSeconds</a>
@ -1195,7 +1195,7 @@ DELETE /apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations
<a href="{{< ref "../common-parameters/common-parameters#labelSelector" >}}">labelSelector</a>
-->
- **labelSelector** (**查询参数**): string
- **labelSelector****查询参数**string
<a href="{{< ref "../common-parameters/common-parameters#labelSelector" >}}">labelSelector</a>
@ -1205,7 +1205,7 @@ DELETE /apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations
<a href="{{< ref "../common-parameters/common-parameters#limit" >}}">limit</a>
-->
- **limit** (**查询参数**): integer
- **limit****查询参数**integer
<a href="{{< ref "../common-parameters/common-parameters#limit" >}}">limit</a>
@ -1215,7 +1215,7 @@ DELETE /apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations
<a href="{{< ref "../common-parameters/common-parameters#pretty" >}}">pretty</a>
-->
- **pretty** (**查询参数**): string
- **pretty****查询参数**string
<a href="{{< ref "../common-parameters/common-parameters#pretty" >}}">pretty</a>
@ -1225,7 +1225,7 @@ DELETE /apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations
<a href="{{< ref "../common-parameters/common-parameters#propagationPolicy" >}}">propagationPolicy</a>
-->
- **propagationPolicy** (**查询参数**): string
- **propagationPolicy****查询参数**string
<a href="{{< ref "../common-parameters/common-parameters#propagationPolicy" >}}">propagationPolicy</a>
@ -1235,7 +1235,7 @@ DELETE /apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations
<a href="{{< ref "../common-parameters/common-parameters#resourceVersion" >}}">resourceVersion</a>
-->
- **resourceVersion** (**查询参数**): string
- **resourceVersion****查询参数**string
<a href="{{< ref "../common-parameters/common-parameters#resourceVersion" >}}">resourceVersion</a>
@ -1245,7 +1245,7 @@ DELETE /apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations
<a href="{{< ref "../common-parameters/common-parameters#resourceVersionMatch" >}}">resourceVersionMatch</a>
-->
- **resourceVersionMatch** (**查询参数**): string
- **resourceVersionMatch****查询参数**string
<a href="{{< ref "../common-parameters/common-parameters#resourceVersionMatch" >}}">resourceVersionMatch</a>
@ -1254,7 +1254,7 @@ DELETE /apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations
<a href="{{< ref "../common-parameters/common-parameters#sendInitialEvents" >}}">sendInitialEvents</a>
-->
- **sendInitialEvents** (**查询参数**): boolean
- **sendInitialEvents****查询参数**boolean
<a href="{{< ref "../common-parameters/common-parameters#sendInitialEvents" >}}">sendInitialEvents</a>
@ -1264,7 +1264,7 @@ DELETE /apis/admissionregistration.k8s.io/v1/mutatingwebhookconfigurations
<a href="{{< ref "../common-parameters/common-parameters#timeoutSeconds" >}}">timeoutSeconds</a>
-->
- **timeoutSeconds** (**查询参数**): integer
- **timeoutSeconds****查询参数**integer
<a href="{{< ref "../common-parameters/common-parameters#timeoutSeconds" >}}">timeoutSeconds</a>