Skip to content

chore(3.8.0): Updating the core helm-charts for 3.8.0 #275

chore(3.8.0): Updating the core helm-charts for 3.8.0

chore(3.8.0): Updating the core helm-charts for 3.8.0 #275

Workflow file for this run

name: test
on:
push:
branches:
- master
- main
- '!gh-pages'
paths-ignore:
- README.md
- .gitignore
pull_request:
branches:
- master
- main
- '!gh-pages'
concurrency:
group: ${{ github.ref }}-${{ github.workflow }}
cancel-in-progress: true
jobs:
check-docs-update:
name: check-docs-update
runs-on: ubuntu-latest
container: jnorwood/helm-docs:v1.11.0
steps:
- name: Install git
run: |
apk add git
- name: Checkout Code
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Check for changes
run: |
# fix fatal: detected dubious ownership in repository at
git config --global --add safe.directory "$GITHUB_WORKSPACE"
helm-docs
if [ -z "$(git status --porcelain)" ]; then
echo "Docs are up-to-date"
else
echo "Docs are stale. Run helm-docs . locally. The following files have been changed:"
git diff
exit 1
fi
lint:
name: lint-charts
runs-on: ubuntu-latest
outputs:
IS_CHANGED: ${{ steps.list-changed.outputs.IS_CHANGED }}
steps:
- name: Checkout Code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Helm
uses: azure/setup-helm@v4
with:
version: v3.11.0
- uses: actions/setup-python@v5
with:
python-version: '3.9'
check-latest: true
- name: Run chart-testing (prepare)
uses: helm/[email protected]
- name: Run chart-testing (list-changed)
id: list-changed
run: |
changed=$(ct list-changed --excluded-charts=kubernetes-chaos,kube-aws,kube-azure,kube-gcp,litmus-agent --target-branch ${{ github.event.repository.default_branch }})
if [[ -n "$changed" ]]; then
echo "IS_CHANGED=true" >> $GITHUB_OUTPUT
fi
- name: Run chart-testing (lint)
run: |
ct lint --target-branch ${{ github.event.repository.default_branch }} --config=ct.yaml
deploy:
name: deploy-charts
runs-on: ubuntu-latest
if: needs.lint.outputs.IS_CHANGED == 'true'
needs: lint
strategy:
matrix:
k8s_version: [1.19.16, 1.20.15, 1.21.14, 1.22.15, 1.23.13, 1.24.7, 1.25.3]
steps:
- name: Checkout Code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up chart-testing
uses: helm/[email protected]
- name: Create kind cluster
uses: helm/[email protected]
with:
node_image: kindest/node:v${{ matrix.k8s_version }}
wait: 180s
- name: Run chart-testing (install)
run: ct install --config ct.yaml