charts/tools/gate/jarvis/5G-SA-core/300-check-charts.sh
Pete Birley 342e7e09c8 feat(jarvis): Add Jarvis Test Artifacts
This PS adds test artifacts to be used to validate Jarvis
operation: The Open5GS 5G SA Core.

Change-Id: I33d3ac2b2c584320aa3b0ca928657496ccd96303
Signed-off-by: Pete Birley <pete@port.direct>
2021-01-19 06:45:11 +00:00

8 lines
191 B
Bash
Executable File

#!/bin/bash
set -ex
for chart_path in `find ./tools/gate/jarvis/5G-SA-core -name Chart.yaml -exec dirname {} \;`; do
helm lint ${chart_path}
helm template ${chart_path} > /dev/null
done