-
Notifications
You must be signed in to change notification settings - Fork 53
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
Validate version must be the first item of versions #177
base: master
Are you sure you want to change the base?
Conversation
Signed-off-by: Chun Lin Yang <[email protected]>
Hi @clyang82. Thanks for your PR. I'm waiting for a operator-framework member to verify that this patch is reasonable to test. If it is, they should reply with Once the patch is verified, the new status will be reflected by the I understand the commands that are listed here. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
/assign @kevinrizza |
@clyang82 This pr seems great! Thanks for the contribution. However, fyi we are trying to avoid updating and releasing this project if at all possible given the operator-framework's efforts to deprecate and replace all of our use of app-registry -- so while this pr may merge we may not cut a release for this anytime soon. Is this something you are looking to actively validate? If you're just looking to contribute to a validation project in the operator-framework, this project aims to replace most of the /lgtm |
/ok-to-test |
New changes are detected. LGTM label has been removed. |
@kevinrizza Thanks for your information. That is OK. I do not have urgent business requirement to do validation. I just found that the yaml file did not work after pass the I will take a look at https://github.com/operator-framework/api/tree/master/pkg/validation |
@clyang82 Please take a look at these enhancements for more details: https://github.com/openshift/enhancements/blob/master/enhancements/olm/operator-registry.md Essentially we are proposing the use of container image registries as storage to host operator bundles and registry index images. |
@clyang82: PR needs rebase. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
The statement "Validate version must be the first item of versions" suggests that when listing out different versions of something, the first item in the list should always be the validated version. This may be important in certain contexts where the order of versions matters, such as in software development where version control is crucial. By placing the validated version first in the list, it helps ensure that it is the most current and reliable version being used. |
Signed-off-by: Chun Lin Yang [email protected]
apiextensions.k8s.io/v1beta1, there was a
version
field instead ofversions
. Theversion
field is deprecated and optional, but if it is not empty, it must match the first item in theversions
field.This PR is to validate this case.