-
Notifications
You must be signed in to change notification settings - Fork 771
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add: Support the deletion protection of service and ingress (#1269)
Signed-off-by: kevin1689 <kevinyang1689@163.com>
- Loading branch information
1 parent
6bb78c4
commit 04254fb
Showing
11 changed files
with
495 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
/* | ||
Copyright 2023 The Kruise Authors. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
package webhook | ||
|
||
import ( | ||
"github.com/openkruise/kruise/pkg/features" | ||
utilfeature "github.com/openkruise/kruise/pkg/util/feature" | ||
"github.com/openkruise/kruise/pkg/webhook/ingress/validating" | ||
) | ||
|
||
func init() { | ||
addHandlersWithGate(validating.HandlerMap, func() (enabled bool) { | ||
return utilfeature.DefaultFeatureGate.Enabled(features.ResourcesDeletionProtection) | ||
}) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
/* | ||
Copyright 2023 The Kruise Authors. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
package webhook | ||
|
||
import ( | ||
"github.com/openkruise/kruise/pkg/features" | ||
utilfeature "github.com/openkruise/kruise/pkg/util/feature" | ||
"github.com/openkruise/kruise/pkg/webhook/service/validating" | ||
) | ||
|
||
func init() { | ||
addHandlersWithGate(validating.HandlerMap, func() (enabled bool) { | ||
return utilfeature.DefaultFeatureGate.Enabled(features.ResourcesDeletionProtection) | ||
}) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
/* | ||
Copyright 2023 The Kruise Authors. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
package validating | ||
|
||
import ( | ||
"context" | ||
"net/http" | ||
|
||
"github.com/openkruise/kruise/pkg/webhook/util/deletionprotection" | ||
admissionv1 "k8s.io/api/admission/v1" | ||
networkingv1 "k8s.io/api/networking/v1" | ||
networkingv1beta1 "k8s.io/api/networking/v1beta1" | ||
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" | ||
"k8s.io/klog/v2" | ||
"sigs.k8s.io/controller-runtime/pkg/client" | ||
"sigs.k8s.io/controller-runtime/pkg/runtime/inject" | ||
"sigs.k8s.io/controller-runtime/pkg/webhook/admission" | ||
) | ||
|
||
type IngressHandler struct { | ||
Client client.Client | ||
|
||
// Decoder decodes objects | ||
Decoder *admission.Decoder | ||
} | ||
|
||
var _ admission.Handler = &IngressHandler{} | ||
|
||
// Handle handles admission requests. | ||
func (h *IngressHandler) Handle(ctx context.Context, req admission.Request) admission.Response { | ||
if req.AdmissionRequest.Operation != admissionv1.Delete || req.AdmissionRequest.SubResource != "" { | ||
return admission.ValidationResponse(true, "") | ||
} | ||
if len(req.OldObject.Raw) == 0 { | ||
klog.Warningf("Skip to validate ingress %s deletion for no old object, maybe because of Kubernetes version < 1.16", req.Name) | ||
return admission.ValidationResponse(true, "") | ||
} | ||
|
||
var metaObj metav1.Object | ||
switch req.Kind.Version { | ||
case "v1beta1": | ||
obj := &networkingv1beta1.Ingress{} | ||
if err := h.Decoder.DecodeRaw(req.AdmissionRequest.OldObject, obj); err != nil { | ||
return admission.Errored(http.StatusBadRequest, err) | ||
} | ||
metaObj = obj | ||
case "v1": | ||
obj := &networkingv1.Ingress{} | ||
if err := h.Decoder.DecodeRaw(req.AdmissionRequest.OldObject, obj); err != nil { | ||
return admission.Errored(http.StatusBadRequest, err) | ||
} | ||
metaObj = obj | ||
} | ||
|
||
if err := deletionprotection.ValidateIngressDeletion(metaObj); err != nil { | ||
return admission.Errored(http.StatusForbidden, err) | ||
} | ||
return admission.ValidationResponse(true, "") | ||
} | ||
|
||
var _ inject.Client = &IngressHandler{} | ||
|
||
func (h *IngressHandler) InjectClient(c client.Client) error { | ||
h.Client = c | ||
return nil | ||
} | ||
|
||
var _ admission.DecoderInjector = &IngressHandler{} | ||
|
||
func (h *IngressHandler) InjectDecoder(d *admission.Decoder) error { | ||
h.Decoder = d | ||
return nil | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
/* | ||
Copyright 2023 The Kruise Authors. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
package validating | ||
|
||
import "sigs.k8s.io/controller-runtime/pkg/webhook/admission" | ||
|
||
// +kubebuilder:webhook:path=/validate-ingress,mutating=false,failurePolicy=fail,sideEffects=None,admissionReviewVersions=v1;v1beta1,groups=networking.k8s.io,resources=ingresses,verbs=delete,versions=v1;v1beta1,name=vingress.kb.io | ||
|
||
var ( | ||
// HandlerMap contains admission webhook handlers | ||
HandlerMap = map[string]admission.Handler{ | ||
"validate-ingress": &IngressHandler{}, | ||
} | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
/* | ||
Copyright 2023 The Kruise Authors. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
package validating | ||
|
||
import ( | ||
"context" | ||
"net/http" | ||
|
||
"github.com/openkruise/kruise/pkg/webhook/util/deletionprotection" | ||
admissionv1 "k8s.io/api/admission/v1" | ||
v1 "k8s.io/api/core/v1" | ||
"k8s.io/klog/v2" | ||
"sigs.k8s.io/controller-runtime/pkg/client" | ||
"sigs.k8s.io/controller-runtime/pkg/runtime/inject" | ||
"sigs.k8s.io/controller-runtime/pkg/webhook/admission" | ||
) | ||
|
||
type ServiceHandler struct { | ||
Client client.Client | ||
|
||
// Decoder decodes objects | ||
Decoder *admission.Decoder | ||
} | ||
|
||
var _ admission.Handler = &ServiceHandler{} | ||
|
||
// Handle handles admission requests. | ||
func (h *ServiceHandler) Handle(ctx context.Context, req admission.Request) admission.Response { | ||
if req.AdmissionRequest.Operation != admissionv1.Delete || req.AdmissionRequest.SubResource != "" { | ||
return admission.ValidationResponse(true, "") | ||
} | ||
if len(req.OldObject.Raw) == 0 { | ||
klog.Warningf("Skip to validate service %s deletion for no old object, maybe because of Kubernetes version < 1.16", req.Name) | ||
return admission.ValidationResponse(true, "") | ||
} | ||
|
||
obj := &v1.Service{} | ||
if err := h.Decoder.DecodeRaw(req.AdmissionRequest.OldObject, obj); err != nil { | ||
return admission.Errored(http.StatusBadRequest, err) | ||
} | ||
|
||
if err := deletionprotection.ValidateServiceDeletion(obj); err != nil { | ||
return admission.Errored(http.StatusForbidden, err) | ||
} | ||
return admission.ValidationResponse(true, "") | ||
} | ||
|
||
var _ inject.Client = &ServiceHandler{} | ||
|
||
func (h *ServiceHandler) InjectClient(c client.Client) error { | ||
h.Client = c | ||
return nil | ||
} | ||
|
||
var _ admission.DecoderInjector = &ServiceHandler{} | ||
|
||
func (h *ServiceHandler) InjectDecoder(d *admission.Decoder) error { | ||
h.Decoder = d | ||
return nil | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
/* | ||
Copyright 2023 The Kruise Authors. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
package validating | ||
|
||
import "sigs.k8s.io/controller-runtime/pkg/webhook/admission" | ||
|
||
// +kubebuilder:webhook:path=/validate-service,mutating=false,failurePolicy=fail,sideEffects=None,admissionReviewVersions=v1;v1beta1,groups="",resources=services,verbs=delete,versions=v1,name=vservice.kb.io | ||
|
||
var ( | ||
// HandlerMap contains admission webhook handlers | ||
HandlerMap = map[string]admission.Handler{ | ||
"validate-service": &ServiceHandler{}, | ||
} | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.