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로 진행되도록 하면 됨
'나는 노동자 > 이런저런 Tip' 카테고리의 다른 글
Delete evicted pods from all namespaces (also ImagePullBackOff and ErrImagePull) (0) | 2019.12.19 |
---|---|
Jenkins failed job 무시하기 (0) | 2019.12.18 |
ansible Missing sudo password (0) | 2019.12.17 |
ansible become (0) | 2019.12.17 |
ansible localhost (0) | 2019.12.17 |