ansible task 실행1 Ansible playbook task 작성 해보기 Ansible PlaybookAnsible Playbook은 재사용, 반복, 점검, 여러 노드 애플리케이션 배포에 유용하다. 쉽게말해서 특정 task들을 정의하고 각 task마다 동기 비동기로 실행시킬 수 있다. Ansible play Task 작성해보기---- name: basic command hosts: localhost tasks: - name: Execute command 'date' command: date - name: Execute command 'ls' command: ls 앤서블은 기본모듈 이외에도 다야항 모듈을 사용할 수 있다. 각 Task에 모듈을 사용할 수 있는데 cp, apt, ls, date ... etc 등등 명령어들을 모듈이라고 .. 2024. 8. 3. 이전 1 다음