forked from SovereignCloudStack/k8s-cluster-api-provider
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.zuul.yaml
51 lines (48 loc) · 1.54 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
---
- job:
name: k8s-cluster-api-provider-e2e-abstract
abstract: true
parent: openstack-access-base
description: |
An abstract job for e2e testing of k8s-cluster-api-provider project.
This job is not intended to be run directly, but instead must be inherited from it.
pre-run: playbooks/dependencies.yaml
run: playbooks/e2e.yaml
cleanup-run: playbooks/cleanup.yaml # executed also when the job is canceled
vars:
wait_for_cluster: 600 # 10min
- job:
name: k8s-cluster-api-provider-e2e-conformance
parent: k8s-cluster-api-provider-e2e-abstract
description: |
Run e2e tests of k8s-cluster-api-provider project using
[sonobuoy](https://sonobuoy.io/) with mode conformance meaning
it will test if the Kubernetes cluster is conformant to the CNCF.
timeout: 10800 # 3h
vars:
sonobouy_mode: conformance
- job:
name: k8s-cluster-api-provider-e2e-quick
parent: k8s-cluster-api-provider-e2e-abstract
description: |
Run e2e tests of k8s-cluster-api-provider project using
[sonobuoy](https://sonobuoy.io/) with mode quick.
timeout: 3600 # 1h
vars:
sonobouy_mode: quick
- project:
name: matofederorg/k8s-cluster-api-provider
default-branch: main
merge-mode: "squash-merge"
e2e-test:
jobs:
- k8s-cluster-api-provider-e2e-conformance
unlabel-on-update-e2e-test:
jobs:
- noop
e2e-quick-test:
jobs:
- k8s-cluster-api-provider-e2e-quick
unlabel-on-update-e2e-quick-test:
jobs:
- noop