-
Notifications
You must be signed in to change notification settings - Fork 6
/
.zuul.yaml
72 lines (68 loc) · 1.98 KB
/
.zuul.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
---
- job:
name: openstack-e2e-abstract
abstract: true
parent: openstack-access-base
description: |
An abstract job for e2e testing of cluster stacks project.
This job is not intended to be run directly, but instead
must be inherited from it.
pre-run: playbooks/dependencies.yaml
run: playbooks/openstack/e2e.yaml
cleanup-run: playbooks/openstack/cleanup.yaml # executed also when the job is canceled
vars:
wait_for_cluster_stack_resource: 120 # 2min
wait_for_clusteraddons: 120 # 2min
wait_for_cluster_stack: 1440 # 24min
wait_for_cluster: 600 # 10min
sonobouy:
enabled: false
scs_compliance:
enabled: false
- job:
name: e2e-openstack-conformance
parent: openstack-e2e-abstract
description: |
Run e2e tests of cluster-stacks project using
[sonobuoy](https://sonobuoy.io/) with mode non-disruptive conformance and
SCS compliance checks meaning it will test if the Kubernetes
cluster is conformant to the CNCF and to the SCS.
timeout: 10800 # 3h
vars:
wait_for_cluster: 1200 # 20min
sonobouy:
enabled: true
mode: certified-conformance
scs_compliance:
enabled: true
- job:
name: e2e-openstack-quick
parent: openstack-e2e-abstract
description: |
Run e2e tests of cluster-stacks project using
[sonobuoy](https://sonobuoy.io/) with mode quick and
SCS compliance checks.
timeout: 7200 # 2h
vars:
wait_for_cluster: 1200 # 20min
sonobouy:
enabled: true
mode: quick
scs_compliance:
enabled: true
- project:
name: SovereignCloudStack/cluster-stacks
default-branch: main
merge-mode: "squash-merge"
e2e-test:
jobs:
- e2e-openstack-conformance
unlabel-on-update-e2e-test:
jobs:
- noop
e2e-quick-test:
jobs:
- e2e-openstack-quick
unlabel-on-update-e2e-quick-test:
jobs:
- noop