Files
go/kubernetes/docs/V1beta1Webhook.md

16 lines
2.0 KiB
Markdown
Raw Normal View History

# V1beta1Webhook
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
2019-03-19 22:09:04 -07:00
**ClientConfig** | [**AdmissionregistrationV1beta1WebhookClientConfig**](admissionregistration.v1beta1.WebhookClientConfig.md) | |
**FailurePolicy** | **string** | FailurePolicy defines how unrecognized errors from the admission endpoint are handled - allowed values are Ignore or Fail. Defaults to Ignore. | [optional]
**Name** | **string** | The name of the admission webhook. Name should be fully qualified, e.g., imagepolicy.kubernetes.io, where \"imagepolicy\" is the name of the webhook, and kubernetes.io is the name of the organization. Required. |
**NamespaceSelector** | [**V1LabelSelector**](v1.LabelSelector.md) | | [optional]
**Rules** | [**[]V1beta1RuleWithOperations**](v1beta1.RuleWithOperations.md) | Rules describes what operations on what resources/subresources the webhook cares about. The webhook cares about an operation if it matches _any_ Rule. However, in order to prevent ValidatingAdmissionWebhooks and MutatingAdmissionWebhooks from putting the cluster in a state which cannot be recovered from without completely disabling the plugin, ValidatingAdmissionWebhooks and MutatingAdmissionWebhooks are never called on admission requests for ValidatingWebhookConfiguration and MutatingWebhookConfiguration objects. | [optional]
**SideEffects** | **string** | SideEffects states whether this webhookk has side effects. Acceptable values are: Unknown, None, Some, NoneOnDryRun Webhooks with side effects MUST implement a reconciliation system, since a request may be rejected by a future step in the admission change and the side effects therefore need to be undone. Requests with the dryRun attribute will be auto-rejected if they match a webhook with sideEffects == Unknown or Some. Defaults to Unknown. | [optional]
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)