Fix doc comment typo on validating & mutating webhook resources
This commit is contained in:
@@ -266,7 +266,7 @@ type ValidatingWebhook struct {
|
|||||||
// SideEffects states whether this webhook has side effects.
|
// SideEffects states whether this webhook has side effects.
|
||||||
// Acceptable values are: Unknown, None, Some, NoneOnDryRun
|
// Acceptable values are: Unknown, None, Some, NoneOnDryRun
|
||||||
// Webhooks with side effects MUST implement a reconciliation system, since a request may be
|
// 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.
|
// rejected by a future step in the admission chain and the side effects therefore need to be undone.
|
||||||
// Requests with the dryRun attribute will be auto-rejected if they match a webhook with
|
// Requests with the dryRun attribute will be auto-rejected if they match a webhook with
|
||||||
// sideEffects == Unknown or Some. Defaults to Unknown.
|
// sideEffects == Unknown or Some. Defaults to Unknown.
|
||||||
// +optional
|
// +optional
|
||||||
@@ -390,7 +390,7 @@ type MutatingWebhook struct {
|
|||||||
// SideEffects states whether this webhook has side effects.
|
// SideEffects states whether this webhook has side effects.
|
||||||
// Acceptable values are: Unknown, None, Some, NoneOnDryRun
|
// Acceptable values are: Unknown, None, Some, NoneOnDryRun
|
||||||
// Webhooks with side effects MUST implement a reconciliation system, since a request may be
|
// 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.
|
// rejected by a future step in the admission chain and the side effects therefore need to be undone.
|
||||||
// Requests with the dryRun attribute will be auto-rejected if they match a webhook with
|
// Requests with the dryRun attribute will be auto-rejected if they match a webhook with
|
||||||
// sideEffects == Unknown or Some. Defaults to Unknown.
|
// sideEffects == Unknown or Some. Defaults to Unknown.
|
||||||
// +optional
|
// +optional
|
||||||
|
@@ -276,7 +276,7 @@ type ValidatingWebhook struct {
|
|||||||
// SideEffects states whether this webhook has side effects.
|
// SideEffects states whether this webhook has side effects.
|
||||||
// Acceptable values are: None, NoneOnDryRun (webhooks created via v1beta1 may also specify Some or Unknown).
|
// Acceptable values are: None, NoneOnDryRun (webhooks created via v1beta1 may also specify Some or Unknown).
|
||||||
// Webhooks with side effects MUST implement a reconciliation system, since a request may be
|
// 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.
|
// rejected by a future step in the admission chain and the side effects therefore need to be undone.
|
||||||
// Requests with the dryRun attribute will be auto-rejected if they match a webhook with
|
// Requests with the dryRun attribute will be auto-rejected if they match a webhook with
|
||||||
// sideEffects == Unknown or Some.
|
// sideEffects == Unknown or Some.
|
||||||
SideEffects *SideEffectClass `json:"sideEffects" protobuf:"bytes,6,opt,name=sideEffects,casttype=SideEffectClass"`
|
SideEffects *SideEffectClass `json:"sideEffects" protobuf:"bytes,6,opt,name=sideEffects,casttype=SideEffectClass"`
|
||||||
@@ -405,7 +405,7 @@ type MutatingWebhook struct {
|
|||||||
// SideEffects states whether this webhook has side effects.
|
// SideEffects states whether this webhook has side effects.
|
||||||
// Acceptable values are: None, NoneOnDryRun (webhooks created via v1beta1 may also specify Some or Unknown).
|
// Acceptable values are: None, NoneOnDryRun (webhooks created via v1beta1 may also specify Some or Unknown).
|
||||||
// Webhooks with side effects MUST implement a reconciliation system, since a request may be
|
// 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.
|
// rejected by a future step in the admission chain and the side effects therefore need to be undone.
|
||||||
// Requests with the dryRun attribute will be auto-rejected if they match a webhook with
|
// Requests with the dryRun attribute will be auto-rejected if they match a webhook with
|
||||||
// sideEffects == Unknown or Some.
|
// sideEffects == Unknown or Some.
|
||||||
SideEffects *SideEffectClass `json:"sideEffects" protobuf:"bytes,6,opt,name=sideEffects,casttype=SideEffectClass"`
|
SideEffects *SideEffectClass `json:"sideEffects" protobuf:"bytes,6,opt,name=sideEffects,casttype=SideEffectClass"`
|
||||||
|
@@ -294,7 +294,7 @@ type ValidatingWebhook struct {
|
|||||||
// SideEffects states whether this webhook has side effects.
|
// SideEffects states whether this webhook has side effects.
|
||||||
// Acceptable values are: Unknown, None, Some, NoneOnDryRun
|
// Acceptable values are: Unknown, None, Some, NoneOnDryRun
|
||||||
// Webhooks with side effects MUST implement a reconciliation system, since a request may be
|
// 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.
|
// rejected by a future step in the admission chain and the side effects therefore need to be undone.
|
||||||
// Requests with the dryRun attribute will be auto-rejected if they match a webhook with
|
// Requests with the dryRun attribute will be auto-rejected if they match a webhook with
|
||||||
// sideEffects == Unknown or Some. Defaults to Unknown.
|
// sideEffects == Unknown or Some. Defaults to Unknown.
|
||||||
// +optional
|
// +optional
|
||||||
@@ -426,7 +426,7 @@ type MutatingWebhook struct {
|
|||||||
// SideEffects states whether this webhook has side effects.
|
// SideEffects states whether this webhook has side effects.
|
||||||
// Acceptable values are: Unknown, None, Some, NoneOnDryRun
|
// Acceptable values are: Unknown, None, Some, NoneOnDryRun
|
||||||
// Webhooks with side effects MUST implement a reconciliation system, since a request may be
|
// 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.
|
// rejected by a future step in the admission chain and the side effects therefore need to be undone.
|
||||||
// Requests with the dryRun attribute will be auto-rejected if they match a webhook with
|
// Requests with the dryRun attribute will be auto-rejected if they match a webhook with
|
||||||
// sideEffects == Unknown or Some. Defaults to Unknown.
|
// sideEffects == Unknown or Some. Defaults to Unknown.
|
||||||
// +optional
|
// +optional
|
||||||
|
Reference in New Issue
Block a user