Skip to content

Update helm-lint.yaml #4

Update helm-lint.yaml

Update helm-lint.yaml #4

Workflow file for this run

## Reference: https://github.com/helm/chart-testing-action
name: Lint
on:
push:
branches: feat/760-limit-ValidatingWebhookConfiguration
permissions:
contents: write
jobs:
chart-test:
name: Chart lint
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Helm
uses: azure/setup-helm@v4.1.0
with:
version: v3.14.1
- name: Debug
run: |
ls -l ./charts
cat ./charts/testkube/Chart.yaml
helm repo add bitnami https://raw.githubusercontent.com/bitnami/charts/archive-full-index/bitnami
helm dependency build ./charts/testkube
helm lint ./charts/testkube
- name: Run helm dependency update
run: |
for chart in \
./charts/testkube \
./charts/testkube-api \
./charts/testkube-dashboard \
./charts/testkube-logs \
./charts/testkube-operator; do
helm dependency build "$chart"
done
helm lint ./charts/testkube --with-subcharts --values ./charts/testkube/values.yaml
helm template ./charts/testkube
# - name: Run helm-lint
# run: helm lint ./charts/testkube --with-subcharts --values ./charts/testkube/values.yaml
# - name: Run helm template
# run: helm template ./charts/testkube