IaC👩💻/Ansible
[Ansible] Galaxy
nayeo2
2024. 8. 23. 16:40
https://galaxy.ansible.com/ui/
Ansible Galaxy
galaxy.ansible.com
1. Ansible Galaxy
- 자신이 작성한 role (playbook의 집합)을 업로드하고 공유하는 곳
1.2 CLI 에서 role 직접 조회
ansible-galaxy role
- Ubuntu에서 JAVA 설치
ansible-galaxy role search java --platforms ubuntu
ansible-galaxy role install -p roles 4ARMED.java8
- main.yml 열어서 동작 확인하기 : 안전하다고 확인 됐을 때만 사용하기
cd roles
ls
cd 4ARMED.java8/
ls
cd tasks
ls
cat main.yaml
2. Ansible Content Collection
- 앤서블의 기능 확장
- 모듈화된 형태로 자동화 작업 구현
2.1 Collection 조회 및 설치
- 얘는 직접 실습은 안함.
- 조회
ansible-galaxy collection list
- 온프레미스 환경에서 설치
ansible-galaxy collection download -p ./collection openstack.cloud