Ansible: Perform Cleanup on Task Failure

前端 未结 3 573
梦毁少年i
梦毁少年i 2021-02-07 00:14

I\'m currently writing an Ansible play that follows this general format and is run via a cron job:

pre_tasks:
  -Configuration / package installation

tasks:
           


        
3条回答
  •  轮回少年
    2021-02-07 00:42

    You should use handlers (http://docs.ansible.com/ansible/playbooks_intro.html) and set:

    force_handlers: true

    Please give a look to KubeNow's integration test (https://github.com/kubenow/KubeNow/blob/master/test/integration-test.yml).

提交回复
热议问题