Story #4785
closedAs a plugin writer, I have Master/Detail Distributions
100%
Description
Description¶
Problem¶
If plugin writers want to customize distributions (or use different content apps), they have to "invent" new REST endpoints (e.g. pulp_docker has a "docker-distributions" endpoint).
This leads to inconsistent API with unexpected location of distribution endpoints.
Solution¶
Switching to Master/Detail allows plugins to define customized Distribution at 'well-known' endpoints (e.g. .../distributions/docker/docker/
)
The Models offered by core will be: (see also #4715)
- BaseDistribution
: a (non-abstract) MasterModel containing name, base_path, content_guard, and remote. This class can be used in plugins that don't use publications
- Distribution
: a subclass of BaseDistribution
containing publication, publisher, repository. This class is the "standard" Distributor that will be subclassed by plugins using the standard content app
We will have the Master/Detail Distribution viewset overridden by the plugin. For convenience, plugin writers should not be forced to redefine the create/update/remove async tasks, i.e. they should create the respective detail model instance.
pulpcore db migrations will have to be re-generated for this change; users will have to redo their data bases. (this is necessary for rc2 anyway (because of #4678))
Optional: If possible, the current .../distributions/
endpoint should still work. It will be deprecated in rc2 and removed in rc3.
Related issues
Updated by gmbnomis over 5 years ago
- Related to Task #4715: Remove 'publisher', 'publication', and 'repository' from BaseDistribution added
Updated by gmbnomis over 5 years ago
Added by gmbnomis over 5 years ago
Added by gmbnomis over 5 years ago
Revision b05d999a | View on GitHub
Adapt to Master/Detail Distribution
Required PR: https://github.com/pulp/pulpcore/pull/117 Required PR: https://github.com/pulp/pulpcore-plugin/pull/95 Required PR: https://github.com/pulp/pulp_file/pull/217 Required PR: https://github.com/PulpQE/pulp-smash/pull/1205
Added by gmbnomis over 5 years ago
Revision 0fe3cbda | View on GitHub
Switch Distribution to Master/Detail
The models offered by pulpcore are:
-
BaseDistribution: a (non-abstract) MasterModel. This class can be used in plugins that don't use publications.
-
Distribution: a subclass of BaseDistribution. This class is the "standard" Distributor that will be subclassed by plugins using the standard content app.
Required PR: https://github.com/pulp/pulpcore-plugin/pull/95 Required PR: https://github.com/pulp/pulp_file/pull/217 Required PR: https://github.com/PulpQE/pulp-smash/pull/1205 Required PR: https://github.com/pulp/pulp-certguard/pull/20 Required PR: https://github.com/pulp/pulp-swagger-codegen/pull/12
Added by gmbnomis over 5 years ago
Revision 34f72038 | View on GitHub
Adapt to Master/Detail Distribution change
Required PR: https://github.com/pulp/pulpcore/pull/117 Required PR: https://github.com/pulp/pulpcore-plugin/pull/95 Required PR: https://github.com/pulp/pulp_file/pull/217 Required PR: https://github.com/PulpQE/pulp-smash/pull/1205
Updated by dkliban@redhat.com over 5 years ago
- Status changed from NEW to MODIFIED
Updated by bmbouter over 5 years ago
- Status changed from MODIFIED to POST
Bringing back to POST so I can split Distribution into two class types.
Added by bmbouter over 5 years ago
Revision ee415525 | View on GitHub
Split Distribution into two objects
The Distribution contained options which should not be mixed. Specifically the repository and repository_version options go together and the publication goes by itself.
This PR splits that object into two new objects RepositoryVersionDistribution and PublicationDistribution. The two models are not detail objects, and require the plugin writer to declare a Distribution detail object. It was already this way before this PR.
This also adds a release note about the breaking changes that come with the switch to Master/Detail.
Required PR: https://github.com/pulp/pulpcore-plugin/pull/97 Required PR: https://github.com/pulp/pulp_file/pull/219
Added by bmbouter over 5 years ago
Revision 7070c7d3 | View on GitHub
Use PublicationDistribution from pulpcore.plugin
The plugin API now uses PublicationDistribution which causes pulp_file users to only receive the fields they can actually use.
Required PR: https://github.com/pulp/pulpcore/pull/124 Required PR: https://github.com/pulp/pulpcore-plugin/pull/97
Updated by bmbouter over 5 years ago
- Status changed from POST to MODIFIED
- % Done changed from 0 to 100
Applied in changeset pulpcore|ee4155256f7d2a734de9fb7d1598b03a84cfd5e6.
Updated by daviddavis over 5 years ago
- Related to Issue #4820: Update pulp_ansible to use RepositoryVersionDistribution added
Updated by kersom over 5 years ago
- Related to Test #4882: Add back tests related to overlapping base_path added
Updated by bmbouter almost 5 years ago
- Status changed from MODIFIED to CLOSED - CURRENTRELEASE
Switch to Master/Detail Distribution
and update the outdated parts of the README.
Required PR: https://github.com/pulp/pulpcore/pull/117 Required PR: https://github.com/pulp/pulpcore-plugin/pull/95 Required PR: https://github.com/PulpQE/pulp-smash/pull/1205
ref #4785 https://pulp.plan.io/issues/4785