
* Bump appVersion to 3.1.0 Signed-off-by: Matt Carr <mcarr@kinaxis.com> * Update charts/argo-workflows/Chart.yaml Co-authored-by: Oliver Bähler <oliverbaehler@hotmail.com> Signed-off-by: Matt Carr <mcarr@kinaxis.com> * Fix conflicts with upstream Signed-off-by: Matt Carr <mcarr@kinaxis.com> * Update changelog annotations and bump minor version Signed-off-by: Marco Kilchhofer <mkilchhofer@users.noreply.github.com> Co-authored-by: Oliver Bähler <oliverbaehler@hotmail.com> Co-authored-by: Marco Kilchhofer <mkilchhofer@users.noreply.github.com>
17 lines
582 B
Bash
Executable file
17 lines
582 B
Bash
Executable file
#!/bin/bash
|
|
# This script runs the chart-testing tool locally. It simulates the linting that is also done by the github action. Run this without any errors before pushing.
|
|
# Reference: https://github.com/helm/chart-testing
|
|
set -eux
|
|
|
|
SRCROOT="$(cd "$(dirname "$0")/.." && pwd)"
|
|
|
|
echo -e "\n-- Linting all Helm Charts --\n"
|
|
docker run \
|
|
-v "$SRCROOT:/workdir" \
|
|
--entrypoint /bin/sh \
|
|
quay.io/helmpack/chart-testing:v3.3.1 \
|
|
-c cd /workdir \
|
|
ct lint \
|
|
--config .github/configs/ct-lint.yaml \
|
|
--lint-conf .github/configs/lintconf.yaml \
|
|
--debug
|