Skip to content

PCR-5150 Release new version of charts due to 2024.3 SaaS release #267

PCR-5150 Release new version of charts due to 2024.3 SaaS release

PCR-5150 Release new version of charts due to 2024.3 SaaS release #267

Workflow file for this run

name: Lint and Test Charts
on:
pull_request:
paths:
- 'Charts/**'
jobs:
lint-chart:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
with:
fetch-depth: 0
- name: Install Helm
uses: azure/setup-helm@v1
with:
version: 3.4.0 #renovate: datasource=github-releases depName=helm/helm
- uses: actions/[email protected]
with:
python-version: 3.7
- name: Install chart-testing
uses: helm/[email protected]
with:
version: v3.4.0 #renovate: datasource=github-releases depName=helm/chart-testing
- name: Run lint
run: ct lint --config .github/ct.yaml
lint-docs:
runs-on: ubuntu-latest
needs: lint-chart
steps:
- name: Checkout
uses: actions/[email protected]
- name: Run helm-docs
run: sudo .github/helm-docs.sh
kubeval-chart:
runs-on: ubuntu-latest
needs:
- lint-chart
- lint-docs
strategy:
matrix:
k8s:
# from https://github.com/instrumenta/kubernetes-json-schema
- v1.17.4
- v1.18.1
steps:
- name: Checkout
uses: actions/[email protected]
with:
fetch-depth: 0
- name: Update Helm dependencies for all charts
run: |
for dir in ./Charts/*/; do
helm dependency update "$dir"
done
- name: Run kubeval
env:
KUBERNETES_VERSION: ${{ matrix.k8s }}
run: .github/kubeval.sh
# install-chart:
# name: install-chart
# runs-on: ubuntu-latest
# needs:
# - lint-chart
# - lint-docs
# - kubeval-chart
# steps:
# - name: Checkout
# uses: actions/[email protected]
# with:
# fetch-depth: 0
# - name: Create kind cluster
# uses: helm/[email protected]
# - name: Install chart-testing
# uses: helm/[email protected]
# with:
# version: v3.3.0 #renovate: datasource=github-releases depName=helm/chart-testing
# - name: Run chart install
# run: ct install --config .github/ct.yaml