2019-11-19 17:13:49 +00:00
|
|
|
# ansible-galaxy
|
|
|
|
|
2024-09-07 19:57:04 +01:00
|
|
|
> Ansible 역할 생성 및 관리.
|
2019-11-19 17:13:49 +00:00
|
|
|
> 더 많은 정보: <https://docs.ansible.com/ansible/latest/cli/ansible-galaxy.html>.
|
|
|
|
|
|
|
|
- 역할 설치:
|
|
|
|
|
2024-09-07 19:57:04 +01:00
|
|
|
`ansible-galaxy install {{사용자명}}.{{역할_이름}}`
|
2019-11-19 17:13:49 +00:00
|
|
|
|
|
|
|
- 역할 제거:
|
|
|
|
|
2024-09-07 19:57:04 +01:00
|
|
|
`ansible-galaxy remove {{사용자명}}.{{역할_이름}}`
|
2019-11-19 17:13:49 +00:00
|
|
|
|
|
|
|
- 설치된 역할 리스트:
|
|
|
|
|
|
|
|
`ansible-galaxy list`
|
|
|
|
|
|
|
|
- 주어진 역할에 대해 검색:
|
|
|
|
|
|
|
|
`ansible-galaxy search {{역할_이름}}`
|
|
|
|
|
|
|
|
- 새로운 역할 생성:
|
|
|
|
|
|
|
|
`ansible-galaxy init {{역할_이름}}`
|
2024-09-07 19:57:04 +01:00
|
|
|
|
|
|
|
- 사용자 역할에 해당하는 정보 가져오기:
|
|
|
|
|
|
|
|
`ansible-galaxy role info {{사용자명}}.{{역할_이름}}`
|
|
|
|
|
|
|
|
- 컬렉션에 대한 정보 가져오기:
|
|
|
|
|
|
|
|
`ansible-galaxy collection info {{사용자명}}.{{컬렉션_이름}}`
|