upgrade helm version in deploy job #682
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ci | |
on: | |
pull_request: | |
env: | |
helm-version: "v3.9.0" | |
kubeval-version: "v0.16.1" | |
jobs: | |
lint-bash-scripts: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Lint Bash scripts | |
uses: docker://koalaman/shellcheck-alpine:v0.7.0 | |
with: | |
args: .github/lint-scripts.sh | |
check-for-chart-changes: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Fetch history | |
run: git fetch --prune --unshallow | |
- name: Check for chart changes | |
run: .github/check-for-chart-changes.sh | |
lint-chart: | |
runs-on: ubuntu-latest | |
needs: check-for-chart-changes | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Fetch history | |
run: git fetch --prune --unshallow | |
- name: Run chart-testing (lint) | |
uses: helm/chart-testing-action@main | |
with: | |
command: lint | |
config: .github/ct.yaml | |
kubeval-chart: | |
runs-on: ubuntu-20.04 | |
needs: | |
- lint-chart | |
strategy: | |
matrix: | |
k8s: | |
- v1.21.10 | |
- v1.22.7 | |
- v1.23.5 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Set up Helm | |
uses: azure/[email protected] | |
with: | |
version: "${{ env.helm-version }}" | |
- name: Run kubeval | |
env: | |
KUBERNETES_VERSION: ${{ matrix.k8s }} | |
KUBEVAL_VERSION: "${{ env.kubeval-version }}" | |
run: .github/kubeval.sh | |
install-chart: | |
name: install-chart | |
runs-on: ubuntu-latest | |
needs: | |
- lint-chart | |
- kubeval-chart | |
strategy: | |
matrix: | |
k8s: | |
- v1.21.10 | |
- v1.22.7 | |
- v1.23.5 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Set up Helm | |
uses: azure/[email protected] | |
with: | |
version: "${{ env.helm-version }}" | |
- uses: actions/[email protected] | |
with: | |
python-version: 3.7 | |
- name: Set up chart-testing | |
uses: helm/[email protected] | |
- name: Run chart-testing (list-changed) | |
id: list-changed | |
run: | | |
changed=$(ct list-changed --config .github/ct.yaml) | |
if [[ -n "$changed" ]]; then | |
echo "::set-output name=changed::true" | |
fi | |
- name: Create kind cluster | |
uses: helm/[email protected] | |
if: steps.list-changed.outputs.changed == 'true' | |
with: | |
config: .github/kind-config.yaml | |
node_image: kindest/node:${{ matrix.k8s }} | |
- name: Run chart-testing (install) | |
run: ct install --config .github/ct.yaml |