Skip to content
Snippets Groups Projects
Verified Commit 4901ef46 authored by Maarten de Waard's avatar Maarten de Waard :angel:
Browse files

make sure finalize step is always executed

parent 7cf8c378
No related branches found
No related tags found
No related merge requests found
......@@ -42,16 +42,25 @@
- name: Install control shell
hosts: master
roles:
- role: get_control
tags: ['get_control']
- role: configure_helmfile
tags: ['configure_helmfile']
- role: rke_configuration
tags: ['rke_configuration']
- role: setup
tags: ['setup']
- role: apps
tags: ['apps']
- role: finalize
tags: ['finalize']
tasks:
- name: Run everything
block:
- include_role:
name: get_control
tags: ['get_control']
- include_role:
name: configure_helmfile
tags: ['configure_helmfile']
- include_role:
name: rke_configuration
tags: ['rke_configuration']
- include_role:
name: setup
tags: ['setup']
- include_role:
name: apps
tags: ['apps']
always:
- include_role:
name: finalize
tags: ['finalize']
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment