Skip to content
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

fix: fixed defaults and validations for operator version #564

Merged
merged 2 commits into from
Nov 13, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion api/core/v1alpha1/operator_version.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@

package v1alpha1

import "github.com/blang/semver/v4"
import (
"github.com/blang/semver/v4"
)

type Gate string

Expand Down
1 change: 1 addition & 0 deletions pkg/controllers/cnset/controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ func (c *Actor) with(cs *kruisev1alpha1.CloneSet) *WithResources {
func (c *Actor) Observe(ctx *recon.Context[*v1alpha1.CNSet]) (recon.Action[*v1alpha1.CNSet], error) {
cn := ctx.Obj

ctx.Log.Info("observe cnset", "name", cn.Name, "operatorVersion", cn.Spec.GetOperatorVersion())
cs := &kruisev1alpha1.CloneSet{}
err, foundCs := util.IsFound(ctx.Get(client.ObjectKey{Namespace: cn.Namespace, Name: setName(cn)}, cs))
if err != nil {
Expand Down
14 changes: 5 additions & 9 deletions pkg/webhook/cnset_webhook.go
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ type cnSetDefaulter struct{}

var _ webhook.CustomDefaulter = &cnSetDefaulter{}

func (c *cnSetDefaulter) Default(ctx context.Context, obj runtime.Object) error {
func (c *cnSetDefaulter) Default(_ context.Context, obj runtime.Object) error {
cnSet, ok := obj.(*v1alpha1.CNSet)
if !ok {
return unexpectedKindError("CNSet", obj)
Expand All @@ -64,7 +64,7 @@ func (c *cnSetDefaulter) Default(ctx context.Context, obj runtime.Object) error
if cnSet.Spec.Role == "" {
cnSet.Spec.Role = v1alpha1.CNRoleTP
}
return setDefaultOperatorVersion(ctx, &cnSet.Spec.PodSet)
return nil
}

func (c *cnSetDefaulter) DefaultSpec(spec *v1alpha1.CNSetSpec) {
Expand Down Expand Up @@ -118,6 +118,7 @@ func (c *cnSetValidator) ValidateCreate(_ context.Context, obj runtime.Object) (
}

func (c *cnSetValidator) ValidateUpdate(ctx context.Context, oldObj, newObj runtime.Object) (warnings admission.Warnings, err error) {
var errs field.ErrorList
warnings, err = c.ValidateCreate(ctx, newObj)
if err != nil {
return warnings, err
Expand All @@ -130,13 +131,8 @@ func (c *cnSetValidator) ValidateUpdate(ctx context.Context, oldObj, newObj runt
if !ok {
return nil, unexpectedKindError("CNSet", newObj)
}
if _, ok := oldCN.Spec.PodSet.GetSemVer(); ok {
// if the old CNSet has a semantic version, then we need to make sure the new one is compatible
if _, ok := newCN.Spec.PodSet.GetSemVer(); !ok {
return nil, field.Invalid(field.NewPath("spec").Child("podSet").Child("semanticVersion"), newCN.Spec.PodSet.SemanticVersion, "new version must also be semantic")
}
}
return warnings, nil
errs = append(errs, validatePodSetUpdate(&oldCN.Spec.PodSet, &newCN.Spec.PodSet, field.NewPath("spec"))...)
return nil, invalidOrNil(errs, newCN)
}

func (c *cnSetValidator) ValidateDelete(_ context.Context, _ runtime.Object) (warnings admission.Warnings, err error) {
Expand Down
14 changes: 14 additions & 0 deletions pkg/webhook/common.go
Original file line number Diff line number Diff line change
Expand Up @@ -283,3 +283,17 @@ func validateVolumeClaims(pvcs []core.PersistentVolumeClaim, path *field.Path) f
}
return errs
}

func validatePodSetUpdate(oldPodSet, newPodSet *v1alpha1.PodSet, path *field.Path) field.ErrorList {
var errs field.ErrorList
if _, ok := oldPodSet.GetSemVer(); ok {
// if the old CNSet has a semantic version, then we need to make sure the new one is compatible
if _, ok := newPodSet.GetSemVer(); !ok {
errs = append(errs, field.Invalid(path.Child("semanticVersion"), newPodSet.SemanticVersion, "new version must also be semantic"))
}
}
if newPodSet.GetOperatorVersion().LT(oldPodSet.GetOperatorVersion()) {
errs = append(errs, field.Invalid(path.Child("operatorVersion"), newPodSet.OperatorVersion, "new operatorVersion must be greater than or equal to the oldVersion"))
}
return errs
}
4 changes: 2 additions & 2 deletions pkg/webhook/dnset_webhook.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,13 @@ type dnSetDefaulter struct{}

var _ webhook.CustomDefaulter = &dnSetDefaulter{}

func (d *dnSetDefaulter) Default(ctx context.Context, obj runtime.Object) error {
func (d *dnSetDefaulter) Default(_ context.Context, obj runtime.Object) error {
dnSet, ok := obj.(*v1alpha1.DNSet)
if !ok {
return unexpectedKindError("DNSet", obj)
}
d.DefaultSpec(&dnSet.Spec)
return setDefaultOperatorVersion(ctx, &dnSet.Spec.PodSet)
return nil
}

func (d *dnSetDefaulter) DefaultSpec(spec *v1alpha1.DNSetSpec) {
Expand Down
4 changes: 2 additions & 2 deletions pkg/webhook/logset_webhook.go
Original file line number Diff line number Diff line change
Expand Up @@ -61,13 +61,13 @@ type logSetDefaulter struct{}

var _ webhook.CustomDefaulter = &logSetDefaulter{}

func (l *logSetDefaulter) Default(ctx context.Context, obj runtime.Object) error {
func (l *logSetDefaulter) Default(_ context.Context, obj runtime.Object) error {
logSet, ok := obj.(*v1alpha1.LogSet)
if !ok {
return unexpectedKindError("LogSet", obj)
}
l.DefaultSpec(&logSet.Spec)
return setDefaultOperatorVersion(ctx, &logSet.Spec.PodSet)
return nil
}

func (l *logSetDefaulter) DefaultSpec(spec *v1alpha1.LogSetSpec) {
Expand Down
5 changes: 3 additions & 2 deletions pkg/webhook/proxy_webhook.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ package webhook

import (
"context"

"k8s.io/apimachinery/pkg/runtime"
ctrl "sigs.k8s.io/controller-runtime"
"sigs.k8s.io/controller-runtime/pkg/webhook"
Expand All @@ -41,13 +42,13 @@ type proxySetDefaulter struct{}

var _ webhook.CustomDefaulter = &proxySetDefaulter{}

func (p *proxySetDefaulter) Default(ctx context.Context, obj runtime.Object) error {
func (p *proxySetDefaulter) Default(_ context.Context, obj runtime.Object) error {
proxySet, ok := obj.(*v1alpha1.ProxySet)
if !ok {
return unexpectedKindError("ProxySet", obj)
}
p.DefaultSpec(&proxySet.Spec)
return setDefaultOperatorVersion(ctx, &proxySet.Spec.PodSet)
return nil
}

func (p *proxySetDefaulter) DefaultSpec(spec *v1alpha1.ProxySetSpec) {
Expand Down
Loading