Bootstrap FreeKB - Ansible - Ansible Galaxy website
Ansible - Ansible Galaxy website

Updated:   |  Ansible articles

Ansible Galaxy may refer to:

Ansible Galaxy is a website that is used to share roles -> https://galaxy.ansible.com. If you are not familiar with roles, check out our article Getting Started with Ansible Roles. For example, let's say you want to use Ansible to install a Linux HTTPD web server. At Ansible Galaxy, you could search with HTTPD something like this will be displayed. Typically, you would first look at the roles that has the most downloads.

 

Selecting a result will display additional details on the role, and there will be an Installation command. In this example, the ansible-galaxy install command can be used to install the role.

 

The result may also include a GitHub Repo button, meaning that GitHub can be used to download the role.

 

In this example, at GitHub, there is a Clone or download button. Selecting Download ZIP will download something like ansible-role-httpd.zip to your local PC.

 

Or, if you have Git installed on your PC, you can use the git clone command to download the role to your local PC.

C:\Users\jeremy>git clone https://github.com/bertvv/ansible-role-httpd.git
. . .
Cloning into 'ansible-role-httpd'...
remote: Enumerating objects: 393, done.
Receiving objects:  75% (295/393)ed 0 (delta 0), pack-reused 393Receiving objects:  72% (283/393)
Receiving objects: 100% (393/393), 67.47 KiB | 463.00 KiB/s, done.
Resolving deltas: 100% (172/172), done.

 

In this example, ansible-role.httpd.git was cloned into a directory named ansible-role-httpd on my local PC. Here is what the contents of the ansible-role-httpd looks like.

C:\Users\jeremy>dir ansible-role-httpd
. . .
05/11/2020  05:15 AM    <DIR>          defaults
05/11/2020  05:15 AM    <DIR>          handlers
05/11/2020  05:15 AM    <DIR>          meta
05/11/2020  05:15 AM    <DIR>          tasks
05/11/2020  05:15 AM    <DIR>          templates
05/11/2020  05:15 AM    <DIR>          vars

 




Did you find this article helpful?

If so, consider buying me a coffee over at Buy Me A Coffee



Comments


Add a Comment


Please enter a5262f in the box below so that we can be sure you are a human.