mirror of
https://github.com/truenas/charts.git
synced 2026-06-16 23:19:15 +08:00
20 lines
435 B
Bash
Executable File
20 lines
435 B
Bash
Executable File
#!/bin/bash
|
|
|
|
chart_path=library/common-test
|
|
|
|
if [ $1 == "-f" ] && [ ! -z $2 ]; then
|
|
extra_args=("-f" "$chart_path/ci/$2")
|
|
fi
|
|
|
|
if [ -d "$chart_path/charts" ]; then
|
|
echo "Cleaning old built charts..."
|
|
rm -r "$chart_path/charts"
|
|
rm "$chart_path/Chart.lock"
|
|
fi
|
|
|
|
echo "Building common..."
|
|
helm dependency update "$chart_path"
|
|
|
|
helm install --dry-run --debug common-test "${extra_args[@]}" "./$chart_path"
|
|
helm lint "./$chart_path"
|