-
Notifications
You must be signed in to change notification settings - Fork 146
65 lines (55 loc) · 1.59 KB
/
test.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
name: "Test using kind and chart-testing tool"
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
test:
strategy:
fail-fast: false
matrix:
kubernetesVersion: ["v1.29.2", "v1.26.14"]
runs-on: ubuntu-latest
if: github.ref != 'refs/heads/master'
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Shellcheck
uses: ludeeus/[email protected]
- name: Set up Helm
uses: azure/setup-helm@v1
with:
version: v3.4.0
- uses: actions/setup-python@v2
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)
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:
node_image: "kindest/node:${{ matrix.kubernetesVersion }}"
config: .ci/kind-config.yaml
- name: Verify kind
if: steps.list-changed.outputs.changed == 'true'
run: |
kubectl cluster-info
kubectl get nodes -o wide
kubectl get pods -n kube-system
- name: Run chart-testing linting (lint)
run: ct lint --config .ci/ct-config.yaml --chart-repos hashicorp=https://helm.releases.hashicorp.com
- name: Run chart-testing (install)
run: ct install --config .ci/ct-config.yaml