-
Notifications
You must be signed in to change notification settings - Fork 124
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
Add ULN vs normal URL type validation when updating or creating a remote #3520
Comments
A relevant place in the sources: https://github.com/pulp/pulp_rpm/blob/main/pulp_rpm/app/serializers/repository.py#L295 |
This is reasonable. In hindsight though we maybe should have avoided having a separate ULNRemote type at all. We already have divergent behavior if you pass a |
That would have made some things easier. On the other hand it also has advantages not to overload a single remote type with many different special meanings and fields that are only meaningful to a small subset of users. ULN is a pretty singular use case that in addition to the special upstream url values also adds the |
To tight this up, can we validate that RpmRemote acceptable urls are only |
Version
Affects all versions.
Describe the bug
pulp_rpm knows two types of remote. ULN and RPM. The
url
field for a ULN remote must always have a value starting withuln://
. Conversely a RPM remote with aurl
starting withuln://
never makes sense, and cannot possibly work. We should add sanity validation to both remotes to prevent users from accidentally creating a remote of the wrong type when the intention is to create a ULN/RPM remote. For RPM remotes we should validate the URL does not start withuln://
, for ULN we should validate that it does.Without this validation users will only hit an error once they try to sync using the remote, and the error won't be very clear about what went wrong. We saw this situation with Katello users who decided to change URL type on a Katello repo, but Katello would update the existing remote, rather than destroying it and re-creating one of the other type without an error. We have fixed this on the Katello side, but it still seems like Pulp should throw a meaningful error at remote creation time, rather than a cryptic one at sync time.
To Reproduce
Create or update a ULN or RPM remote with a
url
of the wrong type. => Successfully creates an unusable remote.Expected behavior
Throw an error stating clearly what was wrong about the user input.
Additional context
The related Katello issue: https://projects.theforeman.org/issues/37279
The text was updated successfully, but these errors were encountered: