---
tags: [ orchestration ]
---
# To install a role:
ansible-galaxy install <user>.<role>

# To remove a role:
ansible-galaxy remove <user>.<role>

# To list installed roles:
ansible-galaxy list

# To search for a given role:
ansible-galaxy search <role>

# To create a new role:
ansible-galaxy init <role>

# To get the information for the role # or a collection if you replace `role` with `collection`:
ansible-galaxy role info <user>.<role>
