zuul-jobs/playbooks/helm-lint/run.yaml
Michael Kelly b0cc01ceac
helm: Add job for linting helm charts
This job runs 'helm lint' on the user specified charts.

Change-Id: Ie6f39bab366b683e773add181de516c3ac913866
2022-11-16 15:09:07 -08:00

11 lines
223 B
YAML

- hosts: all
tasks:
- name: Lint helm charts
include_role:
name: helm-lint
vars:
helm_chart: "{{ zj_item }}"
loop: "{{ helm_charts }}"
loop_control:
loop_var: 'zj_item'