-
Notifications
You must be signed in to change notification settings - Fork 93
138 lines (131 loc) · 4.12 KB
/
ci.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
# Credit: https://github.com/DataDog/helm-charts/blob/main/.github/workflows/ci.yaml
name: Lint and Test Charts
on:
pull_request:
jobs:
changed:
runs-on: ubuntu-latest
outputs:
charts: ${{ steps.list-changed.outputs.changed }}
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- 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 -n "Charts changed:"
echo "$changed"
echo "::set-output name=changed::$changed"
else
echo "PR without any chart changes - failing"
exit 1
fi
lint-chart:
runs-on: ubuntu-latest
needs:
- changed
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up chart-testing
uses: helm/[email protected]
- name: Copy example values into ci/
run: cp charts/vector/examples/*-values.yaml charts/vector/ci/
- name: Run chart-testing (lint)
run: ct lint --config .github/ct.yaml
lint-docs:
runs-on: ubuntu-latest
needs:
- changed
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install Helm Docs
uses: envoy/[email protected]
with:
version: 1.11.0
- name: Run helm-docs
run: |
helm-docs
git diff --exit-code
kubeval-chart:
runs-on: ubuntu-latest
needs:
- changed
strategy:
matrix:
# When changing versions here, check that the version exists at: https://github.com/yannh/kubernetes-json-schema and https://hub.docker.com/r/kindest/node/tags
# Aim to match https://github.com/vectordotdev/vector/blob/master/.github/workflows/k8s_e2e.yml as close as possible
k8s:
- v1.23.3
# fails on `kind` but not `minikube`; we weren't able to track down why
# possibly related to https://github.com/kubernetes-sigs/kind/issues/2532
# - v1.22.4
- v1.21.2
- v1.20.7
- v1.19.11
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Add vector helm repo
run: |
helm repo add vector https://helm.vector.dev
helm repo update
- name: Run kubeval
env:
KUBERNETES_VERSION: ${{ matrix.k8s }}
CHANGED_CHARTS: ${{needs.changed.outputs.charts}}
run: .github/kubeval.sh
install-chart:
runs-on: ubuntu-latest
needs:
- lint-chart
- kubeval-chart
strategy:
matrix:
# When changing versions here, check that the version exists at: https://github.com/yannh/kubernetes-json-schema and https://hub.docker.com/r/kindest/node/tags
# Aim to match https://github.com/vectordotdev/vector/blob/master/.github/workflows/k8s_e2e.yml as close as possible
k8s:
- v1.23.3
# fails on `kind` but not `minikube`; we weren't able to track down why
# possibly related to https://github.com/kubernetes-sigs/kind/issues/2532
# - v1.22.4
- v1.21.2
- v1.20.7
- v1.19.11
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Create kind ${{ matrix.k8s }}
uses: helm/kind-action@main
with:
node_image: kindest/node:${{ matrix.k8s }}
- name: Set up chart-testing
uses: helm/[email protected]
- name: Copy example values into ci/
run: cp charts/vector/examples/*-values.yaml charts/vector/ci/
- name: Run chart-testing (install)
run: ct install --config .github/ct.yaml --excluded-charts vector-shared --upgrade
pr-validated:
name: pr-validated
runs-on: ubuntu-latest
needs:
- install-chart
- lint-docs
steps:
- name: validate
run: echo "PR OK"