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(openshift): drop z from next calculated y-stream #2324

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
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
28 changes: 23 additions & 5 deletions pkg/controller/operators/openshift/helpers.go
Original file line number Diff line number Diff line change
Expand Up @@ -125,16 +125,20 @@ func transientErrors(err error) error {
}

func incompatibleOperators(ctx context.Context, cli client.Client) (skews, error) {
next, err := desiredRelease(ctx, cli)
desired, err := desiredRelease(ctx, cli)
if err != nil {
return nil, err
}

if next == nil {
if desired == nil {
// Note: This shouldn't happen
return nil, fmt.Errorf("Failed to determine next OpenShift Y-stream release")
return nil, fmt.Errorf("Failed to determine current OpenShift Y-stream release")
}

next, err := nextY(*desired)
if err != nil {
return nil, err
}
next.Minor++

csvList := &operatorsv1alpha1.ClusterServiceVersionList{}
if err := cli.List(ctx, csvList); err != nil {
Expand All @@ -158,7 +162,7 @@ func incompatibleOperators(ctx context.Context, cli client.Client) (skews, error
continue
}

if max == nil || max.GTE(*next) {
if max == nil || max.GTE(next) {
continue
}
s.maxOpenShiftVersion = max.String()
Expand Down Expand Up @@ -189,6 +193,20 @@ func desiredRelease(ctx context.Context, cli client.Client) (*semver.Version, er
return &desired, nil
}

func nextY(v semver.Version) (semver.Version, error) {
v.Build = nil // Builds are irrelevant

if len(v.Pre) > 0 {
// Dropping pre-releases is equivalent to incrementing Y
v.Pre = nil
v.Patch = 0
estroz marked this conversation as resolved.
Show resolved Hide resolved

return v, nil
}

return v, v.IncrementMinor() // Sets Y=Y+1 and Z=0
}

const (
MaxOpenShiftVersionProperty = "olm.maxOpenShiftVersion"
)
Expand Down
83 changes: 81 additions & 2 deletions pkg/controller/operators/openshift/helpers_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -251,6 +251,11 @@ func TestIncompatibleOperators(t *testing.T) {
{
name: "chestnut",
namespace: "default",
maxOpenShiftVersion: "1.2.0-pre+build",
},
{
name: "drupe",
namespace: "default",
maxOpenShiftVersion: "2.0.0",
},
},
Expand Down Expand Up @@ -290,6 +295,11 @@ func TestIncompatibleOperators(t *testing.T) {
{
name: "drupe",
namespace: "default",
maxOpenShiftVersion: "1.1.0-pre+build",
},
{
name: "european-hazelnut",
namespace: "default",
maxOpenShiftVersion: "0.1.0",
},
},
Expand All @@ -314,6 +324,11 @@ func TestIncompatibleOperators(t *testing.T) {
{
name: "drupe",
namespace: "default",
maxOpenShiftVersion: "1.1.0-pre+build",
},
{
name: "european-hazelnut",
namespace: "default",
maxOpenShiftVersion: "0.1.0",
},
},
Expand Down Expand Up @@ -413,14 +428,14 @@ func TestIncompatibleOperators(t *testing.T) {
},
},
{
description: "Compatible/EmptyVersion",
description: "EmptyVersion",
cv: configv1.ClusterVersion{
ObjectMeta: metav1.ObjectMeta{
Name: "version",
},
Status: configv1.ClusterVersionStatus{
Desired: configv1.Update{
Version: "",
Version: "", // This should result in an transient error
},
},
},
Expand All @@ -441,6 +456,70 @@ func TestIncompatibleOperators(t *testing.T) {
incompatible: nil,
},
},
{
description: "ClusterZ",
cv: configv1.ClusterVersion{
ObjectMeta: metav1.ObjectMeta{
Name: "version",
},
Status: configv1.ClusterVersionStatus{
Desired: configv1.Update{
Version: "1.0.1", // Next Y-stream is 1.1.0, NOT 1.1.1
},
},
},
in: skews{
{
name: "almond",
namespace: "default",
maxOpenShiftVersion: "1.1.2",
},
{
name: "beech",
namespace: "default",
maxOpenShiftVersion: "1.1",
},
},
expect: expect{
err: false,
incompatible: nil,
},
},
{
description: "ClusterPre",
cv: configv1.ClusterVersion{
ObjectMeta: metav1.ObjectMeta{
Name: "version",
},
Status: configv1.ClusterVersionStatus{
Desired: configv1.Update{
Version: "1.1.0-pre", // Next Y-stream is 1.1.0, NOT 1.2.0
timflannagan marked this conversation as resolved.
Show resolved Hide resolved
},
},
},
in: skews{
{
name: "almond",
namespace: "default",
maxOpenShiftVersion: "1.1.0",
},
{
name: "beech",
namespace: "default",
maxOpenShiftVersion: "1.1.0-pre",
},
},
expect: expect{
err: false,
incompatible: skews{
{
name: "beech",
namespace: "default",
maxOpenShiftVersion: "1.1.0-pre",
},
},
},
},
} {
t.Run(tt.description, func(t *testing.T) {
objs := []client.Object{tt.cv.DeepCopy()}
Expand Down