An automation team is designing a content collection to distribute internal Ansible modules across the organization. The collection should be installed from a private Galaxy server. To minimize namespace conflicts and ensure discoverability, which naming convention should be used for the collection?
Trap 1: collection_name.namespace
Reverses the order; namespace must come first.
Trap 2: namespace_collection_name
Underscore is not used as a separator; dot is required.
Trap 3: namespace-collection_name
Hyphen is not a valid separator in collection names; dot is used.
- A
collection_name.namespace
Why wrong: Reverses the order; namespace must come first.
- B
namespace_collection_name
Why wrong: Underscore is not used as a separator; dot is required.
- C
namespace-collection_name
Why wrong: Hyphen is not a valid separator in collection names; dot is used.
- D
namespace.collection_name
Standard Ansible Galaxy naming convention for collections.