From f6da54511f9900458a89ac1abb37e9c02318ea50 Mon Sep 17 00:00:00 2001 From: Arghya Sadhu Date: Tue, 29 Oct 2019 19:25:22 +0530 Subject: [PATCH] Fix typo in admission webhook --- pkg/apis/admissionregistration/types.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/apis/admissionregistration/types.go b/pkg/apis/admissionregistration/types.go index 9b9cb24adde..3fa9a075102 100644 --- a/pkg/apis/admissionregistration/types.go +++ b/pkg/apis/admissionregistration/types.go @@ -263,7 +263,7 @@ type ValidatingWebhook struct { // +optional ObjectSelector *metav1.LabelSelector - // SideEffects states whether this webhookk has side effects. + // SideEffects states whether this webhook 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. @@ -387,7 +387,7 @@ type MutatingWebhook struct { // +optional ObjectSelector *metav1.LabelSelector - // SideEffects states whether this webhookk has side effects. + // SideEffects states whether this webhook 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.