--- - name: check if binary helm already exists stat: path: "{{ helm_binary_dir }}/helm" register: binary_helm_check_result - name: install binary helm include_tasks: installation.yml when: not helm.stat.exists or helm_force_update - name: Install charts include_tasks: charts.yml loop: "{{ helm_charts|default('[]') }}"