-
Notifications
You must be signed in to change notification settings - Fork 65
163 lines (156 loc) · 5.27 KB
/
Copy pathci.yaml
File metadata and controls
163 lines (156 loc) · 5.27 KB
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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
# Copyright (c) 2019 Contributors to the Eclipse Foundation
#
# See the NOTICE file(s) distributed with this work for additional
# information regarding copyright ownership.
#
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
# http://www.eclipse.org/legal/epl-2.0
#
# SPDX-License-Identifier: EPL-2.0
name: ci
env:
CONFIG_OPTION_CHART_TESTING: "--config .github/ct.yaml"
VERSION_CHART_TESTING: "3.14.0"
VERSION_HELM: "3.19.0"
VERSION_PYTHON: "3.8"
on:
pull_request:
paths:
- 'charts/**'
- 'packages/**'
jobs:
lint-bash-scripts:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Lint Bash scripts
uses: docker://koalaman/shellcheck-alpine:v0.9.0
with:
args: .github/lint-scripts.sh
lint-chart:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Fetch history for chart testing
# allow skipping this step when running the workflow locally in act, as act does not support shallow clones
# and thus the fetch would fail
if: ${{ !env.ACT }}
run: git fetch --prune --unshallow
- name: Set up Helm
uses: azure/setup-helm@v4
with:
version: ${{ env.VERSION_HELM }}
- uses: actions/setup-python@v6
with:
python-version: ${{ env.VERSION_PYTHON }}
- name: Set up chart-testing
uses: helm/chart-testing-action@v2
with:
version: ${{ env.VERSION_CHART_TESTING }}
- name: Run chart-testing (lint)
run: ct lint ${{ env.CONFIG_OPTION_CHART_TESTING }}
kubeval-chart:
runs-on: ubuntu-latest
needs: lint-chart
strategy:
matrix:
# the versions supported by kubeval are the ones for
# which a folder exists at
# https://github.com/yannh/kubernetes-json-schema/
k8s:
- v1.32.9
- v1.33.8
- v1.34.4
- v1.35.1
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Fetch history for chart testing
if: ${{ !env.ACT }}
run: git fetch --prune --unshallow
- name: Set up Helm
uses: azure/setup-helm@v4
with:
version: ${{ env.VERSION_HELM }}
- name: Run kubeval
env:
KUBERNETES_VERSION: ${{ matrix.k8s }}
run: .github/kubeval.sh
install-chart:
name: install-chart
runs-on: ubuntu-latest
needs: kubeval-chart
strategy:
matrix:
k8s:
# the versions supported by chart-testing are the tags
# available for the docker.io/kindest/node image
# https://hub.docker.com/r/kindest/node/tags
- v1.32.11
- v1.33.7
- v1.34.3
- v1.35.1
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Fetch history for chart testing
if: ${{ !env.ACT }}
run: git fetch --prune --unshallow
- name: Set up Helm
uses: azure/setup-helm@v4
with:
version: ${{ env.VERSION_HELM }}
- uses: actions/setup-python@v6
with:
python-version: ${{ env.VERSION_PYTHON }}
- name: Set up chart-testing
uses: helm/chart-testing-action@v2
with:
version: ${{ env.VERSION_CHART_TESTING }}
- name: Check for changed charts
id: list-changed
run: |
changed=$(ct list-changed ${{ env.CONFIG_OPTION_CHART_TESTING }})
if [[ -n "$changed" ]]; then
echo "changed=true" >> $GITHUB_OUTPUT
fi
- name: Create kind ${{ matrix.k8s }} cluster
uses: helm/kind-action@v1.14.0
with:
version: v0.31.0
config: .github/kind-config.yaml
node_image: kindest/node:${{ matrix.k8s }}
if: ${{ steps.list-changed.outputs.changed == 'true' }}
- name: Deploy ingress controller
if: ${{ steps.list-changed.outputs.changed == 'true' }}
run: |
kubectl apply -f https://raw.githubusercontent.com/kubernetes/ingress-nginx/controller-v1.14.3/deploy/static/provider/kind/deploy.yaml
- name: Wait for the ingress controller to become ready
if: ${{ steps.list-changed.outputs.changed == 'true' }}
run: |
kubectl wait --namespace ingress-nginx \
--for=condition=ready pod \
--selector=app.kubernetes.io/component=controller \
--timeout=180s
- if: ${{ failure() }}
run: |
kubectl -n ingress-nginx describe pods
- name: Describe nodes
if: ${{ steps.list-changed.outputs.changed == 'true' }}
run: |
kubectl describe nodes
- name: Run CI chart customization
if: ${{ steps.list-changed.outputs.changed == 'true' }}
run: .github/chart-ci-init.sh
- name: Run chart-testing (install)
if: ${{ steps.list-changed.outputs.changed == 'true' }}
run: ct install ${{ env.CONFIG_OPTION_CHART_TESTING }}
- name: Record logs
if: ${{ failure() }}
run: |
# drop after: https://github.com/kubernetes/ingress-nginx/issues/6245
kubectl -n ingress-nginx describe pods
kubectl -n ingress-nginx logs deployment/ingress-nginx-controller