mirror of https://github.com/k3s-io/k3s
159 lines
5.2 KiB
Go
159 lines
5.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"
|
|
|
|
apiequality "k8s.io/apimachinery/pkg/api/equality"
|
|
v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
"k8s.io/apimachinery/pkg/runtime"
|
|
"k8s.io/apimachinery/pkg/util/validation/field"
|
|
"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)
|
|
}
|
|
|
|
// 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 = v1.ObjectMeta{}
|
|
oldEPS.ObjectMeta = v1.ObjectMeta{}
|
|
|
|
if !apiequality.Semantic.DeepEqual(newEPS, oldEPS) {
|
|
ogNewMeta.Generation = ogOldMeta.Generation + 1
|
|
}
|
|
|
|
newEPS.ObjectMeta = ogNewMeta
|
|
oldEPS.ObjectMeta = ogOldMeta
|
|
|
|
dropDisabledFieldsOnUpdate(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) {
|
|
dropNodeName := !utilfeature.DefaultFeatureGate.Enabled(features.EndpointSliceNodeName)
|
|
dropTerminating := !utilfeature.DefaultFeatureGate.Enabled(features.EndpointSliceTerminatingCondition)
|
|
|
|
if dropNodeName || dropTerminating {
|
|
for i := range endpointSlice.Endpoints {
|
|
if dropNodeName {
|
|
endpointSlice.Endpoints[i].NodeName = nil
|
|
}
|
|
if dropTerminating {
|
|
endpointSlice.Endpoints[i].Conditions.Serving = nil
|
|
endpointSlice.Endpoints[i].Conditions.Terminating = nil
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// dropDisabledFieldsOnUpdate will drop any disable fields that have not already
|
|
// been set on the EndpointSlice.
|
|
func dropDisabledFieldsOnUpdate(oldEPS, newEPS *discovery.EndpointSlice) {
|
|
dropNodeName := !utilfeature.DefaultFeatureGate.Enabled(features.EndpointSliceNodeName)
|
|
if dropNodeName {
|
|
for _, ep := range oldEPS.Endpoints {
|
|
if ep.NodeName != nil {
|
|
dropNodeName = false
|
|
break
|
|
}
|
|
}
|
|
}
|
|
|
|
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
|
|
}
|
|
}
|
|
}
|
|
|
|
if dropNodeName || dropTerminating {
|
|
for i := range newEPS.Endpoints {
|
|
if dropNodeName {
|
|
newEPS.Endpoints[i].NodeName = nil
|
|
}
|
|
if dropTerminating {
|
|
newEPS.Endpoints[i].Conditions.Serving = nil
|
|
newEPS.Endpoints[i].Conditions.Terminating = nil
|
|
}
|
|
}
|
|
}
|
|
}
|