mirror of https://github.com/k3s-io/k3s
187 lines
6.2 KiB
Go
187 lines
6.2 KiB
Go
/*
|
|
Copyright 2019 The Kubernetes 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 endpointslice
|
|
|
|
import (
|
|
"context"
|
|
|
|
discoveryv1beta1 "k8s.io/api/discovery/v1beta1"
|
|
apiequality "k8s.io/apimachinery/pkg/api/equality"
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
"k8s.io/apimachinery/pkg/runtime"
|
|
"k8s.io/apimachinery/pkg/runtime/schema"
|
|
"k8s.io/apimachinery/pkg/util/validation/field"
|
|
genericapirequest "k8s.io/apiserver/pkg/endpoints/request"
|
|
"k8s.io/apiserver/pkg/storage/names"
|
|
utilfeature "k8s.io/apiserver/pkg/util/feature"
|
|
"k8s.io/kubernetes/pkg/api/legacyscheme"
|
|
"k8s.io/kubernetes/pkg/apis/discovery"
|
|
"k8s.io/kubernetes/pkg/apis/discovery/validation"
|
|
"k8s.io/kubernetes/pkg/features"
|
|
)
|
|
|
|
// endpointSliceStrategy implements verification logic for Replication.
|
|
type endpointSliceStrategy struct {
|
|
runtime.ObjectTyper
|
|
names.NameGenerator
|
|
}
|
|
|
|
// Strategy is the default logic that applies when creating and updating Replication EndpointSlice objects.
|
|
var Strategy = endpointSliceStrategy{legacyscheme.Scheme, names.SimpleNameGenerator}
|
|
|
|
// NamespaceScoped returns true because all EndpointSlices need to be within a namespace.
|
|
func (endpointSliceStrategy) NamespaceScoped() bool {
|
|
return true
|
|
}
|
|
|
|
// PrepareForCreate clears the status of an EndpointSlice before creation.
|
|
func (endpointSliceStrategy) PrepareForCreate(ctx context.Context, obj runtime.Object) {
|
|
endpointSlice := obj.(*discovery.EndpointSlice)
|
|
endpointSlice.Generation = 1
|
|
|
|
dropDisabledFieldsOnCreate(endpointSlice)
|
|
dropTopologyOnV1(ctx, nil, endpointSlice)
|
|
}
|
|
|
|
// PrepareForUpdate clears fields that are not allowed to be set by end users on update.
|
|
func (endpointSliceStrategy) PrepareForUpdate(ctx context.Context, obj, old runtime.Object) {
|
|
newEPS := obj.(*discovery.EndpointSlice)
|
|
oldEPS := old.(*discovery.EndpointSlice)
|
|
|
|
// Increment generation if anything other than meta changed
|
|
// This needs to be changed if a status attribute is added to EndpointSlice
|
|
ogNewMeta := newEPS.ObjectMeta
|
|
ogOldMeta := oldEPS.ObjectMeta
|
|
newEPS.ObjectMeta = metav1.ObjectMeta{}
|
|
oldEPS.ObjectMeta = metav1.ObjectMeta{}
|
|
|
|
if !apiequality.Semantic.DeepEqual(newEPS, oldEPS) || !apiequality.Semantic.DeepEqual(ogNewMeta.Labels, ogOldMeta.Labels) {
|
|
ogNewMeta.Generation = ogOldMeta.Generation + 1
|
|
}
|
|
|
|
newEPS.ObjectMeta = ogNewMeta
|
|
oldEPS.ObjectMeta = ogOldMeta
|
|
|
|
dropDisabledFieldsOnUpdate(oldEPS, newEPS)
|
|
dropTopologyOnV1(ctx, oldEPS, newEPS)
|
|
}
|
|
|
|
// Validate validates a new EndpointSlice.
|
|
func (endpointSliceStrategy) Validate(ctx context.Context, obj runtime.Object) field.ErrorList {
|
|
endpointSlice := obj.(*discovery.EndpointSlice)
|
|
err := validation.ValidateEndpointSliceCreate(endpointSlice)
|
|
return err
|
|
}
|
|
|
|
// Canonicalize normalizes the object after validation.
|
|
func (endpointSliceStrategy) Canonicalize(obj runtime.Object) {
|
|
}
|
|
|
|
// AllowCreateOnUpdate is false for EndpointSlice; this means POST is needed to create one.
|
|
func (endpointSliceStrategy) AllowCreateOnUpdate() bool {
|
|
return false
|
|
}
|
|
|
|
// ValidateUpdate is the default update validation for an end user.
|
|
func (endpointSliceStrategy) ValidateUpdate(ctx context.Context, new, old runtime.Object) field.ErrorList {
|
|
newEPS := new.(*discovery.EndpointSlice)
|
|
oldEPS := old.(*discovery.EndpointSlice)
|
|
return validation.ValidateEndpointSliceUpdate(newEPS, oldEPS)
|
|
}
|
|
|
|
// AllowUnconditionalUpdate is the default update policy for EndpointSlice objects.
|
|
func (endpointSliceStrategy) AllowUnconditionalUpdate() bool {
|
|
return true
|
|
}
|
|
|
|
// dropDisabledConditionsOnCreate will drop any fields that are disabled.
|
|
func dropDisabledFieldsOnCreate(endpointSlice *discovery.EndpointSlice) {
|
|
dropTerminating := !utilfeature.DefaultFeatureGate.Enabled(features.EndpointSliceTerminatingCondition)
|
|
dropHints := !utilfeature.DefaultFeatureGate.Enabled(features.TopologyAwareHints)
|
|
|
|
if dropHints || dropTerminating {
|
|
for i := range endpointSlice.Endpoints {
|
|
if dropTerminating {
|
|
endpointSlice.Endpoints[i].Conditions.Serving = nil
|
|
endpointSlice.Endpoints[i].Conditions.Terminating = nil
|
|
}
|
|
if dropHints {
|
|
endpointSlice.Endpoints[i].Hints = nil
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// dropDisabledFieldsOnUpdate will drop any disable fields that have not already
|
|
// been set on the EndpointSlice.
|
|
func dropDisabledFieldsOnUpdate(oldEPS, newEPS *discovery.EndpointSlice) {
|
|
dropTerminating := !utilfeature.DefaultFeatureGate.Enabled(features.EndpointSliceTerminatingCondition)
|
|
if dropTerminating {
|
|
for _, ep := range oldEPS.Endpoints {
|
|
if ep.Conditions.Serving != nil || ep.Conditions.Terminating != nil {
|
|
dropTerminating = false
|
|
break
|
|
}
|
|
}
|
|
}
|
|
|
|
dropHints := !utilfeature.DefaultFeatureGate.Enabled(features.TopologyAwareHints)
|
|
if dropHints {
|
|
for _, ep := range oldEPS.Endpoints {
|
|
if ep.Hints != nil {
|
|
dropHints = false
|
|
break
|
|
}
|
|
}
|
|
}
|
|
|
|
if dropHints || dropTerminating {
|
|
for i := range newEPS.Endpoints {
|
|
if dropTerminating {
|
|
newEPS.Endpoints[i].Conditions.Serving = nil
|
|
newEPS.Endpoints[i].Conditions.Terminating = nil
|
|
}
|
|
if dropHints {
|
|
newEPS.Endpoints[i].Hints = nil
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// dropTopologyOnV1 on V1 request wipes the DeprecatedTopology field and copies
|
|
// the NodeName value into DeprecatedTopology
|
|
func dropTopologyOnV1(ctx context.Context, oldEPS, newEPS *discovery.EndpointSlice) {
|
|
if info, ok := genericapirequest.RequestInfoFrom(ctx); ok {
|
|
requestGV := schema.GroupVersion{Group: info.APIGroup, Version: info.APIVersion}
|
|
if requestGV == discoveryv1beta1.SchemeGroupVersion {
|
|
return
|
|
}
|
|
|
|
// do not drop topology if endpoints have not been changed
|
|
if oldEPS != nil && apiequality.Semantic.DeepEqual(oldEPS.Endpoints, newEPS.Endpoints) {
|
|
return
|
|
}
|
|
|
|
for i := range newEPS.Endpoints {
|
|
ep := &newEPS.Endpoints[i]
|
|
|
|
//Silently clear out DeprecatedTopology
|
|
ep.DeprecatedTopology = nil
|
|
}
|
|
}
|
|
}
|