ad3167bd56
This prepared for ansible-lint v5 which no longer has exceptions for task naming, requiring all to be named. Change-Id: I5e761d1e3836fa270d7afdcf01780320001f820d Part-Of: #773245
12 lines
296 B
YAML
12 lines
296 B
YAML
- hosts: all
|
|
tasks:
|
|
- name: Install helm charts
|
|
include_role:
|
|
name: helm-template
|
|
vars:
|
|
helm_release_name: "{{ zj_item.key }}"
|
|
helm_chart: "{{ zj_item.value }}"
|
|
loop: "{{ helm_charts | dict2items }}"
|
|
loop_control:
|
|
loop_var: 'zj_item'
|