123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- /*
- 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"
- "k8s.io/kubernetes/pkg/api/legacyscheme"
- "k8s.io/kubernetes/pkg/apis/discovery"
- "k8s.io/kubernetes/pkg/apis/discovery/validation"
- )
- // 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
- }
- // 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
- }
- // 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
- }
|