Project

Profile

Help

Story #5251

Updated by pulpbot over 2 years ago

 

 **Ticket moved to GitHub**: "pulp/pulp_ansible/685":https://github.com/pulp/pulp_ansible/issues/685 




 ---- 


 ### Dependency Downloading when syncing collections: 

 When syncing a collection, we would like to have the collections listed as dependencies to be synced into the repository as well.   
 Example: https://docs.ansible.com/ansible/devel/dev_guide/collections_galaxy_meta.html#examples 

 For a collection to be synced, having the below dependencies: 

 ~~~ 
 dependencies: 
     "other_namespace.collection1": ">=1.0.0" 
     "other_namespace.collection2": ">=2.0.0,<3.0.0" 
     "anderson55.my_collection": "*"      # note: "*" selects the highest version available 
 ~~~ 

 The 3 listed collections should also get synced when syncing the collection. 

 

Back