-
Notifications
You must be signed in to change notification settings - Fork 777
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add: Support the deletion protection of service and ingress #1269
Merged
kruise-bot
merged 2 commits into
openkruise:master
from
kevin1689-cloud:service_ingress_deletion_protection
Mar 7, 2024
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. gofmt imports sort |
||
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" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. gofmt imports sort. |
||
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.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
add vingress.kb.io and vservice.kb.io in file