From a4d7249d4fe82c5520afceb7799d725a8d3855ac Mon Sep 17 00:00:00 2001 From: Justin Casso Date: Sun, 19 Sep 2021 07:14:23 -0700 Subject: [PATCH] Add Helm linting to Drone pipeline --- .drone.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.drone.yml b/.drone.yml index bf66515..62032b6 100644 --- a/.drone.yml +++ b/.drone.yml @@ -27,6 +27,13 @@ steps: - pip install black - black . +- name: "Lint: helm" + image: python:3.9.6 + depends_on: ["clone"] + commands: + - curl https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3 | bash + - helm lint helm/ + - name: "Scan: bandit" image: python:3.9.6 depends_on: ["clone"] @@ -149,6 +156,6 @@ steps: --- kind: signature -hmac: 5cb9a401ff6edb5df93314c5eca280165597835826b9f4c4754201327660eec6 +hmac: 9fafcdedd275989bd751a9e0510f5bacc422cc0f41ce97131a810a7ee1873876 ...