Actions
Story #8205
closedAdd AnsibleCollectionDeprecated resource to export/import
Start date:
Due date:
% Done:
100%
Estimated time:
Platform Release:
Groomed:
No
Sprint Candidate:
No
Tags:
Katello
Sprint:
Quarter:
Description
The Two Related Problem¶
- The 'deprecated' data is mutable.
- The 'deprecated' data is not correctly included in import/export data
Solution¶
From a high level, make the AnsibleCollectionDeprecated
content.
Modeling¶
Here are the rough steps involved:
- switch the existing AnsibleCollectionDeprecated to inherit from Content
- Remove the
repository_version
FK entirely. - Change the
collection
field to be a string with the collection name instead - Add a string field called namespace.
- The uniqueness constraint should be the tuple "namespace", "collection_name"
Sync Implementation¶
The sync code will continue to parse the deprecated data in FirstStage in the same way, but instead of saving/managing them in first-stage, have the stages pipeline handle it all by making AnsibleCollectionDeprecated
in-memory and associating with a declarative content object.
The Galaxy API viewset¶
Port this portion to look for the objects in the set of content of the RepositoryVersion.
The viewset for set/unset deprecation handling¶
Port this portion to generate a task that creates a RepositoryVersion
Additional work needed to get this working with Import/Export¶
Add a model to model resources: https://github.com/pulp/pulp_ansible/blob/master/pulp_ansible/app/modelresource.py
Related issues
Actions
AnsibleCollectionDeprecated as Content
https://pulp.plan.io/issues/8205 closes #8205