Playbook실행시 에러가 발생할경우 테스크가
중지되는걸 방지 하기 위해 ignore_errors: yes를 추가해주자

샘플:

—-
- nam: Playing with Ansible and docker build
hosts: localhost
connection: local
tasks:
- name: stop current running container
command: docker stop simple-devops-container
ignore_errors: yes

컨테이너를 삭제할려고 할때 해당 컨테이너각 없으면 에러가 발생하고 실행이 중지됨

이때 ignore_errors: yes옵션으로 에러를 스킵하고 다음 task로 진행되도록 하면 됨

+ Recent posts