2023-04-19 06:42:29 +05:30
|
|
|
name: "Charts: Lint"
|
|
|
|
|
|
|
|
on:
|
|
|
|
workflow_call:
|
|
|
|
inputs:
|
|
|
|
checkoutCommit:
|
|
|
|
required: true
|
|
|
|
type: string
|
|
|
|
isRenovatePR:
|
|
|
|
required: true
|
|
|
|
default: 'false'
|
|
|
|
type: string
|
|
|
|
chartsToLint:
|
|
|
|
description: >
|
|
|
|
A JSON encoded array of charts to lint
|
|
|
|
required: true
|
|
|
|
type: string
|
|
|
|
|
|
|
|
env:
|
|
|
|
HELM_VERSION: 3.10.2
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
lint-chart:
|
|
|
|
if: ${{ inputs.chartsToLint != '[]' }}
|
|
|
|
name: Lint chart
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
chart: ${{ fromJSON(inputs.chartsToLint) }}
|
|
|
|
fail-fast: false
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2023-10-02 12:11:05 +05:30
|
|
|
uses: actions/checkout@v4
|
2023-04-19 06:42:29 +05:30
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
ref: ${{ inputs.checkoutCommit }}
|
|
|
|
|
|
|
|
- name: Verify chart version
|
|
|
|
uses: bjw-s/helm-charts-actions/verify-chart-version@main
|
|
|
|
id: verify-chart-version
|
|
|
|
with:
|
|
|
|
chart: "charts/${{ matrix.chart }}"
|
|
|
|
|
|
|
|
- name: Verify chart changelog
|
|
|
|
uses: bjw-s/helm-charts-actions/verify-chart-changelog@main
|
|
|
|
if: inputs.isRenovatePR != 'true'
|
|
|
|
id: verify-chart-changelog
|
|
|
|
with:
|
|
|
|
chart: "charts/${{ matrix.chart }}"
|
|
|
|
|
|
|
|
- name: Install Kubernetes tools
|
|
|
|
uses: yokawasa/action-setup-kube-tools@v0.9.3
|
|
|
|
with:
|
|
|
|
setup-tools: |
|
|
|
|
helmv3
|
|
|
|
helm: "${{ env.HELM_VERSION }}"
|
|
|
|
|
|
|
|
- name: Set up chart-testing
|
2023-11-02 20:31:09 +05:30
|
|
|
uses: helm/chart-testing-action@v2.6.0
|
2023-04-19 06:42:29 +05:30
|
|
|
|
|
|
|
- name: Run chart-testing (install)
|
|
|
|
run: ct lint --config .ci/ct/ct.yaml --charts "charts/${{ matrix.chart }}"
|
|
|
|
|
|
|
|
# Summarize matrix https://github.community/t/status-check-for-a-matrix-jobs/127354/7
|
|
|
|
lint_success:
|
|
|
|
needs:
|
|
|
|
- lint-chart
|
|
|
|
if: |
|
|
|
|
always()
|
|
|
|
name: Lint successful
|
2023-04-19 07:30:17 +05:30
|
|
|
runs-on: ubuntu-latest
|
2023-04-19 06:42:29 +05:30
|
|
|
steps:
|
|
|
|
- name: Check lint matrix status
|
|
|
|
if: ${{ (inputs.chartsToLint != '' && inputs.chartsToLint != '[]') && (needs.lint-chart.result != 'success') }}
|
2023-04-19 06:44:09 +05:30
|
|
|
run: exit 1
|