forked from cilium/cilium
-
Notifications
You must be signed in to change notification settings - Fork 7
247 lines (231 loc) · 10.4 KB
/
Copy pathconformance-kpr-eks.yaml
File metadata and controls
247 lines (231 loc) · 10.4 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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
name: Conformance KPR EKS (ci-kpr-eks)
# Any change in triggers needs to be reflected in the concurrency group.
on:
workflow_dispatch:
inputs:
PR-number:
description: "Pull request number."
required: true
context-ref:
description: "Context in which the workflow runs. If PR is from a fork, will be the PR target branch (general case). If PR is NOT from a fork, will be the PR branch itself (this allows committers to test changes to workflows directly from PRs)."
required: true
SHA:
description: "SHA under test (head of the PR branch)."
required: true
base-SHA:
description: "SHA of the base branch (target branch of the PR)."
required: false
extra-args:
description: "[JSON object] Arbitrary arguments passed from the trigger comment via regex capture group. Parse with 'fromJson(inputs.extra-args).argName' in workflow."
required: false
default: '{}'
# Run every 12 hours
schedule:
- cron: '0 4/12 * * *'
# By specifying the access of one of the scopes, all of those that are not
# specified are set to 'none'.
permissions:
# To be able to trigger eks-cluster-pool-manager.yaml workflow
actions: write
# To be able to access the repository with actions/checkout
contents: read
# To allow retrieving information from the PR API
pull-requests: read
# To be able to set commit status
statuses: write
# To be able to request the JWT from GitHub's OIDC provider
id-token: write
concurrency:
# Structure:
# - Parent concurrency group name to avoid deadlock with child workflows
# - Workflow name
# - Event type
# - A unique identifier depending on event type:
# - schedule: SHA
# - workflow_dispatch: PR number
#
# This structure ensures a unique concurrency group name is generated for each
# type of testing, such that re-runs will cancel the previous run.
group: |
parent
${{ github.workflow }}
${{ github.event_name }}
${{
(github.event_name == 'push' && github.sha) ||
(github.event_name == 'schedule' && github.sha) ||
(github.event_name == 'workflow_dispatch' && github.event.inputs.PR-number)
}}
cancel-in-progress: true
env:
# Single, in-file source of truth for the netkit quarantine. While "true",
# the netkit / netkit-l2 jobs may fail without failing the workflow (see the
# netkit jobs and the merge-upload-and-status gate). Set to "false" to re-arm
# them once the underlying netkit failures are fixed.
#
# This env cannot be referenced directly from a job's `with:` input or the
# status gate (the `env` context is not available there), so the `config` job
# below re-exports it as a job output, which `needs.config.outputs.*` can read
# in those positions. Keeping it as a workflow env means forks inherit the
# quarantine automatically, with nothing to configure.
QUARANTINE_NETKIT: "true"
jobs:
echo-inputs:
if: ${{ github.event_name == 'workflow_dispatch' }}
name: Echo Workflow Dispatch Inputs
runs-on: ubuntu-24.04
steps:
- name: Echo Workflow Dispatch Inputs
run: |
echo '${{ tojson(inputs) }}'
config:
name: Config
runs-on: ubuntu-24.04
outputs:
# Re-export the workflow-level QUARANTINE_NETKIT env so it can be consumed
# from `with:` inputs and the status gate via needs.config.outputs.
quarantine_netkit: ${{ steps.vars.outputs.quarantine_netkit }}
steps:
- name: Export quarantine flag
id: vars
run: echo "quarantine_netkit=${QUARANTINE_NETKIT}" >> "$GITHUB_OUTPUT"
commit-status-start:
name: Commit Status Start
runs-on: ubuntu-24.04
steps:
- name: Set initial commit status
uses: cilium/cilium/.github/actions/set-commit-status@main # main
with:
sha: ${{ inputs.SHA || github.sha }}
wait-for-images:
name: Wait for images
runs-on: ubuntu-24.04
timeout-minutes: 30
steps:
- name: Checkout context ref (trusted)
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
ref: ${{ inputs.context-ref || github.sha }}
persist-credentials: false
- name: Wait for images
uses: ./.github/actions/wait-for-images
with:
SHA: ${{ inputs.SHA || github.sha }}
images: cilium-ci operator-generic-ci hubble-relay-ci
login-host: ${{ vars.DOCKER_READ_HOST }}
login-username: ${{ vars.DOCKER_READ_USERNAME }}
login-password: ${{ secrets.DOCKER_READ_PASSWORD }}
auth-required: ${{ vars.DOCKER_AUTH_REQUIRED }}
conformance-eks-kpr:
name: Conformance EKS with KPR
needs: wait-for-images
uses: ./.github/workflows/conformance-eks.yaml
secrets: inherit
with:
PR-number: ${{ inputs.PR-number || github.ref_name }}
UID: 1
context-ref: ${{ inputs.context-ref || github.sha }}
SHA: ${{ inputs.SHA || github.sha }}
extra-args: '{"kpr": true, "bpf-masq-v4": true, "advanced-features": true}'
test-concurrency: 2
conformance-eks-kpr-ipsec:
name: Conformance EKS with KPR + IPsec
needs: wait-for-images
uses: ./.github/workflows/conformance-eks.yaml
secrets: inherit
with:
PR-number: ${{ inputs.PR-number || github.ref_name }}
UID: 2
context-ref: ${{ inputs.context-ref || github.sha }}
SHA: ${{ inputs.SHA || github.sha }}
extra-args: '{"kpr": true, "bpf-masq-v4": true, "advanced-features": true, "ipsec": true}'
test-concurrency: 2
conformance-eks-kpr-wireguard:
name: Conformance EKS with KPR + WireGuard
needs: wait-for-images
uses: ./.github/workflows/conformance-eks.yaml
secrets: inherit
with:
PR-number: ${{ inputs.PR-number || github.ref_name }}
UID: 3
context-ref: ${{ inputs.context-ref || github.sha }}
SHA: ${{ inputs.SHA || github.sha }}
extra-args: '{"kpr": true, "bpf-masq-v4": true, "advanced-features": true, "wireguard": true}'
test-concurrency: 2
# The netkit / netkit-l2 jobs are quarantined: they currently fail (e.g. the
# l7-lb pod-to-l7-lb-service hairpinning connectivity test, plus on-demand
# capacity / nodegroup-creation flakes in some regions), and the failures are
# still under investigation. The QUARANTINE_NETKIT flag (see the config job)
# lets them fail without breaking the run, while still collecting artifacts
# and emitting a warning annotation. Set QUARANTINE_NETKIT to "false" to
# re-arm them once the failures are fixed.
#
# Both jobs run on scheduled events only (they are skipped on
# workflow_dispatch and PR ci-* comments); the status gate below tolerates
# that skip.
conformance-eks-kpr-netkit:
name: Conformance EKS with KPR + Netkit
if: ${{ github.event_name == 'schedule' }}
needs: [wait-for-images, config]
uses: ./.github/workflows/conformance-eks.yaml
secrets: inherit
with:
PR-number: ${{ inputs.PR-number || github.ref_name }}
UID: 4
context-ref: ${{ inputs.context-ref || github.sha }}
SHA: ${{ inputs.SHA || github.sha }}
extra-args: '{"kpr": true, "bpf-datapath": "netkit", "bpf-masq-v4": true }'
test-concurrency: 2
quarantine: ${{ needs.config.outputs.quarantine_netkit == 'true' }}
conformance-eks-kpr-netkit-l2:
name: Conformance EKS with KPR + Netkit-L2
if: ${{ github.event_name == 'schedule' }}
needs: [wait-for-images, config]
uses: ./.github/workflows/conformance-eks.yaml
secrets: inherit
with:
PR-number: ${{ inputs.PR-number || github.ref_name }}
UID: 5
context-ref: ${{ inputs.context-ref || github.sha }}
SHA: ${{ inputs.SHA || github.sha }}
extra-args: '{"kpr": true, "bpf-datapath": "netkit-l2", "bpf-masq-v4": true }'
test-concurrency: 2
quarantine: ${{ needs.config.outputs.quarantine_netkit == 'true' }}
# Re-surface a quarantined netkit failure at this (parent) workflow level. The
# warning annotation emitted inside the reusable conformance-eks.yaml is
# attached to the called workflow's job, so it does not show up on this
# workflow's run summary. This job emits an equivalent annotation here when a
# quarantined netkit job failed but was tolerated.
quarantine-warning:
name: Quarantine Warning
if: ${{ always() && needs.config.outputs.quarantine_netkit == 'true' && (needs.conformance-eks-kpr-netkit.result == 'failure' || needs.conformance-eks-kpr-netkit-l2.result == 'failure') }}
needs: [config, conformance-eks-kpr-netkit, conformance-eks-kpr-netkit-l2]
runs-on: ubuntu-24.04
steps:
- name: Warn on quarantined netkit failure
run: |
echo "::warning title=Quarantined job failed::A netkit conformance job failed but is quarantined (QUARANTINE_NETKIT), so it did not fail this workflow. Investigate the failures in the netkit / netkit-l2 jobs; set QUARANTINE_NETKIT to \"false\" to re-arm them."
merge-upload-and-status:
name: Merge Upload and Status
if: ${{ always() }}
needs: [config, conformance-eks-kpr, conformance-eks-kpr-ipsec, conformance-eks-kpr-wireguard, conformance-eks-kpr-netkit, conformance-eks-kpr-netkit-l2]
uses: ./.github/workflows/common-post-jobs.yaml
secrets: inherit
with:
context-ref: ${{ inputs.context-ref || github.sha }}
sha: ${{ inputs.SHA || github.sha }}
# The core KPR jobs must pass on every trigger. The quarantined netkit
# jobs are tolerated while QUARANTINE_NETKIT is "true": each netkit result
# is OR'd with the quarantine flag exported by the config job, so a
# quarantined netkit failure does not flip the commit status, while the
# jobs stay listed so they still gate against being cancelled. Both netkit
# jobs only run on scheduled events, so on other triggers their result is
# 'skipped', which is also tolerated. Set QUARANTINE_NETKIT to "false" to
# re-arm the netkit jobs once the failures are fixed.
success: >-
${{
needs.conformance-eks-kpr.result == 'success' &&
needs.conformance-eks-kpr-ipsec.result == 'success' &&
needs.conformance-eks-kpr-wireguard.result == 'success' &&
(needs.conformance-eks-kpr-netkit.result == 'success' || needs.conformance-eks-kpr-netkit.result == 'skipped' || needs.config.outputs.quarantine_netkit == 'true') &&
(needs.conformance-eks-kpr-netkit-l2.result == 'success' || needs.conformance-eks-kpr-netkit-l2.result == 'skipped' || needs.config.outputs.quarantine_netkit == 'true')
}}