반응형
sshkey
-
Ansible: 디렉토리 구조와 커맨드 정리(feat. Vagrant)Ansible 2021. 9. 18. 19:51
이번 포스팅은 ansible을 설치하고 inventory와 ansible.cfg 파일을 구성합니다. 마지막에는 ansible을 이용해 간단한 커맨드를 사용해 봅니다. 최종 디렉토리 구조는 다음과 같습니다. seung@seung-15Z990-VR5DK:~/vagrant/testserver$ tree . . ├── ansible.cfg ├── hosts ├── ubuntu-bionic-18.04-cloudimg-console.log └── Vagrantfile 다음 환경에서 실습합니다. - 로컬 = ubuntu 18.04 (ansible core로 사용합니다) - virtual box 사용 (ansible node로 사용합니다) - ubuntu/bionic64 이미지 사용 1. A..