-
Notifications
You must be signed in to change notification settings - Fork 54
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
Update E2E test data to fix operator-developer-e2e
#488
Update E2E test data to fix operator-developer-e2e
#488
Conversation
Note: with the current state of This PR just focuses on updating the data. |
Zero major version is reserved for initial development according to SemVer spec[^1] and anything may change at any time. Updates for this version behaves differently: * When version is `0.1.0` we allow versions which are >= `0.1.0` and < `0.2.0` (patch updates) * When version is `0.0.1` we allow versions which are >= `0.0.1` and < `0.0.2` (no updates) To be able to update in the second case (e.g. from `0.0.1` to `0.0.2`) users will have to set `.spec.upgradeConstraintPolicy` to `Ignore` once support for this implemented. We have unit tests for the above behaviour, but E2E test data was not updated. [^1]: https://semver.org/#spec-item-4 Signed-off-by: Mikalai Radchuk <[email protected]>
f34bf55
to
3d50312
Compare
So, just going to ignore 0.x.x for now? |
In E2E - yes. But we have tests for this here. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
/lgtm
Zero major version is reserved for initial development according to SemVer spec1 and anything may change at any time.
Updates for this version behaves differently:
0.1.0
we allow versions which are >=0.1.0
and <0.2.0
(patch updates)0.0.1
we allow versions which are >=0.0.1
and <0.0.2
(no updates)To be able to update in the second case (e.g. from
0.0.1
to0.0.2
) users will have to set.spec.upgradeConstraintPolicy
toIgnore
once support for this implemented.We have unit tests for the above behaviour, but E2E test data was not updated.
Fixes #481
Description
Reviewer Checklist
Footnotes
https://semver.org/#spec-item-4 ↩