Skip to content

chore(helm): bump Kellnr to 6.5.1 #15

chore(helm): bump Kellnr to 6.5.1

chore(helm): bump Kellnr to 6.5.1 #15

Workflow file for this run

name: Lint and Test Chart
on:
pull_request:
branches:
- main
workflow_dispatch:
permissions:
contents: read
jobs:
lint-test:
name: Lint and install
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Set up Helm
uses: azure/setup-helm@v5
with:
version: v3.16.3
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.x"
check-latest: true
- name: Set up chart-testing
uses: helm/chart-testing-action@v2.8.0
- name: Run chart-testing (list-changed)
id: list-changed
run: |
changed="$(ct list-changed --config .github/ct.yaml)"
if [ -n "$changed" ]; then
echo "changed=true" >> "$GITHUB_OUTPUT"
fi
- name: Run chart-testing (lint)
run: ct lint --config .github/ct.yaml
- name: Create kind cluster
if: steps.list-changed.outputs.changed == 'true'
uses: helm/kind-action@v1.14.0
- name: Run chart-testing (install)
if: steps.list-changed.outputs.changed == 'true'
run: ct install --config .github/ct.yaml --helm-extra-args "--timeout 600s"