84 lines
1.8 KiB
YAML
84 lines
1.8 KiB
YAML
name: Chart
|
|
on:
|
|
pull_request:
|
|
|
|
pull_request:
|
|
branches:
|
|
- 'main'
|
|
push:
|
|
branches:
|
|
- 'main'
|
|
|
|
jobs:
|
|
chart-testing:
|
|
runs-on: flakes-action
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Set up Helm
|
|
uses: azure/setup-helm@v3
|
|
with:
|
|
version: v3.7.1
|
|
|
|
- uses: actions/setup-python@v4
|
|
with:
|
|
python-version: 3.7
|
|
|
|
- name: Set up chart-testing
|
|
uses: helm/chart-testing-action@v2.3.1
|
|
|
|
- name: Run chart-testing (list-changed)
|
|
id: list-changed
|
|
run: |
|
|
changed=$(ct --config .github/ct.yaml list-changed)
|
|
if [[ -n "$changed" ]]; then
|
|
echo "::set-output name=changed::true"
|
|
fi
|
|
|
|
- name: Run chart-testing (lint)
|
|
run: ct --config .github/ct.yaml lint
|
|
|
|
polaris-audit:
|
|
runs-on: flakes-action
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Set up Helm
|
|
uses: azure/setup-helm@v3
|
|
with:
|
|
version: v3.7.1
|
|
|
|
- name: Setup polaris
|
|
uses: fairwindsops/polaris/.github/actions/setup-polaris@master
|
|
with:
|
|
version: 6.0.0
|
|
|
|
- name: Run audit
|
|
run: |
|
|
polaris audit --helm-chart ./charts/well-known --helm-values ./charts/well-known/values.yaml --format pretty --set-exit-code-on-danger --set-exit-code-below-score 90
|
|
|
|
pluto-scan:
|
|
runs-on: flakes-action
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Set up Helm
|
|
uses: azure/setup-helm@v3
|
|
with:
|
|
version: v3.7.1
|
|
|
|
- name: Download Pluto
|
|
uses: FairwindsOps/pluto/github-action@master
|
|
|
|
- name: Use pluto
|
|
run: |
|
|
helm template ./charts/well-known -f ./charts/well-known/ci/pluto-values.yaml | pluto detect - --ignore-deprecations
|